Skip to content

Commit

Permalink
fix: version
Browse files Browse the repository at this point in the history
  • Loading branch information
koladilip committed Mar 14, 2024
1 parent 9d1577b commit 51dd7ff
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/do-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: ./gradlew build

- name: Release with axion-release-plugin
run: ./gradlew release -Prelease.disableChecks -Prelease.pushTagsOnly
run: ./gradlew release -Prelease.disableChecks

- name: Get the new version
id: get_version
Expand Down
9 changes: 8 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@ plugins {
id("java")
id("com.github.johnrengelman.shadow") version "8.1.1"
id("jacoco")
id("pl.allegro.tech.build.axion-release") version "1.15.1"
id("pl.allegro.tech.build.axion-release") version "1.17.0"
id("org.sonarqube") version "4.4.1.3373"
}
scmVersion {
repository {
pushTagsOnly.set(false)
}
}

project.version = scmVersion.version

Expand All @@ -13,6 +18,7 @@ group = "com.rudderstack"
repositories {
mavenCentral()
}

val kafkaVersion = "3.7.0"
val slf4jApiVersion = "2.0.12"
val junitVersion = "5.10.2"
Expand Down Expand Up @@ -48,6 +54,7 @@ sonar {
property("sonar.projectKey", "rudderlabs_rudder-kafka-sink-connector")
property("sonar.organization", "rudderlabs")
property("sonar.host.url", "https://sonarcloud.io")
property("sonar.gradle.skipCompile", "true")
}
}

Expand Down

0 comments on commit 51dd7ff

Please sign in to comment.