-
Notifications
You must be signed in to change notification settings - Fork 4
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 #131 from RADAR-base/release-1.1.0
Release 1.1.0
- Loading branch information
Showing
69 changed files
with
1,611 additions
and
1,633 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
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 |
---|---|---|
|
@@ -20,11 +20,10 @@ jobs: | |
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: temurin | ||
java-version: 11 | ||
java-version: 17 | ||
|
||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
|
||
uses: gradle/[email protected] | ||
- name: Has SNAPSHOT version | ||
run: ./gradlew properties | grep '^version:.*-SNAPSHOT$' | ||
|
||
|
@@ -44,5 +43,6 @@ jobs: | |
|
||
- name: Publish gradle plugin | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: ./gradlew :radar-commons-gradle:publish | ||
OSSRH_USER: ${{ secrets.OSSRH_USER }} | ||
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | ||
run: ./gradlew -Psigning.gnupg.keyName=CBEF2CF0 -Psigning.gnupg.executable=gpg -Psigning.gnupg.passphrase=${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }} :radar-commons-gradle:publish |
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 |
---|---|---|
|
@@ -18,11 +18,10 @@ jobs: | |
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: temurin | ||
java-version: 11 | ||
java-version: 17 | ||
|
||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
|
||
uses: gradle/[email protected] | ||
- name: Check version | ||
run: | | ||
projectVersion=$(./gradlew properties | grep '^version:.*$') | ||
|
@@ -34,13 +33,13 @@ jobs: | |
# Compile code | ||
- name: Compile code | ||
run: ./gradlew assemble | ||
run: ./gradlew assemble collectLicenses | ||
|
||
# Upload it to GitHub | ||
- name: Upload to GitHub | ||
uses: AButler/[email protected] | ||
uses: AButler/[email protected].2 | ||
with: | ||
files: 'radar-commons*/build/libs/*' | ||
files: 'radar-commons*/build/libs/*;radar-commons*/build/reports/*.tar.gz' | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Install gpg secret key | ||
|
@@ -56,5 +55,6 @@ jobs: | |
|
||
- name: Publish gradle plugin | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: ./gradlew :radar-commons-gradle:publish | ||
OSSRH_USER: ${{ secrets.OSSRH_USER }} | ||
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | ||
run: ./gradlew -Psigning.gnupg.keyName=CBEF2CF0 -Psigning.gnupg.executable=gpg -Psigning.gnupg.passphrase=${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }} :radar-commons-gradle:publish |
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 |
---|---|---|
|
@@ -21,11 +21,10 @@ jobs: | |
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: temurin | ||
java-version: 11 | ||
java-version: 17 | ||
|
||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
|
||
uses: gradle/[email protected] | ||
- name: Run Snyk | ||
env: | ||
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | ||
|
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 |
---|---|---|
|
@@ -16,11 +16,10 @@ jobs: | |
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: temurin | ||
java-version: 11 | ||
java-version: 17 | ||
|
||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
|
||
uses: gradle/[email protected] | ||
- name: Run Snyk to check for vulnerabilities | ||
env: | ||
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | ||
|
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,10 @@ | ||
# Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities. | ||
version: v1.25.0 | ||
# ignores vulnerabilities until expiry date; change duration by modifying expiry date | ||
ignore: | ||
SNYK-JAVA-ORGJETBRAINSKOTLIN-2393744: | ||
- '*': | ||
reason: Not using Kotlin Files API | ||
expires: 2025-10-06T13:21:34.435Z | ||
created: 2023-09-06T13:21:34.439Z | ||
patch: {} |
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,7 +1,24 @@ | ||
import org.jetbrains.kotlin.gradle.dsl.JvmTarget | ||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile | ||
|
||
plugins { | ||
`kotlin-dsl` | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
} | ||
|
||
|
||
tasks.withType<JavaCompile> { | ||
sourceCompatibility = "17" | ||
targetCompatibility = "17" | ||
} | ||
|
||
tasks.withType<KotlinCompile> { | ||
compilerOptions { | ||
jvmTarget.set(JvmTarget.JVM_17) | ||
languageVersion.set(org.jetbrains.kotlin.gradle.dsl.KotlinVersion.KOTLIN_1_9) | ||
apiVersion.set(org.jetbrains.kotlin.gradle.dsl.KotlinVersion.KOTLIN_1_9) | ||
} | ||
} |
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,25 +1,26 @@ | ||
object Versions { | ||
const val project = "1.0.0" | ||
const val project = "1.1.0" | ||
|
||
object Plugins { | ||
const val kotlin = "1.8.21" | ||
const val kotlin = "1.9.10" | ||
const val kotlinSerialization = kotlin | ||
const val avro = "1.7.0" | ||
const val avro = "1.8.0" | ||
const val gradle = "8.3" | ||
} | ||
|
||
const val java = 11 | ||
const val slf4j = "2.0.7" | ||
const val confluent = "7.3.2" | ||
const val kafka = "7.3.2-ce" | ||
const val avro = "1.11.1" | ||
const val jackson = "2.15.0" | ||
const val slf4j = "2.0.9" | ||
const val confluent = "7.5.0" | ||
const val kafka = "7.5.0-ce" | ||
const val avro = "1.11.2" | ||
const val jackson = "2.15.2" | ||
const val okhttp = "4.11.0" | ||
const val junit = "5.9.3" | ||
const val mockito = "5.3.1" | ||
const val mockitoKotlin = "4.1.0" | ||
const val junit = "5.10.0" | ||
const val mockito = "5.5.0" | ||
const val mockitoKotlin = "5.1.0" | ||
const val hamcrest = "2.2" | ||
const val radarSchemas = "0.8.2" | ||
const val opencsv = "5.7.1" | ||
const val ktor = "2.3.0" | ||
const val coroutines = "1.6.4" | ||
const val radarSchemas = "0.8.4" | ||
const val opencsv = "5.8" | ||
const val ktor = "2.3.4" | ||
const val coroutines = "1.7.3" | ||
} |
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.1.1-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip | ||
networkTimeout=10000 | ||
validateDistributionUrl=true | ||
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
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.