Skip to content

Commit f20e6ff

Browse files
Merge pull request #665 from JulianKniephoff/fix-stable
Raise supported Opencast version
2 parents 9ad4a42 + 0365bd3 commit f20e6ff

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/m2.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ jobs:
1616
uses: actions/setup-java@v4
1717
with:
1818
distribution: temurin
19-
java-version: 17
19+
java-version: 21
2020
cache: maven
2121

2222
- name: See if we have the Opencast artifacts
2323
id: exists
2424
run: |
25-
if [ -d ~/.m2/repository/org/opencastproject/base/17.0 ]
25+
if [ -d ~/.m2/repository/org/opencastproject/base/18.0 ]
2626
then
2727
echo exists=true >> "$GITHUB_OUTPUT"
2828
else
@@ -34,7 +34,7 @@ jobs:
3434
uses: actions/checkout@v4
3535
with:
3636
repository: opencast/opencast
37-
ref: "17.0"
37+
ref: "18.0"
3838
path: opencast
3939

4040
- name: Potentially build Opencast

opencast-backend/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
<configuration>
112112
<failOnWarning>true</failOnWarning>
113113
<compilerArgument>-Xlint:all</compilerArgument>
114-
<release>17</release>
114+
<release>21</release>
115115
</configuration>
116116
</plugin>
117117
<plugin>

pom.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,9 @@
6868

6969
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
7070

71-
<opencast.build.version>17.0</opencast.build.version>
72-
<opencast.deploy.version>;version="${opencast.build.version}"</opencast.deploy.version>
71+
<opencast.version>18.0</opencast.version>
72+
<opencast.build.version>[${opencast.version},)</opencast.build.version>
73+
<opencast.deploy.version>;version="${opencast.version}"</opencast.deploy.version>
7374
</properties>
7475

7576
<build>

0 commit comments

Comments
 (0)