-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
233 lines (201 loc) · 7.47 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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
plugins {
id 'java'
id 'maven-publish'
id 'signing'
id 'nebula.optional-base' version '3.0.3'
id 'com.adarshr.test-logger' version '3.2.0'
id "io.freefair.lombok" version "6.5.0.3"
}
group 'com.ptsmods'
version '1.9.2'
allprojects {
apply plugin: "java"
apply plugin: "com.adarshr.test-logger"
apply plugin: "io.freefair.lombok"
dependencies {
implementation "org.jetbrains:annotations:23.0.0"
testImplementation "org.junit.jupiter:junit-jupiter-api:5.9.0"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.9.0"
}
repositories {
mavenLocal()
mavenCentral()
}
java {
withSourcesJar()
withJavadocJar()
}
javadoc {
options.addBooleanOption("html5", true)
}
test {
useJUnitPlatform()
}
}
subprojects {
group "com.ptsmods.mysqlw"
version project(":").version
dependencies {
compileOnly project(":")
testImplementation project(":")
}
}
dependencies {
implementation group: 'mysql', name: 'mysql-connector-java', version: '8.0.30', optional
implementation group: 'org.xerial', name: 'sqlite-jdbc', version: '3.39.2.0', optional
}
tasks.withType(JavaCompile) {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
testlogger {
theme 'standard'
showExceptions true
showStackTraces true
showFullStackTraces false
showCauses true
slowThreshold 2000
showSummary true
showSimpleNames false
showPassed true
showSkipped true
showFailed true
showStandardStreams false
showPassedStandardStreams true
showSkippedStandardStreams true
showFailedStandardStreams true
}
publishing {
publications {
mavenJavaMain(MavenPublication) {
artifactId = "mysqlw"
from components.java
pom {
name = 'MySQLw'
description = 'A wrapper for MySQL connections'
url = 'https://github.com/PlanetTeamSpeakk/MySQLw'
scm {
connection = 'scm:git:git://github.com/PlanetTeamSpeakk/MySQLw.git'
developerConnection = 'scm:git:git://github.com/PlanetTeamSpeakk/MySQLw.git'
url = 'https://github.com/PlanetTeamSpeakk/MySQLw'
}
licenses {
license {
name = 'MIT License'
url = 'https://raw.githubusercontent.com/PlanetTeamSpeakk/MySQLw/main/LICENSE'
}
}
developers {
developer {
id = 'PlanetTeamSpeak'
name = 'PlanetTeamSpeak'
email = 'PlanetTeamSpeakk@users.noreply.github.com'
}
}
}
}
mavenJavaCollection(MavenPublication) {
artifactId = "mysqlw-collection"
from project("mysqlw-collection").components.java
pom {
name = 'MySQLw'
description = 'A module for MySQLw to use Java collections with databases.'
url = 'https://github.com/PlanetTeamSpeakk/MySQLw'
scm {
connection = 'scm:git:git://github.com/PlanetTeamSpeakk/MySQLw.git'
developerConnection = 'scm:git:git://github.com/PlanetTeamSpeakk/MySQLw.git'
url = 'https://github.com/PlanetTeamSpeakk/MySQLw'
}
licenses {
license {
name = 'MIT License'
url = 'https://raw.githubusercontent.com/PlanetTeamSpeakk/MySQLw/main/LICENSE'
}
}
developers {
developer {
id = 'PlanetTeamSpeak'
name = 'PlanetTeamSpeak'
email = 'PlanetTeamSpeakk@users.noreply.github.com'
}
}
// Add the root project as a dependency. (maven-publish does not know what to do with implementation project(":"))
// This probably is not the best way to do this, but it's the only way I could come up with.
withXml {
def depsNode = asNode().get("dependencies").get(0)
def depNode = depsNode.appendNode("dependency")
depNode.appendNode("groupId", "com.ptsmods")
depNode.appendNode("artifactId", "mysqlw")
depNode.appendNode("version", project.rootProject.version)
depNode.appendNode("scope", "runtime")
}
}
}
mavenJavaProcedure(MavenPublication) {
artifactId = "mysqlw-procedure"
from project("mysqlw-procedure").components.java
pom {
name = 'MySQLw'
description = 'A module for MySQLw to work with and create procedures.'
url = 'https://github.com/PlanetTeamSpeakk/MySQLw'
scm {
connection = 'scm:git:git://github.com/PlanetTeamSpeakk/MySQLw.git'
developerConnection = 'scm:git:git://github.com/PlanetTeamSpeakk/MySQLw.git'
url = 'https://github.com/PlanetTeamSpeakk/MySQLw'
}
licenses {
license {
name = 'MIT License'
url = 'https://raw.githubusercontent.com/PlanetTeamSpeakk/MySQLw/main/LICENSE'
}
}
developers {
developer {
id = 'PlanetTeamSpeak'
name = 'PlanetTeamSpeak'
email = 'PlanetTeamSpeakk@users.noreply.github.com'
}
}
withXml {
def depsNode = asNode().get("dependencies").get(0)
def depNode = depsNode.appendNode("dependency")
depNode.appendNode("groupId", "com.ptsmods")
depNode.appendNode("artifactId", "mysqlw")
depNode.appendNode("version", project.rootProject.version)
depNode.appendNode("scope", "runtime")
}
}
}
}
// Credentials are gotten from global gradle.properties file (user home/.gradle/gradle.properties)
repositories {
maven {
url = "file:///${project.rootProject.buildDir}/repo"
name = "MavenLocal"
}
maven {
// https://oss.sonatype.org
def releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
def snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots/"
name = "MavenCentral"
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
credentials(PasswordCredentials) {
username ossrhUsername
password ossrhPassword
}
}
maven {
name = "GitHubPackages"
url = ghUrlRoot + "/MySQLw"
credentials(PasswordCredentials) {
username = ghUsername
password = ghToken
}
}
}
}
signing {
sign publishing.publications.mavenJavaMain
sign publishing.publications.mavenJavaCollection
sign publishing.publications.mavenJavaProcedure
}