-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
86 lines (69 loc) · 2.14 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
import com.vanniktech.maven.publish.SonatypeHost
plugins {
id 'java'
id "com.vanniktech.maven.publish" version "0.28.0"
id 'signing'
}
group = 'io.github.van1164'
version = '0.7.0'
sourceCompatibility = '15'
targetCompatibility = '15'
repositories {
mavenCentral()
}
compileJava.options.encoding='UTF-8'
tasks.withType(JavaCompile){
options.encoding = "UTF-8"
}
tasks.withType(Javadoc) {
options {
encoding 'UTF-8'
}
}
signing {
sign publishing.publications
}
mavenPublishing {
signAllPublications()
// configure(new JavaLibrary(new JavadocJar.Empty(), true))
publishToMavenCentral(SonatypeHost.CENTRAL_PORTAL)
// configure(new JavaLibrary(new JavadocJar.Javadoc(), true))
coordinates("io.github.van1164", "k6-executor", "0.7.0")
pom {
name = "k6-executor"
description = "k6-executor for junit"
inceptionYear = "2024"
url = "https://github.com/van1164/k6-executor-for-junit-test"
licenses {
license {
name = "The Apache License, Version 2.0"
url = "https://www.apache.org/licenses/LICENSE-2.0.txt"
distribution = "https://www.apache.org/licenses/LICENSE-2.0.txt"
}
}
developers {
developer {
id = "van1164"
name = "Sihwan Kim"
url = "https://github.com/van1164"
}
}
scm {
url = "https://github.com/van1164/k6-executor-for-junit-test"
connection = "scm:git:git://github.com/van1164/k6-executor-for-junit-test.git"
developerConnection = "scm:git:ssh://git@github.com/van1164"
}
}
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
implementation 'org.apache.commons:commons-compress:1.26.2'
compileOnly 'org.projectlombok:lombok:1.18.32'
implementation 'org.projectlombok:lombok:1.18.32'
annotationProcessor 'org.projectlombok:lombok:1.18.32'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.3'
}
test {
useJUnitPlatform()
}