2019-05-03 16:35:14 +03:00
|
|
|
sourceCompatibility = '1.8'
|
|
|
|
targetCompatibility = '1.8'
|
|
|
|
|
|
|
|
dependencies {
|
2019-05-26 09:37:25 +03:00
|
|
|
compile project(':LauncherCore')
|
2019-05-03 16:35:14 +03:00
|
|
|
compileOnly 'org.apache.httpcomponents:httpclient:4.5.7'
|
2019-05-31 01:51:02 +03:00
|
|
|
compileOnly 'io.netty:netty-codec-http:4.1.36.Final'
|
2019-05-03 16:35:14 +03:00
|
|
|
}
|
2019-08-10 21:53:12 +03:00
|
|
|
|
|
|
|
jar {
|
|
|
|
classifier = 'clean'
|
|
|
|
}
|
|
|
|
|
2019-08-13 14:49:41 +03:00
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
launcherwsapi(MavenPublication) {
|
2019-08-10 21:53:12 +03:00
|
|
|
artifactId = 'launcher-ws-api'
|
2019-08-22 10:36:50 +03:00
|
|
|
artifact(jar) {
|
|
|
|
classifier ""
|
|
|
|
}
|
2019-08-13 14:49:41 +03:00
|
|
|
pom {
|
|
|
|
name = 'GravitLauncher WebSocket API'
|
|
|
|
description = 'GravitLauncher WebSocket 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'
|
|
|
|
}
|
|
|
|
}
|
2019-08-22 14:30:22 +03:00
|
|
|
developers {
|
|
|
|
developer {
|
|
|
|
id = 'gravit'
|
|
|
|
name = 'Gravit'
|
|
|
|
email = 'gravit.min@ya.ru'
|
|
|
|
}
|
|
|
|
developer {
|
|
|
|
id = 'zaxar163'
|
|
|
|
name = 'Zaxar163'
|
|
|
|
email = 'zahar.vcherachny@yandex.ru'
|
|
|
|
}
|
2019-08-22 10:36:50 +03:00
|
|
|
}
|
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'
|
|
|
|
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.launcherwsapi
|
2019-08-13 14:49:41 +03:00
|
|
|
}
|