mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 11:39:11 +03:00
77 lines
2.1 KiB
Groovy
77 lines
2.1 KiB
Groovy
sourceCompatibility = '17'
|
|
targetCompatibility = '17'
|
|
|
|
dependencies {
|
|
api project(':LauncherCore')
|
|
compileOnly group: 'io.netty', name: 'netty-codec-http', version: rootProject['verNetty']
|
|
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter', version: rootProject['verJunit']
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
testLogging {
|
|
events "passed", "skipped", "failed"
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
}
|
|
|
|
jar {
|
|
archiveClassifier.set('clean')
|
|
}
|
|
|
|
task sourcesJar(type: Jar) {
|
|
from sourceSets.main.allJava
|
|
archiveClassifier.set('sources')
|
|
}
|
|
|
|
task javadocJar(type: Jar) {
|
|
from javadoc
|
|
archiveClassifier.set('javadoc')
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
launcherwsapi(MavenPublication) {
|
|
artifactId = 'launcher-ws-api'
|
|
artifact(jar) {
|
|
classifier ""
|
|
}
|
|
artifact sourcesJar
|
|
artifact javadocJar
|
|
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'
|
|
}
|
|
}
|
|
developers {
|
|
developer {
|
|
id = 'gravita'
|
|
name = 'Gravita'
|
|
email = 'gravita@gravit.pro'
|
|
}
|
|
developer {
|
|
id = 'zaxar163'
|
|
name = 'Zaxar163'
|
|
email = 'zahar.vcherachny@yandex.ru'
|
|
}
|
|
}
|
|
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.launcherwsapi
|
|
}
|