mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 03:31:15 +03:00
[ANY] Навёл порядок в скриптах сборки.
This commit is contained in:
parent
2eb994f313
commit
3f6eb3156d
4 changed files with 2 additions and 28 deletions
|
@ -164,49 +164,29 @@ task dumpClientLibs(type: Copy) {
|
||||||
|
|
||||||
|
|
||||||
publishing {
|
publishing {
|
||||||
|
|
||||||
publications {
|
publications {
|
||||||
|
|
||||||
launchserverapi(MavenPublication) {
|
launchserverapi(MavenPublication) {
|
||||||
|
|
||||||
artifactId = 'launchserver-api'
|
artifactId = 'launchserver-api'
|
||||||
artifact cleanjar
|
artifact cleanjar
|
||||||
pom {
|
pom {
|
||||||
|
|
||||||
name = 'GravitLauncher LaunchServer API'
|
name = 'GravitLauncher LaunchServer API'
|
||||||
|
|
||||||
description = 'GravitLauncher LaunchServer Module API'
|
description = 'GravitLauncher LaunchServer Module API'
|
||||||
|
|
||||||
url = 'https://launcher.gravit.pro'
|
url = 'https://launcher.gravit.pro'
|
||||||
|
|
||||||
licenses {
|
licenses {
|
||||||
|
|
||||||
license {
|
license {
|
||||||
|
|
||||||
name = 'GNU General Public License, Version 3.0'
|
name = 'GNU General Public License, Version 3.0'
|
||||||
|
|
||||||
url = 'https://www.gnu.org/licenses/gpl-3.0.html'
|
url = 'https://www.gnu.org/licenses/gpl-3.0.html'
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
scm {
|
scm {
|
||||||
|
|
||||||
connection = 'scm:git:https://github.com/GravitLauncher/Launcher.git'
|
connection = 'scm:git:https://github.com/GravitLauncher/Launcher.git'
|
||||||
|
|
||||||
developerConnection = 'scm:git:ssh://git@github.com:GravitLauncher/Launcher.git'
|
developerConnection = 'scm:git:ssh://git@github.com:GravitLauncher/Launcher.git'
|
||||||
|
|
||||||
url = 'https://launcher.gravit.pro/'
|
url = 'https://launcher.gravit.pro/'
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
signing {
|
signing {
|
||||||
|
|
|
@ -8,7 +8,6 @@
|
||||||
import oshi.hardware.HWDiskStore;
|
import oshi.hardware.HWDiskStore;
|
||||||
import oshi.hardware.HardwareAbstractionLayer;
|
import oshi.hardware.HardwareAbstractionLayer;
|
||||||
import oshi.hardware.NetworkIF;
|
import oshi.hardware.NetworkIF;
|
||||||
import oshi.hardware.SoundCard;
|
|
||||||
import oshi.hardware.UsbDevice;
|
import oshi.hardware.UsbDevice;
|
||||||
import pro.gravit.utils.helper.LogHelper;
|
import pro.gravit.utils.helper.LogHelper;
|
||||||
|
|
||||||
|
|
|
@ -33,12 +33,7 @@
|
||||||
tasks.withType(JavaCompile) {
|
tasks.withType(JavaCompile) {
|
||||||
options.encoding = "UTF-8"
|
options.encoding = "UTF-8"
|
||||||
options.annotationProcessorPath = configurations.aptOnly
|
options.annotationProcessorPath = configurations.aptOnly
|
||||||
}
|
options.incremental = true // one flag, and things will get MUCH faster
|
||||||
}
|
|
||||||
|
|
||||||
subprojects {
|
|
||||||
tasks.withType(JavaCompile) {
|
|
||||||
options.incremental = true // one flag, and things will get MUCH faster
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
2
modules
2
modules
|
@ -1 +1 @@
|
||||||
Subproject commit dcd2d6491191d03238a4c396ac8f21a0db650ed6
|
Subproject commit d379b7da2079c8b2cdec69d5795841bfb842f7ba
|
Loading…
Reference in a new issue