Skip to content

Commit

Permalink
migrate to java 17
Browse files Browse the repository at this point in the history
  • Loading branch information
arolfes committed Oct 25, 2023
1 parent 98c0b1d commit afcaf0c
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ concurrency:
cancel-in-progress: true

env:
JAVA_VERSION: 11
JAVA_VERSION: 17

CACHE_MAVEN_NAME: ma2aen
CACHE_SONAR_NAME: sonar
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@
</licenses>

<properties>
<java.version>11</java.version>
<java.version>17</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

<version.taskana>6.2.1-SNAPSHOT</version.taskana>
<version.taskana>7.0.0</version.taskana>

<!-- build dependencies -->
<version.checkstyle>10.9.3</version.checkstyle>
Expand Down
8 changes: 8 additions & 0 deletions taskana-adapter-camunda-listener-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,14 @@
<build>
<finalName>${project.artifactId}</finalName>
<plugins>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>${version.maven-war-plugin}</version>
<configuration>
<attachClasses>true</attachClasses>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
<plugin>
<!-- Deploy to JBoss AS7: mvn clean jboss-as:deploy See also: https://docs.jboss.org/jbossas/7/plugins/maven/latest/examples/deployment-example.html -->
<groupId>org.jboss.as.plugins</groupId>
Expand Down
8 changes: 8 additions & 0 deletions taskana-adapter-camunda-wildfly-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,14 @@
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${version.maven.spring-boot}</version>
</plugin>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>${version.maven-war-plugin}</version>
<configuration>
<attachClasses>true</attachClasses>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
<plugin>
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
Expand Down

0 comments on commit afcaf0c

Please sign in to comment.