Skip to content

Commit 989da45

Browse files
committed
Upgrade to oml 2.13.0
1 parent f055401 commit 989da45

File tree

3 files changed

+7
-24
lines changed

3 files changed

+7
-24
lines changed

.github/workflows/cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313

1414
steps:
1515
- uses: actions/checkout@v4
16-
- name: Set up JDK 17
16+
- name: Set up JDK 21
1717
uses: actions/setup-java@v4
1818
with:
19-
java-version: '17'
19+
java-version: '21'
2020
distribution: 'temurin'
2121
cache: 'gradle'
2222

.github/workflows/ci.yml

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515

1616
steps:
1717
- uses: actions/checkout@v4
18-
- name: Set up JDK 17
18+
- name: Set up JDK 21
1919
uses: actions/setup-java@v4
2020
with:
21-
java-version: '17'
21+
java-version: '21'
2222
distribution: 'temurin'
2323
cache: 'gradle'
2424

@@ -27,20 +27,3 @@ jobs:
2727

2828
- name: Build with Gradle Wrapper
2929
run: ./gradlew build
30-
31-
dependency-submission:
32-
33-
runs-on: ubuntu-latest
34-
permissions:
35-
contents: write
36-
37-
steps:
38-
- uses: actions/checkout@v4
39-
- name: Set up JDK 17
40-
uses: actions/setup-java@v4
41-
with:
42-
java-version: '17'
43-
distribution: 'temurin'
44-
45-
- name: Generate and submit dependency graph
46-
uses: gradle/actions/dependency-submission@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
subprojects {
22
group = 'io.opencaesar.adapters'
3-
version = '2.12.0'
3+
version = '2.13.0'
44

55
ext.versions = [
66
oml: '2.+',
@@ -24,8 +24,8 @@ subprojects {
2424
apply plugin: 'idea'
2525

2626
java {
27-
sourceCompatibility = '17'
28-
targetCompatibility = '17'
27+
sourceCompatibility = '21'
28+
targetCompatibility = '21'
2929
withJavadocJar()
3030
withSourcesJar()
3131
}

0 commit comments

Comments
 (0)