diff --git a/LaunchServer/build.gradle b/LaunchServer/build.gradle index 8e69ee4a..21ba8d29 100644 --- a/LaunchServer/build.gradle +++ b/LaunchServer/build.gradle @@ -167,7 +167,9 @@ task dumpClientLibs(type: Copy) { publications { launchserverapi(MavenPublication) { artifactId = 'launchserver-api' - artifact cleanjar + artifact(cleanjar) { + classifier "" + } pom { name = 'GravitLauncher LaunchServer API' description = 'GravitLauncher LaunchServer Module API' @@ -178,6 +180,18 @@ task dumpClientLibs(type: Copy) { url = 'https://www.gnu.org/licenses/gpl-3.0.html' } } + developers { + developer { + id = 'gravit' + name = 'Gravit' + email = 'gravit.min@ya.ru' + } + developer { + id = 'zaxar163' + name = 'Zaxar163' + email = 'zahar.vcherachny@yandex.ru' + } + } scm { connection = 'scm:git:https://github.com/GravitLauncher/Launcher.git' diff --git a/Launcher/build.gradle b/Launcher/build.gradle index 8c40adc7..f8dfa291 100644 --- a/Launcher/build.gradle +++ b/Launcher/build.gradle @@ -62,7 +62,9 @@ task dumpLibs(type: Copy) { publications { launcherclientapi(MavenPublication) { artifactId = 'launcher-client-api' - artifact jar + artifact(jar) { + classifier "" + } pom { name = 'GravitLauncher Client API' description = 'GravitLauncher Client Module API' @@ -73,6 +75,18 @@ task dumpLibs(type: Copy) { url = 'https://www.gnu.org/licenses/gpl-3.0.html' } } + developers { + developer { + id = 'gravit' + name = 'Gravit' + email = 'gravit.min@ya.ru' + } + 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' diff --git a/LauncherAPI/build.gradle b/LauncherAPI/build.gradle index e246c6e8..2bb9b8fc 100644 --- a/LauncherAPI/build.gradle +++ b/LauncherAPI/build.gradle @@ -15,7 +15,9 @@ compile project(':LauncherCore') publications { launcherwsapi(MavenPublication) { artifactId = 'launcher-ws-api' - artifact jar + artifact(jar) { + classifier "" + } pom { name = 'GravitLauncher WebSocket API' description = 'GravitLauncher WebSocket Module API' @@ -26,6 +28,18 @@ compile project(':LauncherCore') url = 'https://www.gnu.org/licenses/gpl-3.0.html' } } + developers { + developer { + id = 'gravit' + name = 'Gravit' + email = 'gravit.min@ya.ru' + } + 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' diff --git a/LauncherCore/build.gradle b/LauncherCore/build.gradle index 26e815e4..d6889951 100644 --- a/LauncherCore/build.gradle +++ b/LauncherCore/build.gradle @@ -17,7 +17,9 @@ publications { launchercore(MavenPublication) { artifactId = 'launcher-core' - artifact jar + artifact(jar) { + classifier "" + } pom { name = 'GravitLauncher Core Utils' description = 'GravitLauncher Core Utils' @@ -28,6 +30,18 @@ url = 'https://www.gnu.org/licenses/gpl-3.0.html' } } + developers { + developer { + id = 'gravit' + name = 'Gravit' + email = 'gravit.min@ya.ru' + } + 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' diff --git a/LauncherCore/src/main/java/pro/gravit/utils/Version.java b/LauncherCore/src/main/java/pro/gravit/utils/Version.java index abf86875..96667473 100644 --- a/LauncherCore/src/main/java/pro/gravit/utils/Version.java +++ b/LauncherCore/src/main/java/pro/gravit/utils/Version.java @@ -22,9 +22,9 @@ public final class Version { public final Type release; public static final int MAJOR = 5; public static final int MINOR = 0; - public static final int PATCH = 6; + public static final int PATCH = 7; public static final int BUILD = 1; - public static final Version.Type RELEASE = Version.Type.STABLE; + public static final Version.Type RELEASE = Version.Type.DEV; @LauncherAPI public Version(int major, int minor, int patch) { diff --git a/build.gradle b/build.gradle index 1c6579f2..e06ea52b 100644 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ id 'signing' } group = 'pro.gravit.launcher' -version = '5.0.6' +version = '5.0.7-SNAPSHOT' configure(subprojects.findAll { it.name != 'modules' }) { apply plugin: 'idea'