Updated version

master Version_3.5
Robinson 2022-03-03 00:22:02 +01:00
parent 493426a09a
commit 56f1b1d28b
No known key found for this signature in database
GPG Key ID: 8E7DB78588BD6F5C
4 changed files with 23 additions and 25 deletions

26
LICENSE
View File

@ -1,10 +1,22 @@
- ObjectPool - Fast, lightweight, and compatible blocking/non-blocking/soft-reference object pool for Java 8+
[The Apache Software License, Version 2.0]
https://git.dorkbox.com/dorkbox/ObjectPool
Copyright 2021
Copyright 2022
Dorkbox LLC
Extra license information
- kotlinx.coroutines - Library support for Kotlin coroutines with multiplatform support
[The Apache Software License, Version 2.0]
https://github.com/Kotlin/kotlinx.coroutines
Copyright 2022
JetBrains s.r.o.
- Conversant Disruptor - Disruptor is the highest performing intra-thread transfer mechanism available in Java.
[The Apache Software License, Version 2.0]
https://github.com/conversant/disruptor
Copyright 2022
Conversant, Inc
- Kotlin -
[The Apache Software License, Version 2.0]
https://github.com/JetBrains/kotlin
@ -13,18 +25,6 @@
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
- kotlinx.coroutines - Library support for Kotlin coroutines with multiplatform support
[The Apache Software License, Version 2.0]
https://github.com/Kotlin/kotlinx.coroutines
Copyright 2021
JetBrains s.r.o.
- Conversant Disruptor - Disruptor is the highest performing intra-thread transfer mechanism available in Java.
[The Apache Software License, Version 2.0]
https://github.com/conversant/disruptor
Copyright 2021
Conversant, Inc
- Updates - Software Update Management
[The Apache Software License, Version 2.0]
https://git.dorkbox.com/dorkbox/Updates

View File

@ -51,7 +51,7 @@ Maven Info
<dependency>
<groupId>com.dorkbox</groupId>
<artifactId>ObjectPool</artifactId>
<version>3.4</version>
<version>3.5</version>
</dependency>
</dependencies>
```
@ -61,7 +61,7 @@ Gradle Info
```
dependencies {
...
implementation "com.dorkbox:ObjectPool:3.4"
implementation "com.dorkbox:ObjectPool:3.5"
}
````

16
build.gradle.kts Executable file → Normal file
View File

@ -27,11 +27,11 @@ gradle.startParameter.showStacktrace = ShowStacktrace.ALWAYS // always show th
plugins {
id("com.dorkbox.GradleUtils") version "2.16"
id("com.dorkbox.Licensing") version "2.10"
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.0"
kotlin("jvm") version "1.6.10"
}
object Extras {
@ -39,15 +39,13 @@ object Extras {
const val group = "com.dorkbox"
const val name = "ObjectPool"
const val id = "ObjectPool"
const val version = "3.4"
const val version = "3.5"
const val vendor = "Dorkbox LLC"
const val vendorUrl = "https://dorkbox.com"
const val url = "https://git.dorkbox.com/dorkbox/ObjectPool"
val buildDate = Instant.now().toString()
const val coroutineVer = "1.4.3"
}
///////////////////////////////
@ -83,11 +81,11 @@ tasks.jar.get().apply {
}
dependencies {
implementation("com.dorkbox:Updates:1.1")
api("com.dorkbox:Updates:1.1")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:${Extras.coroutineVer}")
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0")
implementation("com.conversantmedia:disruptor:1.2.19")
api("com.conversantmedia:disruptor:1.2.19")
testImplementation("junit:junit:4.13.2")
}

View File

@ -33,7 +33,7 @@ object ObjectPool {
/**
* Gets the version number.
*/
const val version = "3.4"
const val version = "3.5"
init {
// Add this project to the updates system, which verifies this class + UUID + version information