-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
141 lines (116 loc) · 4.2 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
buildscript {
ext.kotlin_version = "1.4.32"
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
id "com.github.kt3k.coveralls" version "2.8.4"
}
apply plugin: "kotlin"
apply plugin: "jacoco"
apply plugin: "idea"
apply plugin: "maven"
apply plugin: "signing"
group = "com.mercateo"
version = "0.1.13-SNAPSHOT"
archivesBaseName = "json-schema"
description = """json-schema"""
repositories {
mavenCentral()
}
jacoco {
toolVersion = "0.8.6"
}
jacocoTestReport {
reports {
xml.enabled true
csv.enabled false
html.enabled false
}
}
task sourcesJar(type: Jar, dependsOn: classes) {
archiveClassifier.set("sources")
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn: javadoc) {
archiveClassifier.set("javadoc")
from javadoc
}
artifacts {
archives sourcesJar
archives javadocJar
}
signing {
required {
gradle.taskGraph.hasTask("uploadArchives")
}
sign configurations.archives
}
if (!hasProperty("sonatypeUsername")) {
ext.sonatypeUsername = ""
}
if (!hasProperty("sonatypePassword")) {
ext.sonatypePassword = ""
}
uploadArchives {
repositories {
mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: sonatypeUsername, password: sonatypePassword)
}
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
authentication(userName: sonatypeUsername, password: sonatypePassword)
}
pom.project {
name "json-schema"
packaging "jar"
// optionally artifactId can be defined here
description "json-schema generator for the JVM."
url "https://github.com/mercateo/json-schema"
scm {
connection "scm:git:[email protected]:Mercateo/json-schema.git"
developerConnection "scm:git:[email protected]:Mercateo/json-schema.git"
url "https://github.com/mercateo/json-schema"
}
licenses {
license {
name "The Apache License, Version 2.0"
url "http://www.apache.org/licenses/LICENSE-2.0.txt"
}
}
developers {
developer {
id "wuerla"
name "Andreas Würl"
email "[email protected]"
}
}
}
}
}
}
def jackson_version = "2.11.4"
dependencies {
implementation("com.googlecode.gentyref:gentyref:1.2.0")
implementation("com.fasterxml.jackson.core:jackson-annotations:${jackson_version}")
implementation(group: "com.fasterxml.jackson.core", name: "jackson-databind", version: jackson_version)
implementation(group: "org.slf4j", name: "slf4j-api", version: "1.7.30")
implementation(group: "javax.validation", name: "validation-api", version: "2.0.1.Final") {
exclude(module: "testng")
}
implementation(group: "org.jetbrains.kotlin", name: "kotlin-stdlib", version: kotlin_version)
implementation(group: "org.jetbrains.kotlin", name: "kotlin-reflect", version: kotlin_version)
testImplementation(group: "junit", name: "junit", version: "4.13")
testImplementation(group: "org.assertj", name: "assertj-core", version: "3.16.1")
testImplementation(group: "io.mockk", name: "mockk", version: "1.10.0")
testImplementation(group: "org.openjdk.jmh", name: "jmh-core", version: "1.25")
testImplementation(group: "org.openjdk.jmh", name: "jmh-generator-annprocess", version: "1.25")
testImplementation(group: "ch.qos.logback", name: "logback-classic", version: "1.2.3")
testImplementation(group: "org.jetbrains.kotlin", name: "kotlin-test", version: kotlin_version)
testImplementation(group: "org.hibernate", name: "hibernate-validator", version: "6.1.5.Final")
}