-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
123 lines (102 loc) · 2.8 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.8.0'
id "maven-publish"
id 'java-library'
id 'signing'
id 'org.jetbrains.dokka' version '0.10.1'
}
group 'com.github.alexburlton'
version '4.0.0'
repositories {
mavenCentral()
}
dependencies {
implementation 'com.github.romankh3:image-comparison:4.4.0'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0"
implementation 'io.kotest:kotest-assertions-core:5.5.4'
implementation "org.junit.jupiter:junit-jupiter-api:5.9.2"
testImplementation "io.mockk:mockk:1.13.4"
testImplementation 'org.mockito:mockito-core:3.3.3'
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.9.2"
}
compileKotlin {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_1_8
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
kotlinOptions.jvmTarget = "1.8"
}
dokka {
outputFormat = 'html'
outputDirectory = "$buildDir/dokka"
}
test {
useJUnitPlatform()
testLogging {
events "failed"
exceptionFormat "short"
info.events = ["failed", "skipped"]
}
}
task javadocJar(type: Jar) {
archiveClassifier.set("javadoc")
from javadoc
}
task sourcesJar(type: Jar) {
archiveClassifier.set("sources")
from sourceSets.main.allSource
}
artifacts {
archives javadocJar, sourcesJar
}
java {
withJavadocJar()
withSourcesJar()
}
publishing {
publications {
mavenJava(MavenPublication) {
groupId = 'com.github.alexburlton'
artifactId = 'swing-test'
version = '4.0.0'
from components.java
pom {
name = 'swing-test'
description = 'Kotlin swing testing library'
url = 'https://github.com/alyssaburlton/swing-test'
licenses {
license {
name = 'MIT'
url = "https://opensource.org/licenses/mit-license.php"
}
}
developers {
developer {
id = 'alyssaburlton'
name = 'Alyssa Burlton'
}
}
scm {
url = "https://github.com/alyssaburlton/swing-test"
}
}
}
}
repositories {
maven {
name = "OSSRH"
url = "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/"
credentials {
username = project.ossrhUsername
password = project.ossrhPassword
}
}
}
}
signing {
sign publishing.publications.mavenJava
}