diff --git a/LICENSE b/LICENSE index 992cc48..7c2d5f7 100644 --- a/LICENSE +++ b/LICENSE @@ -130,13 +130,13 @@ - JNA - Simplified native library access for Java. [The Apache Software License, Version 2.0] https://github.com/twall/jna - Copyright 2019 + Copyright 2020 Timothy Wall - JNA-Platform - Mappings for a number of commonly used platform functions [The Apache Software License, Version 2.0] https://github.com/twall/jna - Copyright 2019 + Copyright 2020 Timothy Wall - Java Uuid Generator - A set of Java classes for working with UUIDs @@ -171,7 +171,7 @@ - Kryo Serializers - Extra kryo serializers [The Apache Software License, Version 2.0] https://github.com/magro/kryo-serializers - Copyright 2019 + Copyright 2020 Martin Grotzke Rafael Winterhalter @@ -191,7 +191,7 @@ - Lightweight Java Game Library - Java library that enables cross-platform access to popular native APIs [BSD 3-Clause License] https://github.com/LWJGL/lwjgl3 - Copyright 2019 + Copyright 2020 Lightweight Java Game Library - TypeTools - A simple, zero-dependency library for working with types. Supports Java 1.6+ and Android. @@ -203,19 +203,19 @@ - Eclipse Platform - Frameworks and common services to support the use of Eclipse and it's tools (SWT) [Eclipse Public License (EPL)] https://projects.eclipse.org/projects/eclipse.platform - Copyright 2019 + Copyright 2020 The Eclipse Foundation, Inc. - SLF4J - Simple facade or abstraction for various logging frameworks [MIT License] http://www.slf4j.org - Copyright 2019 + Copyright 2020 QOS.ch - XZ for Java - Complete implementation of XZ data compression in pure Java [Public Domain, per Creative Commons CC0] https://tukaani.org/xz/java.html - Copyright 2018 + Copyright 2020 Lasse Collin Igor Pavlov diff --git a/build.gradle.kts b/build.gradle.kts index 71e77b7..47b465b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -28,17 +28,17 @@ gradle.startParameter.warningMode = WarningMode.All plugins { java - id("com.dorkbox.GradleUtils") version "1.10" - id("com.dorkbox.Licensing") version "2.2" + id("com.dorkbox.GradleUtils") version "1.12" + id("com.dorkbox.Licensing") version "2.5" id("com.dorkbox.VersionUpdate") version "2.0" - id("com.dorkbox.GradlePublish") version "1.6" + id("com.dorkbox.GradlePublish") version "1.7" } object Extras { // set for the project const val description = "Utilities for use within Java projects" const val group = "com.dorkbox" - const val version = "1.7" + const val version = "1.8" // set as project.ext const val name = "Utilities" @@ -224,7 +224,7 @@ tasks.jar.get().apply { dependencies { compileOnly("com.dorkbox:Executor:1.1") - val jnaVersion = "5.5.0" + val jnaVersion = "5.6.0" compileOnly("net.java.dev.jna:jna:$jnaVersion") compileOnly("net.java.dev.jna:jna-platform:$jnaVersion") @@ -252,7 +252,7 @@ dependencies { compileOnly("net.jodah:typetools:0.6.2") // because the eclipse release of SWT is sPecIaL! - compileOnly(GradleUtils.getSwtMavenId("3.113.0")) { + compileOnly(GradleUtils.getSwtMavenId("3.114.100")) { isTransitive = false } @@ -262,7 +262,7 @@ dependencies { testImplementation("org.bouncycastle:bcmail-jdk15on:$bcVersion") testImplementation("org.bouncycastle:bctls-jdk15on:$bcVersion") - testImplementation("com.esotericsoftware:kryo:5.0.0-RC2") + testImplementation("com.esotericsoftware:kryo:5.0.0-RC8") testImplementation("de.javakaffee:kryo-serializers:0.45") testImplementation("junit:junit:4.13")