2018-09-17 10:07:32 +03:00
|
|
|
sourceCompatibility = '1.8'
|
|
|
|
targetCompatibility = '1.8'
|
|
|
|
|
|
|
|
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']
|
|
|
|
compileOnly group: 'org.bouncycastle', name: 'bcprov-jdk15', version: rootProject['verBcprov']
|
|
|
|
api group: 'com.google.code.gson', name: 'gson', version: rootProject['verGson']
|
|
|
|
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter', version: rootProject['verJunit']
|
2019-08-28 16:30:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
testLogging {
|
|
|
|
events "passed", "skipped", "failed"
|
|
|
|
}
|
2018-09-17 10:07:32 +03:00
|
|
|
}
|
2019-11-24 20:33:18 +03:00
|
|
|
sourceSets {
|
|
|
|
java9 {
|
|
|
|
java {
|
|
|
|
srcDirs = ['src/main/java9']
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
java9Implementation files(sourceSets.main.output.classesDirs) { builtBy compileJava }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-10 21:53:12 +03:00
|
|
|
jar {
|
2019-11-24 20:33:18 +03:00
|
|
|
into('META-INF/versions/9') {
|
|
|
|
from sourceSets.java9.output
|
|
|
|
}
|
2019-08-10 21:53:12 +03:00
|
|
|
classifier = 'clean'
|
|
|
|
}
|
2019-11-24 20:33:18 +03:00
|
|
|
compileJava9Java {
|
|
|
|
sourceCompatibility = 9
|
|
|
|
targetCompatibility = 9
|
|
|
|
}
|
2019-08-10 21:53:12 +03:00
|
|
|
|
2019-08-28 11:55:58 +03:00
|
|
|
task sourcesJar(type: Jar) {
|
|
|
|
from sourceSets.main.allJava
|
|
|
|
archiveClassifier = 'sources'
|
|
|
|
}
|
|
|
|
|
|
|
|
task javadocJar(type: Jar) {
|
|
|
|
from javadoc
|
|
|
|
archiveClassifier = 'javadoc'
|
|
|
|
}
|
|
|
|
|
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'
|
|
|
|
url = 'https://launcher.gravit.pro'
|
|
|
|
licenses {
|
|
|
|
license {
|
|
|
|
name = 'GNU General Public License, Version 3.0'
|
|
|
|
url = 'https://www.gnu.org/licenses/gpl-3.0.html'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
scm {
|
|
|
|
connection = 'scm:git:https://github.com/GravitLauncher/Launcher.git'
|
|
|
|
developerConnection = 'scm:git:ssh://git@github.com:GravitLauncher/Launcher.git'
|
|
|
|
url = 'https://launcher.gravit.pro/'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
}
|