Skip to content

Commit

Permalink
Change version to Java 17
Browse files Browse the repository at this point in the history
  • Loading branch information
smeyer198 committed Nov 27, 2024
1 parent 533eaf8 commit bf1e765
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 8 deletions.
4 changes: 0 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,3 @@ updates:
interval: weekly
time: "04:00"
open-pull-requests-limit: 10
# tycho 3 and tycho 4 requires Java version 17 to be built
ignore:
- dependency-name: "org.eclipse.tycho:tycho-maven-plugin"
versions: ["3.x.x", "4.x.x"]
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
with:
distribution: 'adopt'
java-package: 'jdk'
java-version: '11'
java-version: '17'
server-id: 'ossrh' # must match the serverId configured for the nexus-staging-maven-plugin
server-username: OSSRH_USERNAME # Env var that holds your OSSRH user name
server-password: OSSRH_PASSWORD # Env var that holds your OSSRH user pw
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
with:
distribution: 'adopt'
java-package: jdk
java-version: '11'
java-version: '17'
# Restores Maven dependecies
- name: Restore local Maven repository
uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
distribution: 'adopt'
java-package: jdk
java-version: '11'
java-version: '17'
# Semantic versioning
- name: Semantic versioning
id: versioning
Expand Down
15 changes: 15 additions & 0 deletions CrySLParser/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,11 @@
</scm>

<dependencies>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>9.7.1</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>de.darmstadt.tu.crossing.CrySL</artifactId>
Expand Down Expand Up @@ -67,6 +72,16 @@
<artifactId>org.eclipse.emf.ecore</artifactId>
<version>${emfVersion}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>33.3.1-jre</version>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<version>7.0.0</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<xtextVersion>2.35.0</xtextVersion>
<emfVersion>2.19.0</emfVersion>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>11</java.version>
<java.version>17</java.version>
</properties>

<build>
Expand Down

0 comments on commit bf1e765

Please sign in to comment.