-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
67 lines (56 loc) · 1.94 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
plugins {
id 'java-library'
id 'cl.franciscosolis.sonatype-central-upload' version '1.0.3'
}
group = 'com.adscore'
version = '1.0.0'
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
withJavadocJar()
withSourcesJar()
artifacts {
archives javadocJar, sourcesJar
}
}
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.10.0')
testImplementation 'org.junit.jupiter:junit-jupiter'
implementation 'org.abstractj.kalium:kalium:0.8.0'
implementation 'com.marcospassos:phpserializer:0.8.0'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.1'
implementation 'org.msgpack:msgpack-core:0.9.8'
implementation 'com.github.seancfoley:ipaddress:5.5.0'
}
test {
useJUnitPlatform()
}
sonatypeCentralUpload {
def gradlePropertiesFile = file('.gradle/gradle.properties')
if (gradlePropertiesFile.exists()) {
gradlePropertiesFile.withInputStream { stream ->
def properties = new Properties()
properties.load(stream)
properties.each { key, value -> project.ext[key] = value }
}
}
//generate in Central Portal
username = project.findProperty("ossrhUsername")
password = project.findProperty("ossrhToken")
def projBuild = "build/libs/java-common-${version}.jar"
def javaDocBuild = "build/libs/java-common-${version}-javadoc.jar"
def sourceBuild = "build/libs/java-common-${version}-sources.jar"
archives = files(projBuild, javaDocBuild, sourceBuild)
pom = file("pom-default.xml")
signingKey= file('.gradle/key_priv.txt').text
signingKeyPassphrase = project.findProperty("signing.password")
def pub = "gpg --armor --export ${project.findProperty("signing.keyId")}".execute().text
publicKey = pub
publishingType = "MANUAL"
}