Updated build deps. Updated gradle.

This commit is contained in:
Robinson 2022-11-21 13:54:50 +01:00
parent 845d4cfddb
commit 6748eee67f
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
6 changed files with 22 additions and 19 deletions

View File

@ -25,19 +25,19 @@ import java.time.Instant
gradle.startParameter.showStacktrace = ShowStacktrace.ALWAYS // always show the stacktrace!
plugins {
id("com.dorkbox.GradleUtils") version "2.16"
id("com.dorkbox.Licensing") version "2.12"
id("com.dorkbox.VersionUpdate") version "2.4"
id("com.dorkbox.GradlePublish") version "1.12"
id("com.dorkbox.GradleUtils") version "3.3"
id("com.dorkbox.Licensing") version "2.17"
id("com.dorkbox.VersionUpdate") version "2.5"
id("com.dorkbox.GradlePublish") version "1.13"
kotlin("jvm") version "1.6.10"
kotlin("jvm") version "1.7.20"
}
object Extras {
// set for the project
const val description = "Utilities for use within Java projects"
const val group = "com.dorkbox"
const val version = "1.30"
const val version = "1.30.1"
// set as project.ext
const val name = "Utilities"
@ -159,11 +159,11 @@ tasks.jar.get().apply {
// NOTE: compileOnly is used because there are some classes/dependencies that ARE NOT necessary to be included, UNLESS the user
// is actually using that part of the library. If this happens, they will (or should) already be using the dependency)
dependencies {
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0")
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4")
api("com.dorkbox:Collections:1.1")
api("com.dorkbox:Executor:3.9")
api("com.dorkbox:NetworkUtils:2.17")
api("com.dorkbox:Collections:1.2")
api("com.dorkbox:Executor:3.11")
api("com.dorkbox:NetworkUtils:2.19")
api("com.dorkbox:OS:1.0")
api("com.dorkbox:Updates:1.1")
@ -177,8 +177,8 @@ dependencies {
api("com.fasterxml.uuid:java-uuid-generator:4.0.1")
// https://github.com/MicroUtils/kotlin-logging
api("io.github.microutils:kotlin-logging:2.1.23")
api("org.slf4j:slf4j-api:1.8.0-beta4")
api("io.github.microutils:kotlin-logging:3.0.4")
api("org.slf4j:slf4j-api:2.0.3")
api("org.tukaani:xz:1.9")
compileOnly("com.fasterxml.uuid:java-uuid-generator:4.0.1")
@ -189,7 +189,7 @@ dependencies {
// compileOnly("com.esotericsoftware:kryo:5.3.0")
// compileOnly("de.javakaffee:kryo-serializers:0.45")
compileOnly("io.netty:netty-buffer:4.1.77.Final")
compileOnly("io.netty:netty-buffer:4.1.85.Final")
val bcVersion = "1.70"
compileOnly("org.bouncycastle:bcprov-jdk15on:$bcVersion")
@ -211,10 +211,13 @@ dependencies {
testImplementation("com.esotericsoftware:kryo:5.1.0")
testImplementation("de.javakaffee:kryo-serializers:0.45")
testImplementation("com.dorkbox:Serializers:2.5")
testImplementation("com.dorkbox:Serializers:2.7")
testImplementation("junit:junit:4.13.2")
testImplementation("ch.qos.logback:logback-classic:1.3.0-alpha4")
testImplementation("ch.qos.logback:logback-classic:1.3.0-beta0")
}
repositories {
mavenCentral()
}
publishToSonatype {

Binary file not shown.

View File

@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

View File

@ -37,7 +37,7 @@ class GtkLoader {
*/
public static
String getVersion() {
return "1.30";
return "1.30.1";
}
// objdump -T /usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0 | grep gtk

View File

@ -42,7 +42,7 @@ class Desktop {
*/
public static
String getVersion() {
return "1.30";
return "1.30.1";
}
static {

View File

@ -56,7 +56,7 @@ object FileUtil {
/**
* Gets the version number.
*/
val version = "1.30"
val version = "1.30.1"
private val log = KotlinLogging.logger(FileUtil::class.java.name)