-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump libs version * upgrade gradle to 8.0.1 * upgrade kotlin to 1.8.10 * bump libs version * bump infinitic version to 0.11.4 * introduce RequestBy in ExistingWorkflowProxyHandler * Complete client tests * Bump lib versions in storage * fix bug introduced by apache/pulsar#8484 * bump jedis version * fixing gradle wrapper
- Loading branch information
1 parent
977019f
commit 1a4a24a
Showing
67 changed files
with
5,219 additions
and
678 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,41 @@ | ||
/** | ||
* "Commons Clause" License Condition v1.0 | ||
* | ||
* The Software is provided to you by the Licensor under the License, as defined | ||
* below, subject to the following condition. | ||
* The Software is provided to you by the Licensor under the License, as defined below, subject to | ||
* the following condition. | ||
* | ||
* Without limiting other conditions in the License, the grant of rights under the | ||
* License will not include, and the License does not grant to you, the right to | ||
* Sell the Software. | ||
* Without limiting other conditions in the License, the grant of rights under the License will not | ||
* include, and the License does not grant to you, the right to Sell the Software. | ||
* | ||
* For purposes of the foregoing, “Sell” means practicing any or all of the rights | ||
* granted to you under the License to provide to third parties, for a fee or | ||
* other consideration (including without limitation fees for hosting or | ||
* consulting/ support services related to the Software), a product or service | ||
* whose value derives, entirely or substantially, from the functionality of the | ||
* Software. Any license notice or attribution required by the License must also | ||
* include this Commons Clause License Condition notice. | ||
* For purposes of the foregoing, “Sell” means practicing any or all of the rights granted to you | ||
* under the License to provide to third parties, for a fee or other consideration (including | ||
* without limitation fees for hosting or consulting/ support services related to the Software), a | ||
* product or service whose value derives, entirely or substantially, from the functionality of the | ||
* Software. Any license notice or attribution required by the License must also include this | ||
* Commons Clause License Condition notice. | ||
* | ||
* Software: Infinitic | ||
* | ||
* License: MIT License (https://opensource.org/licenses/MIT) | ||
* | ||
* Licensor: infinitic.io | ||
*/ | ||
|
||
object Ci { | ||
|
||
// this is the version used for building snapshots | ||
// .GITHUB_RUN_NUMBER-snapshot will be appended | ||
const val base = "0.11.3" | ||
// this is the version used for building snapshots | ||
// .GITHUB_RUN_NUMBER-snapshot will be appended | ||
const val base = "0.11.4" | ||
|
||
private val githubRunNumber = System.getenv("GITHUB_RUN_NUMBER") | ||
private val githubRunNumber = System.getenv("GITHUB_RUN_NUMBER") | ||
|
||
private val snapshotVersion = when (githubRunNumber) { | ||
private val snapshotVersion = | ||
when (githubRunNumber) { | ||
null -> "$base-SNAPSHOT" | ||
else -> "$base.$githubRunNumber-SNAPSHOT" | ||
} | ||
} | ||
|
||
private val releaseVersion = System.getenv("RELEASE_VERSION") | ||
private val releaseVersion = System.getenv("RELEASE_VERSION") | ||
|
||
val isRelease = releaseVersion != null | ||
val version = releaseVersion ?: snapshotVersion | ||
val isRelease = releaseVersion != null | ||
val version = releaseVersion ?: snapshotVersion | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,106 +1,103 @@ | ||
/** | ||
* "Commons Clause" License Condition v1.0 | ||
* | ||
* The Software is provided to you by the Licensor under the License, as defined | ||
* below, subject to the following condition. | ||
* The Software is provided to you by the Licensor under the License, as defined below, subject to | ||
* the following condition. | ||
* | ||
* Without limiting other conditions in the License, the grant of rights under the | ||
* License will not include, and the License does not grant to you, the right to | ||
* Sell the Software. | ||
* Without limiting other conditions in the License, the grant of rights under the License will not | ||
* include, and the License does not grant to you, the right to Sell the Software. | ||
* | ||
* For purposes of the foregoing, “Sell” means practicing any or all of the rights | ||
* granted to you under the License to provide to third parties, for a fee or | ||
* other consideration (including without limitation fees for hosting or | ||
* consulting/ support services related to the Software), a product or service | ||
* whose value derives, entirely or substantially, from the functionality of the | ||
* Software. Any license notice or attribution required by the License must also | ||
* include this Commons Clause License Condition notice. | ||
* For purposes of the foregoing, “Sell” means practicing any or all of the rights granted to you | ||
* under the License to provide to third parties, for a fee or other consideration (including | ||
* without limitation fees for hosting or consulting/ support services related to the Software), a | ||
* product or service whose value derives, entirely or substantially, from the functionality of the | ||
* Software. Any license notice or attribution required by the License must also include this | ||
* Commons Clause License Condition notice. | ||
* | ||
* Software: Infinitic | ||
* | ||
* License: MIT License (https://opensource.org/licenses/MIT) | ||
* | ||
* Licensor: infinitic.io | ||
*/ | ||
|
||
object Libs { | ||
|
||
const val org = "io.infinitic" | ||
|
||
object Kotlin { | ||
const val reflect = "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion" | ||
} | ||
|
||
object Coroutines { | ||
private const val version = "1.6.4" | ||
const val core = "org.jetbrains.kotlinx:kotlinx-coroutines-core:$version" | ||
const val jdk8 = "org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:$version" | ||
} | ||
|
||
object Caffeine { | ||
const val caffeine = "com.github.ben-manes.caffeine:caffeine:3.1.1" | ||
} | ||
|
||
object Serialization { | ||
const val json = "org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.0" | ||
} | ||
|
||
object JsonPath { | ||
const val jayway = "com.jayway.jsonpath:json-path:2.7.0" | ||
} | ||
|
||
object Jackson { | ||
private const val version = "2.13.4" | ||
const val core = "com.fasterxml.jackson.core:jackson-core:$version" | ||
const val databind = "com.fasterxml.jackson.core:jackson-databind:$version" | ||
const val kotlin = "com.fasterxml.jackson.module:jackson-module-kotlin:$version" | ||
const val jsr310 = "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$version" | ||
} | ||
|
||
object Kotest { | ||
private const val version = "5.4.2" | ||
const val property = "io.kotest:kotest-property-jvm:$version" | ||
const val junit5 = "io.kotest:kotest-runner-junit5-jvm:$version" | ||
} | ||
|
||
object Mockk { | ||
const val mockk = "io.mockk:mockk:1.12.7" | ||
} | ||
|
||
object Avro4k { | ||
const val core = "com.github.avro-kotlin.avro4k:avro4k-core:1.6.0" | ||
} | ||
|
||
object Hoplite { | ||
private const val version = "2.6.2" | ||
const val core = "com.sksamuel.hoplite:hoplite-core:$version" | ||
const val yaml = "com.sksamuel.hoplite:hoplite-yaml:$version" | ||
} | ||
|
||
object Pulsar { | ||
private const val version = "2.10.2" | ||
const val client = "org.apache.pulsar:pulsar-client:$version" | ||
const val clientAdmin = "org.apache.pulsar:pulsar-client-admin:$version" | ||
const val functions = "org.apache.pulsar:pulsar-functions-api:$version" | ||
const val authAthenz = "org.apache.pulsar:pulsar-client-auth-athenz:$version" | ||
const val authSasl = "org.apache.pulsar:pulsar-client-auth-sasl:$version" | ||
} | ||
|
||
object Kweb { | ||
const val core = "com.github.kwebio:kweb-core:0.12.5" | ||
} | ||
|
||
object EasyRandom { | ||
const val core = "org.jeasy:easy-random-core:5.0.0" | ||
} | ||
|
||
object Slf4j { | ||
private const val version = "2.0.3" | ||
const val simple = "org.slf4j:slf4j-simple:$version" | ||
const val api = "org.slf4j:slf4j-api:$version" | ||
} | ||
|
||
object Logging { | ||
const val api = "io.github.microutils:kotlin-logging:3.0.0" | ||
} | ||
const val org = "io.infinitic" | ||
|
||
object Kotlin { | ||
const val reflect = "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion" | ||
} | ||
|
||
object Coroutines { | ||
private const val version = "1.6.4" | ||
const val core = "org.jetbrains.kotlinx:kotlinx-coroutines-core:$version" | ||
const val jdk8 = "org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:$version" | ||
} | ||
|
||
object Caffeine { | ||
const val caffeine = "com.github.ben-manes.caffeine:caffeine:3.1.3" | ||
} | ||
|
||
object Serialization { | ||
const val json = "org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.0-RC" | ||
} | ||
|
||
object JsonPath { | ||
const val jayway = "com.jayway.jsonpath:json-path:2.7.0" | ||
} | ||
|
||
object Jackson { | ||
private const val version = "2.14.2" | ||
const val core = "com.fasterxml.jackson.core:jackson-core:$version" | ||
const val databind = "com.fasterxml.jackson.core:jackson-databind:$version" | ||
const val kotlin = "com.fasterxml.jackson.module:jackson-module-kotlin:$version" | ||
const val jsr310 = "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$version" | ||
} | ||
|
||
object Kotest { | ||
private const val version = "5.5.5" | ||
const val property = "io.kotest:kotest-property-jvm:$version" | ||
const val junit5 = "io.kotest:kotest-runner-junit5-jvm:$version" | ||
} | ||
|
||
object Mockk { | ||
const val mockk = "io.mockk:mockk:1.13.4" | ||
} | ||
|
||
object Avro4k { | ||
const val core = "com.github.avro-kotlin.avro4k:avro4k-core:1.6.0" | ||
} | ||
|
||
object Hoplite { | ||
private const val version = "2.7.1" | ||
const val core = "com.sksamuel.hoplite:hoplite-core:$version" | ||
const val yaml = "com.sksamuel.hoplite:hoplite-yaml:$version" | ||
} | ||
|
||
object Pulsar { | ||
private const val version = "2.11.0" | ||
const val client = "org.apache.pulsar:pulsar-client:$version" | ||
const val clientAdmin = "org.apache.pulsar:pulsar-client-admin:$version" | ||
const val functions = "org.apache.pulsar:pulsar-functions-api:$version" | ||
const val authAthenz = "org.apache.pulsar:pulsar-client-auth-athenz:$version" | ||
const val authSasl = "org.apache.pulsar:pulsar-client-auth-sasl:$version" | ||
} | ||
|
||
object Kweb { | ||
const val core = "io.kweb:kweb-core:1.3.7" | ||
} | ||
|
||
object EasyRandom { | ||
const val core = "org.jeasy:easy-random-core:5.0.0" | ||
} | ||
|
||
object Slf4j { | ||
private const val version = "2.0.6" | ||
const val simple = "org.slf4j:slf4j-simple:$version" | ||
const val api = "org.slf4j:slf4j-api:$version" | ||
} | ||
|
||
object Logging { | ||
const val api = "io.github.microutils:kotlin-logging:3.0.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.