-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
105 lines (89 loc) · 3.03 KB
/
build.gradle
File metadata and controls
105 lines (89 loc) · 3.03 KB
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-library'
id 'maven-publish'
id 'signing'
}
group = 'com.allow2'
version = '2.0.0-alpha.1'
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
withJavadocJar()
withSourcesJar()
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.json:json:20240303'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
test {
useJUnitPlatform()
testLogging {
events 'passed', 'skipped', 'failed'
showStandardStreams = true
}
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
groupId = 'com.allow2'
artifactId = 'allow2-service'
pom {
name = 'Allow2 Java Service SDK'
description = 'Official Allow2 Parental Freedom Service SDK for Java'
url = 'https://github.com/Allow2/Allow2java-service'
licenses {
license {
name = 'API and SDK Licence and Service Agreement'
url = 'https://github.com/Allow2/Allow2java-service/blob/master/LICENSE'
}
}
developers {
developer {
id = 'allow2'
name = 'Allow2 Pty Ltd'
email = 'dev@allow2.com'
}
}
scm {
connection = 'scm:git:git://github.com/Allow2/Allow2java-service.git'
developerConnection = 'scm:git:ssh://github.com/Allow2/Allow2java-service.git'
url = 'https://github.com/Allow2/Allow2java-service'
}
}
}
}
repositories {
maven {
name = 'OSSRH'
def releasesRepoUrl = 'https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/'
def snapshotsRepoUrl = 'https://s01.oss.sonatype.org/content/repositories/snapshots/'
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
credentials {
username = findProperty('ossrhUsername') ?: System.getenv('OSSRH_USERNAME') ?: ''
password = findProperty('ossrhPassword') ?: System.getenv('OSSRH_PASSWORD') ?: ''
}
}
}
}
signing {
def signingKey = findProperty('signingKey') ?: System.getenv('GPG_SIGNING_KEY')
def signingPassword = findProperty('signingPassword') ?: System.getenv('GPG_SIGNING_PASSWORD')
if (signingKey && signingPassword) {
useInMemoryPgpKeys(signingKey, signingPassword)
}
sign publishing.publications.mavenJava
}
tasks.withType(Sign).configureEach {
onlyIf { project.hasProperty('signingKey') || System.getenv('GPG_SIGNING_KEY') }
}
javadoc {
if (JavaVersion.current().isJava9Compatible()) {
options.addBooleanOption('html5', true)
}
options.encoding = 'UTF-8'
}