Updated to support the split of Utilities + OS project.

This commit is contained in:
Robinson 2022-03-05 22:42:18 +01:00
parent 235bd6981c
commit 2a14d09a2c
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
6 changed files with 68 additions and 7 deletions

60
LICENSE
View File

@ -124,6 +124,36 @@
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
- OS - Information about the system, Java runtime, OS, Window Manager, and Desktop Environment.
[The Apache Software License, Version 2.0]
https://git.dorkbox.com/dorkbox/OS
Copyright 2022
Dorkbox LLC
Extra license information
- Kotlin -
[The Apache Software License, Version 2.0]
https://github.com/JetBrains/kotlin
Copyright 2020
JetBrains s.r.o. and Kotlin Programming Language contributors
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
- Updates - Software Update Management
[The Apache Software License, Version 2.0]
https://git.dorkbox.com/dorkbox/Updates
Copyright 2021
Dorkbox LLC
Extra license information
- Kotlin -
[The Apache Software License, Version 2.0]
https://github.com/JetBrains/kotlin
Copyright 2020
JetBrains s.r.o. and Kotlin Programming Language contributors
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
- ByteUtilties - Byte manipulation and Unsigned Number Utilities
[The Apache Software License, Version 2.0]
https://git.dorkbox.com/dorkbox/ByteUtilities
@ -1128,3 +1158,33 @@
JetBrains s.r.o. and Kotlin Programming Language contributors
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
- OS - Information about the system, Java runtime, OS, Window Manager, and Desktop Environment.
[The Apache Software License, Version 2.0]
https://git.dorkbox.com/dorkbox/OS
Copyright 2022
Dorkbox LLC
Extra license information
- Kotlin -
[The Apache Software License, Version 2.0]
https://github.com/JetBrains/kotlin
Copyright 2020
JetBrains s.r.o. and Kotlin Programming Language contributors
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
- Updates - Software Update Management
[The Apache Software License, Version 2.0]
https://git.dorkbox.com/dorkbox/Updates
Copyright 2021
Dorkbox LLC
Extra license information
- Kotlin -
[The Apache Software License, Version 2.0]
https://github.com/JetBrains/kotlin
Copyright 2020
JetBrains s.r.o. and Kotlin Programming Language contributors
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

View File

@ -93,7 +93,7 @@ Maven Info
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>Network</artifactId>
<version>5.9</version>
<version>5.9.1</version>
</dependency>
</dependencies>
```
@ -103,7 +103,7 @@ Gradle Info
```
dependencies {
...
implementation("com.dorkbox:Network:5.9")
implementation("com.dorkbox:Network:5.9.1")
}
```

View File

@ -37,7 +37,7 @@ object Extras {
// set for the project
const val description = "Encrypted, high-performance, and event-driven/reactive network stack for Java 8+"
const val group = "com.dorkbox"
const val version = "5.9"
const val version = "5.9.1"
// set as project.ext
const val name = "Network"
@ -145,6 +145,7 @@ dependencies {
// https://github.com/dorkbox
api("com.dorkbox:Updates:1.1")
api("com.dorkbox:OS:1.0")
api("com.dorkbox:ByteUtilities:1.5")
api("com.dorkbox:MinLog:2.4")
@ -152,7 +153,7 @@ dependencies {
api("com.dorkbox:ObjectPool:3.5")
api("com.dorkbox:Serializers:2.6")
api("com.dorkbox:Storage:1.1")
api("com.dorkbox:Utilities:1.16")
api("com.dorkbox:Utilities:1.17")
// https://github.com/real-logic/aeron

View File

@ -55,7 +55,7 @@ open class Client<CONNECTION : Connection>(
/**
* Gets the version number.
*/
const val version = "5.9"
const val version = "5.9.1"
/**
* Checks to see if a client (using the specified configuration) is running.

View File

@ -40,7 +40,7 @@ class ServerConfiguration : dorkbox.network.Configuration() {
/**
* Gets the version number.
*/
const val version = "5.9"
const val version = "5.9.1"
}
/**

View File

@ -62,7 +62,7 @@ open class Server<CONNECTION : Connection>(
/**
* Gets the version number.
*/
const val version = "5.9"
const val version = "5.9.1"
/**
* Checks to see if a server (using the specified configuration) is running.