udpated deps, version 3.4

This commit is contained in:
Robinson 2023-08-21 01:47:32 +02:00
parent bdacb743e0
commit 3161b84da3
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
4 changed files with 7 additions and 20 deletions

15
LICENSE
View File

@ -14,7 +14,7 @@
Kotlin Compiler, Test Data+Libraries, and Tools repository contain third-party code, to which different licenses may apply Kotlin Compiler, Test Data+Libraries, and Tools repository contain third-party code, to which different licenses may apply
See: https://github.com/JetBrains/kotlin/blob/master/license/README.md See: https://github.com/JetBrains/kotlin/blob/master/license/README.md
- ByteUtils - Byte manipulation and SHA/xxHash utilities - ByteUtilities - Byte manipulation and SHA/xxHash utilities
[The Apache Software License, Version 2.0] [The Apache Software License, Version 2.0]
https://git.dorkbox.com/dorkbox/ByteUtilities https://git.dorkbox.com/dorkbox/ByteUtilities
Copyright 2023 Copyright 2023
@ -27,12 +27,6 @@
Copyright 2020 Copyright 2020
Nathan Sweet Nathan Sweet
- Kotlin Hex -
[MIT License]
https://github.com/komputing/KHex
Copyright 2017
ligi
- Base58 - - Base58 -
[The Apache Software License, Version 2.0] [The Apache Software License, Version 2.0]
https://bitcoinj.github.io https://bitcoinj.github.io
@ -146,13 +140,6 @@
Lightweight Java Game Library Project Lightweight Java Game Library Project
Riven Riven
- Modified hex conversion utility methods -
[The Apache Software License, Version 2.0]
https://git.dorkbox.com/dorkbox/Utilities
https://netty.io
Copyright 2014
The Netty Project
- Retrofit - A type-safe HTTP client for Android and Java - Retrofit - A type-safe HTTP client for Android and Java
[The Apache Software License, Version 2.0] [The Apache Software License, Version 2.0]
https://github.com/square/retrofit https://github.com/square/retrofit

View File

@ -26,7 +26,7 @@ Maven Info
<dependency> <dependency>
<groupId>com.dorkbox</groupId> <groupId>com.dorkbox</groupId>
<artifactId>CabParser</artifactId> <artifactId>CabParser</artifactId>
<version>3.3</version> <version>3.4</version>
</dependency> </dependency>
</dependencies> </dependencies>
``` ```
@ -36,7 +36,7 @@ Gradle Info
``` ```
dependencies { dependencies {
... ...
implementation("com.dorkbox:CabParser:3.3") implementation("com.dorkbox:CabParser:3.4")
} }
``` ```

View File

@ -38,7 +38,7 @@ object Extras {
// set for the project // set for the project
const val description = "Parse and extract data from Microsoft LZX compressed .cab files for Java 8+" const val description = "Parse and extract data from Microsoft LZX compressed .cab files for Java 8+"
const val group = "com.dorkbox" const val group = "com.dorkbox"
const val version = "3.3" const val version = "3.4"
// set as project.ext // set as project.ext
const val name = "CabParser" const val name = "CabParser"
@ -93,9 +93,9 @@ tasks.jar.get().apply {
} }
dependencies { dependencies {
api("com.dorkbox:ByteUtilities:1.14") api("com.dorkbox:ByteUtilities:2.0")
api("com.dorkbox:Updates:1.1") api("com.dorkbox:Updates:1.1")
api("com.dorkbox:Utilities:1.45") api("com.dorkbox:Utilities:1.46")
} }
publishToSonatype { publishToSonatype {

View File

@ -29,7 +29,7 @@ class CabParser {
/** /**
* Gets the version number. * Gets the version number.
*/ */
const val version: String = "3.2" const val version = "3.4"
init { init {
// Add this project to the updates system, which verifies this class + UUID + version information // Add this project to the updates system, which verifies this class + UUID + version information