Updated version, dependencies

This commit is contained in:
Robinson 2022-03-03 00:27:21 +01:00
parent 4be6cbb842
commit aa925f7c91
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
4 changed files with 13 additions and 13 deletions

View File

@ -1,7 +1,7 @@
- ByteUtilties - Byte manipulation and Unsigned Number Utilities
[The Apache Software License, Version 2.0]
https://git.dorkbox.com/dorkbox/ByteUtilities
Copyright 2021
Copyright 2022
Dorkbox LLC
Extra license information
@ -47,14 +47,14 @@
- Netty - An event-driven asynchronous network application framework
[The Apache Software License, Version 2.0]
https://netty.io
Copyright 2021
Copyright 2022
The Netty Project
Contributors. See source NOTICE
- Kryo - Fast and efficient binary object graph serialization framework for Java
[BSD 3-Clause License]
https://github.com/EsotericSoftware/kryo
Copyright 2021
Copyright 2022
Nathan Sweet
Extra license information

View File

@ -11,7 +11,7 @@ Maven Info
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>ByteUtilities</artifactId>
<version>1.4</version>
<version>1.5</version>
</dependency>
</dependencies>
```

View File

@ -25,18 +25,18 @@ gradle.startParameter.showStacktrace = ShowStacktrace.ALWAYS // always show th
plugins {
id("com.dorkbox.GradleUtils") version "2.16"
id("com.dorkbox.Licensing") version "2.9.2"
id("com.dorkbox.Licensing") version "2.12"
id("com.dorkbox.VersionUpdate") version "2.4"
id("com.dorkbox.GradlePublish") version "1.11"
id("com.dorkbox.GradlePublish") version "1.12"
kotlin("jvm") version "1.5.21"
kotlin("jvm") version "1.6.10"
}
object Extras {
// set for the project
const val description = "Byte manipulation and Unsigned Number Utilities"
const val group = "com.dorkbox"
const val version = "1.4"
const val version = "1.5"
// set as project.ext
const val name = "ByteUtilities"
@ -113,16 +113,16 @@ tasks.jar.get().apply {
}
dependencies {
implementation("com.dorkbox:Updates:1.1")
api("com.dorkbox:Updates:1.1")
// listed as compileOnly, since we will be using netty bytebuf utils if we ALREADY are using netty byte buffs. **We don't want a hard dependency.**
compileOnly("io.netty:netty-buffer:4.1.66.Final")
compileOnly("com.esotericsoftware:kryo:5.2.0")
compileOnly("io.netty:netty-buffer:4.1.72.Final")
compileOnly("com.esotericsoftware:kryo:5.3.0")
testImplementation("io.netty:netty-buffer:4.1.66.Final")
testImplementation("com.esotericsoftware:kryo:5.2.0")
testImplementation("junit:junit:4.13")
testImplementation("junit:junit:4.13.2")
}
publishToSonatype {

View File

@ -19,5 +19,5 @@ object BytesInfo {
/**
* Gets the version number.
*/
const val version = "1.4"
const val version = "1.5"
}