mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-12-22 16:41:46 +03:00
[ANY] 5.2.0 dev
This commit is contained in:
parent
d7e44700f6
commit
cd5c78c413
4 changed files with 10 additions and 7 deletions
|
@ -8,7 +8,7 @@
|
|||
url "https://oss.sonatype.org/content/repositories/snapshots"
|
||||
}
|
||||
maven {
|
||||
url "https://maven.geomajas.org/"
|
||||
url "https://jcenter.bintray.com/"
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -84,11 +84,11 @@ pack project(':LauncherAPI')
|
|||
bundle group: 'org.hibernate', name: 'hibernate-hikaricp', version: rootProject['verHibernate']
|
||||
bundle group: 'mysql', name: 'mysql-connector-java', version: rootProject['verMySQLConn']
|
||||
bundle group: 'org.postgresql', name: 'postgresql', version: rootProject['verPostgreSQLConn']
|
||||
bundle group: 'net.sf.proguard', name: 'proguard-base', version: rootProject['verProguard']
|
||||
bundle group: 'com.guardsquare', name: 'proguard-base', version: rootProject['verProguard']
|
||||
testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter', version: rootProject['verJunit']
|
||||
|
||||
hikari 'io.micrometer:micrometer-core:1.0.6'
|
||||
hikari('com.zaxxer:HikariCP:3.4.1') {
|
||||
hikari 'io.micrometer:micrometer-core:1.5.10'
|
||||
hikari('com.zaxxer:HikariCP:4.0.3') {
|
||||
exclude group: 'javassist'
|
||||
exclude group: 'io.micrometer'
|
||||
exclude group: 'org.slf4j'
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
public final class Version {
|
||||
|
||||
public static final int MAJOR = 5;
|
||||
public static final int MINOR = 1;
|
||||
public static final int PATCH = 11;
|
||||
public static final int MINOR = 2;
|
||||
public static final int PATCH = 0;
|
||||
public static final int BUILD = 1;
|
||||
public static final Version.Type RELEASE = Type.DEV;
|
||||
public final int major;
|
||||
|
|
|
@ -24,6 +24,9 @@
|
|||
maven {
|
||||
url "https://clojars.org/repo/"
|
||||
}
|
||||
maven {
|
||||
url "https://jcenter.bintray.com/"
|
||||
}
|
||||
}
|
||||
|
||||
jar {
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
verSlf4j = '1.7.30'
|
||||
verMySQLConn = '8.0.23'
|
||||
verPostgreSQLConn = '42.2.19'
|
||||
verProguard = '6.2.2'
|
||||
verProguard = '7.1.0-beta1'
|
||||
verLaunch4j = '3.14'
|
||||
verHibernate = '5.4.29.Final'
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue