forked from akurilov/confuse-io-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
162 lines (132 loc) · 3.52 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
description = "Configuration serialization/deserialization using Jackson library"
buildscript {
repositories {
mavenCentral()
}
}
allprojects {
apply plugin: "java"
apply plugin: "maven"
apply plugin: "signing"
group = "com.github.akurilov"
version = "1.0.4"
}
ext {
}
repositories {
mavenCentral()
}
dependencies {
compile(
"com.github.akurilov:confuse:[1.1.0,)",
"com.fasterxml.jackson.core:jackson-core:2.9.5",
"com.fasterxml.jackson.core:jackson-databind:2.9.5",
)
testCompile("junit:junit:4.12")
}
compileJava {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
compileTestJava {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
jar {
manifest {
attributes (
"Implementation-Version": version,
"Implementation-Title": rootProject.name,
)
}
}
task sourcesJar(type: Jar, dependsOn: classes) {
classifier = "sources"
from sourceSets.main.allSource
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier = "javadoc"
from javadoc.destinationDir
}
artifacts {
archives jar
archives sourcesJar
archives javadocJar
}
test {
jvmArgs "-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005"
jvmArgs "-XX:MaxDirectMemorySize=1g"
jvmArgs "-XX:+HeapDumpOnOutOfMemoryError"
maxHeapSize "1g"
systemProperty "com.sun.management.jmxremote", "true"
systemProperty "com.sun.management.jmxremote.port", "9010"
systemProperty "com.sun.management.jmxremote.rmi.port", "9010"
systemProperty "com.sun.management.jmxremote.local.only", "false"
systemProperty "com.sun.management.jmxremote.authenticate", "false"
systemProperty "com.sun.management.jmxremote.ssl", "false"
testLogging {
events "passed", "skipped", "failed", "standardOut"
showExceptions = true
showStandardStreams = true
}
}
signing {
required {
gradle.taskGraph.hasTask("uploadArchives")
}
sign configurations.archives
}
// see http://central.sonatype.org/pages/gradle.html for details
uploadArchives {
def ossrhUsername = project.hasProperty("ossrhUsername") ?
project.property("ossrhUsername") : null
def ossrhPassword = project.hasProperty("ossrhPassword") ?
project.property("ossrhPassword") : null
repositories {
mavenDeployer {
beforeDeployment {
MavenDeployment deployment -> signing.signPom(deployment)
}
repository(url: "https://oss.sonatype.org/service/local/staging/deploy/maven2/") {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
snapshotRepository(url: "https://oss.sonatype.org/content/repositories/snapshots/") {
authentication(userName: ossrhUsername, password: ossrhPassword)
}
pom {
name = rootProject.name
groupId = rootProject.group
project {
description = rootProject.description
url "https://github.com/akurilov/confuse-json"
scm {
connection "https://github.com/akurilov/confuse-io-json.git"
developerConnection "https://github.com/akurilov/confuse-io-json.git"
url "https://github.com/akurilov/confuse-io-json.git"
}
licenses {
license {
name "Apache License 2.0"
url "https://github.com/akurilovs/confuse-io-json/blob/master/LICENSE"
}
}
developers {
developer {
id "akurilov"
name "Andrey Kurilov"
email "akurilov123@gmail.com"
}
}
}
}
}
}
}
task wrapper(type: Wrapper) {
gradleVersion = "4.6"
}
task printVersion {
group = "versioning"
description = "Prints version."
doLast { logger.quiet "Java-commons version: $version" }
}