-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
147 lines (124 loc) · 3.78 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
plugins {
id 'java'
id 'maven-publish'
id 'signing'
}
group 'com.testvagrant.ekam.commons'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
//google
implementation('com.google.guava:guava:30.1.1-jre')
implementation('com.google.inject:guice:7.0.0')
implementation('com.google.code.gson:gson:2.10.1')
// Apache commons-io
implementation('commons-io:commons-io:2.13.0')
//lombok
implementation('org.projectlombok:lombok:1.18.28')
annotationProcessor('org.projectlombok:lombok:1.18.28')
testImplementation('org.projectlombok:lombok:1.18.28')
testAnnotationProcessor('org.projectlombok:lombok:1.18.28')
// Test Framework
testImplementation('org.junit.jupiter:junit-jupiter-api:5.8.0-M1')
testImplementation('org.junit.jupiter:junit-jupiter-engine:5.8.0-M1')
testImplementation('org.junit-pioneer:junit-pioneer:1.4.2')
testImplementation('org.assertj:assertj-guava:3.24.2')
}
test {
useJUnitPlatform()
}
task sourceJar(type: Jar) {
classifier "sources"
from sourceSets.main.allJava
}
task javadocJar(type: Jar, dependsOn: javadoc) {
classifier "javadoc"
from javadoc.destinationDir
}
artifacts {
archives jar
archives sourceJar
archives javadocJar
}
publishing {
publications {
mavenJava(MavenPublication) {
customizePom(pom)
groupId 'com.testvagrant.ekam'
artifactId 'ekam-commons'
version '1.0.3'
from components.java
artifact(sourceJar) {
classifier = 'sources'
}
artifact(javadocJar) {
classifier = 'javadoc'
}
}
}
repositories {
maven {
url "https://oss.sonatype.org/service/local/staging/deploy/maven2"
credentials {
username System.getenv("sonatypeUsername")
password System.getenv("sonatypePassword")
// username sonatypeUsername
// password sonatypePassword
}
}
}
}
def customizePom(pom) {
pom.withXml {
def root = asNode()
// eliminate test-scoped dependencies (no need in maven central POMs)
root.dependencies.removeAll { dep ->
dep.scope == "test"
}
// add all items necessary for maven central publication
root.children().last() + {
resolveStrategy = Closure.DELEGATE_FIRST
description 'Ekam commons for data, file, i8 and cache management'
name 'Ekam Common'
url 'https://github.com/testvagrant/ekam-commons'
organization {
name 'com.testvagrant.ekam'
url 'https://github.com/testvagrant'
}
issueManagement {
system 'GitHub'
url 'https://github.com/testvagrant/ekam-commons/issues'
}
licenses {
license {
name 'MIT License'
url 'https://github.com/testvagrant/ekam-commons/-/blob/master/LICENSE'
distribution 'repo'
}
}
scm {
url 'https://github.com/testvagrant/ekam-commons'
connection 'https://github.com/testvagrant/ekam-commons.git'
developerConnection 'git@github.com:testvagrant/ekam-commons.git'
}
developers {
developer {
name 'Sudarshan GS'
}
developer {
name 'Krishnanand B'
}
}
}
}
}
model {
tasks.generatePomFileForMavenJavaPublication {
destination = file("$buildDir/generated-pom.xml")
}
}
signing {
sign publishing.publications
}