Updated version info

This commit is contained in:
nathan 2020-08-29 10:56:59 +02:00
parent d885106556
commit 470f3592ef
2 changed files with 14 additions and 14 deletions

14
LICENSE
View File

@ -130,13 +130,13 @@
- JNA - Simplified native library access for Java. - JNA - Simplified native library access for Java.
[The Apache Software License, Version 2.0] [The Apache Software License, Version 2.0]
https://github.com/twall/jna https://github.com/twall/jna
Copyright 2019 Copyright 2020
Timothy Wall Timothy Wall
- JNA-Platform - Mappings for a number of commonly used platform functions - JNA-Platform - Mappings for a number of commonly used platform functions
[The Apache Software License, Version 2.0] [The Apache Software License, Version 2.0]
https://github.com/twall/jna https://github.com/twall/jna
Copyright 2019 Copyright 2020
Timothy Wall Timothy Wall
- Java Uuid Generator - A set of Java classes for working with UUIDs - Java Uuid Generator - A set of Java classes for working with UUIDs
@ -171,7 +171,7 @@
- Kryo Serializers - Extra kryo serializers - Kryo Serializers - Extra kryo serializers
[The Apache Software License, Version 2.0] [The Apache Software License, Version 2.0]
https://github.com/magro/kryo-serializers https://github.com/magro/kryo-serializers
Copyright 2019 Copyright 2020
Martin Grotzke Martin Grotzke
Rafael Winterhalter Rafael Winterhalter
@ -191,7 +191,7 @@
- Lightweight Java Game Library - Java library that enables cross-platform access to popular native APIs - Lightweight Java Game Library - Java library that enables cross-platform access to popular native APIs
[BSD 3-Clause License] [BSD 3-Clause License]
https://github.com/LWJGL/lwjgl3 https://github.com/LWJGL/lwjgl3
Copyright 2019 Copyright 2020
Lightweight Java Game Library Lightweight Java Game Library
- TypeTools - A simple, zero-dependency library for working with types. Supports Java 1.6+ and Android. - 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 Platform - Frameworks and common services to support the use of Eclipse and it's tools (SWT)
[Eclipse Public License (EPL)] [Eclipse Public License (EPL)]
https://projects.eclipse.org/projects/eclipse.platform https://projects.eclipse.org/projects/eclipse.platform
Copyright 2019 Copyright 2020
The Eclipse Foundation, Inc. The Eclipse Foundation, Inc.
- SLF4J - Simple facade or abstraction for various logging frameworks - SLF4J - Simple facade or abstraction for various logging frameworks
[MIT License] [MIT License]
http://www.slf4j.org http://www.slf4j.org
Copyright 2019 Copyright 2020
QOS.ch QOS.ch
- XZ for Java - Complete implementation of XZ data compression in pure Java - XZ for Java - Complete implementation of XZ data compression in pure Java
[Public Domain, per Creative Commons CC0] [Public Domain, per Creative Commons CC0]
https://tukaani.org/xz/java.html https://tukaani.org/xz/java.html
Copyright 2018 Copyright 2020
Lasse Collin Lasse Collin
Igor Pavlov Igor Pavlov

View File

@ -28,17 +28,17 @@ gradle.startParameter.warningMode = WarningMode.All
plugins { plugins {
java java
id("com.dorkbox.GradleUtils") version "1.10" id("com.dorkbox.GradleUtils") version "1.12"
id("com.dorkbox.Licensing") version "2.2" id("com.dorkbox.Licensing") version "2.5"
id("com.dorkbox.VersionUpdate") version "2.0" id("com.dorkbox.VersionUpdate") version "2.0"
id("com.dorkbox.GradlePublish") version "1.6" id("com.dorkbox.GradlePublish") version "1.7"
} }
object Extras { object Extras {
// set for the project // set for the project
const val description = "Utilities for use within Java projects" const val description = "Utilities for use within Java projects"
const val group = "com.dorkbox" const val group = "com.dorkbox"
const val version = "1.7" const val version = "1.8"
// set as project.ext // set as project.ext
const val name = "Utilities" const val name = "Utilities"
@ -224,7 +224,7 @@ tasks.jar.get().apply {
dependencies { dependencies {
compileOnly("com.dorkbox:Executor:1.1") 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:$jnaVersion")
compileOnly("net.java.dev.jna:jna-platform:$jnaVersion") compileOnly("net.java.dev.jna:jna-platform:$jnaVersion")
@ -252,7 +252,7 @@ dependencies {
compileOnly("net.jodah:typetools:0.6.2") compileOnly("net.jodah:typetools:0.6.2")
// because the eclipse release of SWT is sPecIaL! // because the eclipse release of SWT is sPecIaL!
compileOnly(GradleUtils.getSwtMavenId("3.113.0")) { compileOnly(GradleUtils.getSwtMavenId("3.114.100")) {
isTransitive = false isTransitive = false
} }
@ -262,7 +262,7 @@ dependencies {
testImplementation("org.bouncycastle:bcmail-jdk15on:$bcVersion") testImplementation("org.bouncycastle:bcmail-jdk15on:$bcVersion")
testImplementation("org.bouncycastle:bctls-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("de.javakaffee:kryo-serializers:0.45")
testImplementation("junit:junit:4.13") testImplementation("junit:junit:4.13")