2019-04-29 12:47:11 +03:00
|
|
|
apply plugin: 'com.github.johnrengelman.shadow'
|
|
|
|
|
2019-06-02 05:03:08 +03:00
|
|
|
String mainClassName = "pro.gravit.launcher.server.ServerWrapper"
|
|
|
|
String mainAgentName = "pro.gravit.launcher.server.ServerAgent"
|
2018-09-25 16:21:08 +03:00
|
|
|
|
2019-04-29 12:47:11 +03:00
|
|
|
configurations {
|
2019-05-15 14:11:22 +03:00
|
|
|
pack
|
2020-03-01 12:44:14 +03:00
|
|
|
api.extendsFrom pack
|
2019-04-29 12:47:11 +03:00
|
|
|
}
|
2018-09-25 16:21:08 +03:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
maven {
|
2020-03-01 12:44:14 +03:00
|
|
|
url "https://repo.spring.io/plugins-release/"
|
2018-09-25 16:21:08 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceCompatibility = '1.8'
|
|
|
|
targetCompatibility = '1.8'
|
|
|
|
|
|
|
|
jar {
|
2019-05-15 14:11:22 +03:00
|
|
|
classifier = 'clean'
|
2018-09-25 16:21:08 +03:00
|
|
|
manifest.attributes("Main-Class": mainClassName,
|
2019-04-03 16:27:40 +03:00
|
|
|
"Premain-Class": mainAgentName,
|
|
|
|
"Can-Redefine-Classes": "true",
|
|
|
|
"Can-Retransform-Classes": "true",
|
|
|
|
"Can-Set-Native-Method-Prefix": "true")
|
2018-09-25 16:21:08 +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'
|
|
|
|
}
|
|
|
|
|
2018-09-25 16:21:08 +03:00
|
|
|
dependencies {
|
2019-05-03 16:27:48 +03:00
|
|
|
pack project(':LauncherAuthlib')
|
2020-04-05 10:27:04 +03:00
|
|
|
pack group: 'io.netty', name: 'netty-codec-http', version: rootProject['verNetty']
|
2018-09-25 16:21:08 +03:00
|
|
|
}
|
2019-04-29 12:47:11 +03:00
|
|
|
|
|
|
|
shadowJar {
|
2020-03-01 12:44:14 +03:00
|
|
|
duplicatesStrategy = 'EXCLUDE'
|
2019-05-15 14:11:22 +03:00
|
|
|
classifier = null
|
2019-06-02 05:08:35 +03:00
|
|
|
relocate 'io.netty', 'pro.gravit.repackage.io.netty'
|
2019-05-15 14:11:22 +03:00
|
|
|
configurations = [project.configurations.pack]
|
|
|
|
exclude 'module-info.class'
|
|
|
|
}
|
|
|
|
|
2019-08-28 11:55:58 +03:00
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
serverwrapperapi(MavenPublication) {
|
|
|
|
artifactId = 'serverwrapper-api'
|
|
|
|
artifact(jar) {
|
|
|
|
classifier ""
|
|
|
|
}
|
|
|
|
artifact sourcesJar
|
|
|
|
artifact javadocJar
|
|
|
|
pom {
|
|
|
|
name = 'GravitLauncher ServerWrapper API'
|
|
|
|
description = 'GravitLauncher ServerWrapper Module API'
|
|
|
|
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/'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
signing {
|
|
|
|
sign publishing.publications.serverwrapperapi
|
|
|
|
}
|
2019-05-15 14:11:22 +03:00
|
|
|
|
2019-09-04 16:38:50 +03:00
|
|
|
assemble.dependsOn tasks.shadowJar
|