File tree 4 files changed +7
-19
lines changed
4 files changed +7
-19
lines changed Original file line number Diff line number Diff line change 8
8
jobs :
9
9
build-and-publish :
10
10
name : Java Gradle
11
- uses : bakdata/ci-templates/.github/workflows/java-gradle-library.yaml@1.42 .0
11
+ uses : bakdata/ci-templates/.github/workflows/java-gradle-library.yaml@1.43 .0
12
12
with :
13
13
java-version : 17
14
14
secrets :
19
19
signing-password : ${{ secrets.SONATYPE_SIGNING_PASSWORD }}
20
20
ossrh-username : ${{ secrets.SONATYPE_OSSRH_USERNAME }}
21
21
ossrh-password : ${{ secrets.SONATYPE_OSSRH_PASSWORD }}
22
- github-username : ${{ secrets.GH_USERNAME }}
23
22
github-token : ${{ secrets.GH_TOKEN }}
Original file line number Diff line number Diff line change 16
16
jobs :
17
17
java-gradle-release :
18
18
name : Java Gradle
19
- uses : bakdata/ci-templates/.github/workflows/java-gradle-release.yaml@1.42 .0
19
+ uses : bakdata/ci-templates/.github/workflows/java-gradle-release.yaml@1.43 .0
20
20
with :
21
21
java-version : 17
22
22
release-type : " ${{ inputs.release-type }}"
Original file line number Diff line number Diff line change 1
1
plugins {
2
2
// release
3
- id(" net.researchgate.release" ) version " 3.0.2"
4
- id(" com.bakdata.sonar" ) version " 1.1.17"
5
- id(" com.bakdata.sonatype" ) version " 1.2.2"
6
- id(" org.hildan.github.changelog" ) version " 2.2.0"
3
+ id(" com.bakdata.release" ) version " 1.4.0"
4
+ id(" com.bakdata.sonar" ) version " 1.4.0"
5
+ id(" com.bakdata.sonatype" ) version " 1.4.0"
7
6
id(" io.freefair.lombok" ) version " 8.4" apply false
8
7
}
9
8
@@ -42,12 +41,6 @@ configure<com.bakdata.gradle.SonatypeSettings> {
42
41
}
43
42
}
44
43
45
- configure< org.hildan.github.changelog.plugin.GitHubChangelogExtension > {
46
- githubUser = " bakdata"
47
- futureVersionTag = findProperty(" changelog.releaseVersion" )?.toString()
48
- sinceTag = findProperty(" changelog.sinceTag" )?.toString()
49
- }
50
-
51
44
subprojects {
52
45
apply (plugin = " java-library" )
53
46
apply (plugin = " io.freefair.lombok" )
@@ -75,9 +68,3 @@ subprojects {
75
68
" testImplementation" (group = " org.assertj" , name = " assertj-core" , version = " 3.25.3" )
76
69
}
77
70
}
78
-
79
- release {
80
- git {
81
- requireBranch.set(" master" )
82
- }
83
- }
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ dependencies {
7
7
" api" (group = " io.confluent" , name = " kafka-streams-avro-serde" , version = confluentVersion)
8
8
9
9
implementation(group = " org.wiremock" , name = " wiremock" , version = " 3.4.2" )
10
+ // required because other dependencies use different Jackson versions if this library is used in test scope
11
+ api(group = " com.fasterxml.jackson.core" , name = " jackson-databind" , version = " 2.15.3" )
10
12
11
13
val junit5Version: String by project
12
14
testImplementation(group = " org.junit.jupiter" , name = " junit-jupiter-api" , version = junit5Version)
You can’t perform that action at this time.
0 commit comments