2023-12-23 08:18:10 +03:00
|
|
|
sourceCompatibility = '17'
|
|
|
|
targetCompatibility = '17'
|
2018-09-17 10:07:32 +03:00
|
|
|
|
|
|
|
dependencies {
|
2020-04-05 10:27:04 +03:00
|
|
|
compileOnly group: 'org.fusesource.jansi', name: 'jansi', version: rootProject['verJansi']
|
2020-03-01 14:34:31 +03:00
|
|
|
compileOnly group: 'org.jline', name: 'jline', version: rootProject['verJline']
|
|
|
|
compileOnly group: 'org.jline', name: 'jline-reader', version: rootProject['verJline']
|
|
|
|
compileOnly group: 'org.jline', name: 'jline-terminal', version: rootProject['verJline']
|
2021-04-13 14:04:00 +03:00
|
|
|
compileOnly group: 'org.slf4j', name: 'slf4j-api', version: rootProject['verSlf4j']
|
2020-03-01 14:34:31 +03:00
|
|
|
api group: 'com.google.code.gson', name: 'gson', version: rootProject['verGson']
|
|
|
|
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter', version: rootProject['verJunit']
|
2020-09-25 21:53:44 +03:00
|
|
|
testImplementation group: 'org.jline', name: 'jline', version: rootProject['verJline']
|
|
|
|
testImplementation group: 'org.jline', name: 'jline-reader', version: rootProject['verJline']
|
|
|
|
testImplementation group: 'org.jline', name: 'jline-terminal', version: rootProject['verJline']
|
2019-08-28 16:30:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
testLogging {
|
|
|
|
events "passed", "skipped", "failed"
|
|
|
|
}
|
2018-09-17 10:07:32 +03:00
|
|
|
}
|
2019-08-10 21:53:12 +03:00
|
|
|
jar {
|
2021-09-14 14:05:36 +03:00
|
|
|
archiveClassifier.set('clean')
|
2023-07-30 10:32:13 +03:00
|
|
|
manifest.attributes("Multi-Release": "true")
|
2019-08-10 21:53:12 +03:00
|
|
|
}
|
|
|
|
|
2023-04-03 09:04:12 +03:00
|
|
|
tasks.register('sourcesJar', Jar) {
|
2019-08-28 11:55:58 +03:00
|
|
|
from sourceSets.main.allJava
|
2021-09-14 14:05:36 +03:00
|
|
|
archiveClassifier.set('sources')
|
2019-08-28 11:55:58 +03:00
|
|
|
}
|
|
|
|
|
2023-04-03 09:04:12 +03:00
|
|
|
tasks.register('javadocJar', Jar) {
|
2019-08-28 11:55:58 +03:00
|
|
|
from javadoc
|
2021-09-14 14:05:36 +03:00
|
|
|
archiveClassifier.set('javadoc')
|
2019-08-28 11:55:58 +03:00
|
|
|
}
|
|
|
|
|
2019-08-13 14:49:41 +03:00
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
launchercore(MavenPublication) {
|
2019-08-10 21:53:12 +03:00
|
|
|
artifactId = 'launcher-core'
|
2019-08-22 10:36:50 +03:00
|
|
|
artifact(jar) {
|
|
|
|
classifier ""
|
|
|
|
}
|
2019-08-28 11:55:58 +03:00
|
|
|
artifact sourcesJar
|
|
|
|
artifact javadocJar
|
2019-08-13 14:49:41 +03:00
|
|
|
pom {
|
|
|
|
name = 'GravitLauncher Core Utils'
|
|
|
|
description = 'GravitLauncher Core Utils'
|
2023-01-11 14:16:38 +03:00
|
|
|
url = 'https://gravitlauncher.com'
|
2019-08-13 14:49:41 +03:00
|
|
|
licenses {
|
|
|
|
license {
|
|
|
|
name = 'GNU General Public License, Version 3.0'
|
|
|
|
url = 'https://www.gnu.org/licenses/gpl-3.0.html'
|
|
|
|
}
|
|
|
|
}
|
2020-09-28 21:32:19 +03:00
|
|
|
developers {
|
|
|
|
developer {
|
|
|
|
id = 'gravita'
|
|
|
|
name = 'Gravita'
|
|
|
|
email = 'gravita@gravit.pro'
|
|
|
|
}
|
|
|
|
developer {
|
|
|
|
id = 'zaxar163'
|
|
|
|
name = 'Zaxar163'
|
|
|
|
email = 'zahar.vcherachny@yandex.ru'
|
|
|
|
}
|
|
|
|
}
|
2019-08-13 14:49:41 +03:00
|
|
|
scm {
|
|
|
|
connection = 'scm:git:https://github.com/GravitLauncher/Launcher.git'
|
|
|
|
developerConnection = 'scm:git:ssh://git@github.com:GravitLauncher/Launcher.git'
|
2023-01-11 14:16:38 +03:00
|
|
|
url = 'https://gravitlauncher.com/'
|
2019-08-13 14:49:41 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-10 21:53:12 +03:00
|
|
|
}
|
2019-08-12 23:20:28 +03:00
|
|
|
|
2019-08-13 14:49:41 +03:00
|
|
|
signing {
|
2019-08-12 23:20:28 +03:00
|
|
|
sign publishing.publications.launchercore
|
2019-08-13 14:49:41 +03:00
|
|
|
}
|