-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #98 from RADAR-base/release-0.7.0
Release 0.7.0
- Loading branch information
Showing
41 changed files
with
1,098 additions
and
855 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 +1 @@ | ||
KAFKA_CONFLUENT_VERSION=7.3.2 | ||
KAFKA_CONFLUENT_VERSION=7.5.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
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import org.jetbrains.kotlin.gradle.dsl.JvmTarget | ||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile | ||
|
||
plugins { | ||
kotlin("jvm") version "1.9.10" | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
|
||
tasks.withType<JavaCompile> { | ||
sourceCompatibility = "17" | ||
targetCompatibility = "17" | ||
} | ||
|
||
tasks.withType<KotlinCompile> { | ||
compilerOptions { | ||
jvmTarget.set(JvmTarget.JVM_17) | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
@Suppress("ConstPropertyName") | ||
object Versions { | ||
const val project = "0.7.0" | ||
|
||
const val java = 17 | ||
const val kotlin = "1.9.10" | ||
const val dockerCompose = "0.17.5" | ||
|
||
const val ktor = "2.3.5" | ||
const val radarJersey = "0.11.0" | ||
const val radarCommons = "1.1.1" | ||
const val radarSchemas = "0.8.5" | ||
const val jackson = "2.15.2" | ||
const val slf4j = "2.0.9" | ||
const val log4j2 = "2.21.1" | ||
const val lzfse = "0.1.1" | ||
const val radarAuth = "2.1.0" | ||
const val avro = "1.11.2" | ||
const val confluent = "7.5.1" | ||
const val kafka = "$confluent-ce" | ||
const val snappy = "1.1.10.4" | ||
|
||
const val mockitoKotlin = "5.1.0" | ||
const val grizzly = "4.0.0" | ||
const val hamcrest = "2.2" | ||
|
||
const val wrapper = "8.4" | ||
} |
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
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,27 +1,4 @@ | ||
org.gradle.jvmargs=-Xmx3072m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 | ||
kotlin.code.style=official | ||
dockerComposeStopContainers=true | ||
|
||
kotlinVersion=1.8.10 | ||
ktlintVersion=0.48.2 | ||
ktlintPluginVersion=11.3.1 | ||
dockerComposeVersion=0.16.12 | ||
dependencyUpdatesVersion=0.46.0 | ||
|
||
okhttp3Version=4.10.0 | ||
radarJerseyVersion=0.10.0 | ||
radarCommonsVersion=0.15.0 | ||
radarSchemasVersion=0.8.2 | ||
jacksonVersion=2.14.2 | ||
slf4jVersion=2.0.7 | ||
log4j2Version=2.20.0 | ||
lzfseVersion=0.1.1 | ||
radarAuthVersion=2.0.0 | ||
avroVersion=1.11.1 | ||
kafkaVersion=7.3.2-ce | ||
confluentVersion=7.3.2 | ||
|
||
mockitoKotlinVersion=4.1.0 | ||
junitVersion=5.9.2 | ||
grizzlyVersion=4.0.0 | ||
hamcrestVersion=2.2 | ||
dockerComposeStopContainers=true |
Binary file not shown.
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,6 +1,7 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip | ||
networkTimeout=10000 | ||
validateDistributionUrl=true | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Oops, something went wrong.