[ANY] 5.2.0 dev

This commit is contained in:
Gravita 2021-03-20 16:49:49 +07:00
parent d7e44700f6
commit cd5c78c413
4 changed files with 10 additions and 7 deletions

View file

@ -8,7 +8,7 @@
url "https://oss.sonatype.org/content/repositories/snapshots" url "https://oss.sonatype.org/content/repositories/snapshots"
} }
maven { 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: 'org.hibernate', name: 'hibernate-hikaricp', version: rootProject['verHibernate']
bundle group: 'mysql', name: 'mysql-connector-java', version: rootProject['verMySQLConn'] bundle group: 'mysql', name: 'mysql-connector-java', version: rootProject['verMySQLConn']
bundle group: 'org.postgresql', name: 'postgresql', version: rootProject['verPostgreSQLConn'] 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'] testImplementation group: 'org.junit.jupiter', name: 'junit-jupiter', version: rootProject['verJunit']
hikari 'io.micrometer:micrometer-core:1.0.6' hikari 'io.micrometer:micrometer-core:1.5.10'
hikari('com.zaxxer:HikariCP:3.4.1') { hikari('com.zaxxer:HikariCP:4.0.3') {
exclude group: 'javassist' exclude group: 'javassist'
exclude group: 'io.micrometer' exclude group: 'io.micrometer'
exclude group: 'org.slf4j' exclude group: 'org.slf4j'

View file

@ -5,8 +5,8 @@
public final class Version { public final class Version {
public static final int MAJOR = 5; public static final int MAJOR = 5;
public static final int MINOR = 1; public static final int MINOR = 2;
public static final int PATCH = 11; public static final int PATCH = 0;
public static final int BUILD = 1; public static final int BUILD = 1;
public static final Version.Type RELEASE = Type.DEV; public static final Version.Type RELEASE = Type.DEV;
public final int major; public final int major;

View file

@ -24,6 +24,9 @@
maven { maven {
url "https://clojars.org/repo/" url "https://clojars.org/repo/"
} }
maven {
url "https://jcenter.bintray.com/"
}
} }
jar { jar {

View file

@ -12,7 +12,7 @@
verSlf4j = '1.7.30' verSlf4j = '1.7.30'
verMySQLConn = '8.0.23' verMySQLConn = '8.0.23'
verPostgreSQLConn = '42.2.19' verPostgreSQLConn = '42.2.19'
verProguard = '6.2.2' verProguard = '7.1.0-beta1'
verLaunch4j = '3.14' verLaunch4j = '3.14'
verHibernate = '5.4.29.Final' verHibernate = '5.4.29.Final'
} }