-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
105 lines (94 loc) · 2.79 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
plugins {
id 'java'
id 'maven-publish'
id 'signing'
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
group 'com.javaquery'
archivesBaseName = 'util'
version '1.2.7'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.slf4j:slf4j-api:2.0.16'
implementation 'org.json:json:20250107'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.18.2'
testImplementation 'net.logstash.logback:logstash-logback-encoder:7.4'
testImplementation 'ch.qos.logback:logback-classic:1.3.15'
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.4'
}
test {
useJUnitPlatform()
}
java {
withJavadocJar()
withSourcesJar()
}
jar {
manifest {
attributes(
'Built-By': "Vicky Thakor"
)
}
}
publishing {
publications {
mavenJava(MavenPublication) {
artifactId = 'util'
from components.java
versionMapping {
usage('java-api') {
fromResolutionOf('runtimeClasspath')
}
usage('java-runtime') {
fromResolutionResult()
}
}
pom {
name = 'Java Util Library'
description = 'Java util class to reduce boilerplate codes'
url = 'https://github.com/javaquery/util'
licenses {
license {
name = 'MIT'
url = 'https://github.com/javaquery/util/blob/main/LICENSE'
}
}
developers {
developer {
id = 'javaquery'
name = 'Vicky Thakor'
email = '[email protected]'
timezone = '+05:30'
}
}
scm {
connection = 'scm:git:git://github.com/javaquery/util.git'
developerConnection = 'scm:git:ssh://github.com/javaquery/util.git'
url = 'https://github.com/javaquery/util'
}
}
}
}
repositories {
maven {
def releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
def snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots"
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
credentials {
username "$mavenCentralUsername"
password "$mavenCentralPassword"
}
}
}
}
signing {
sign publishing.publications.mavenJava
}
javadoc {
if (JavaVersion.current().isJava9Compatible()) {
options.addBooleanOption('html5', true)
}
}