Skip to content

Commit

Permalink
fixed compiler settings
Browse files Browse the repository at this point in the history
  • Loading branch information
rsoika committed Feb 10, 2023
1 parent 1f8139d commit 3201ae3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 30 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,4 @@ lib



open-bpmn.glsp-server/.classpath
15 changes: 0 additions & 15 deletions open-bpmn.glsp-server/.classpath

This file was deleted.

10 changes: 2 additions & 8 deletions open-bpmn.glsp-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.source>11</java.source>
<java.target>11</java.target>
<maven.compiler.release>11</maven.compiler.release>

<package-type>eclipse-plugin</package-type>
<server-launcher>org.imixs.bpmn.glsp.server.launch.BPMN2ServerLauncher</server-launcher>
Expand Down Expand Up @@ -111,11 +110,7 @@
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>${java.source}</source>
<target>${java.target}</target>
</configuration>
<version>3.8.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down Expand Up @@ -213,4 +208,3 @@
</profile>
</profiles>
</project>

9 changes: 2 additions & 7 deletions open-bpmn.metamodel/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,14 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.source>11</java.source>
<java.target>11</java.target>
<maven.compiler.release>11</maven.compiler.release>
</properties>

<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>${java.source}</source>
<target>${java.target}</target>
</configuration>
<version>3.8.1</version>
</plugin>

</plugins>
Expand Down

0 comments on commit 3201ae3

Please sign in to comment.