Skip to content

Commit

Permalink
#197 Build against OpenJDK 13
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkosertic committed Aug 17, 2019
1 parent 268099e commit cb6cce0
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
1 change: 1 addition & 0 deletions maven/FIXJDKVERSION.marker
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#FOR MAVEN PROFILE MANAGEMENT
8 changes: 0 additions & 8 deletions maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,6 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-plugin-plugin</artifactId>
Expand Down
13 changes: 13 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,10 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
Expand Down Expand Up @@ -235,6 +239,9 @@
<id>java11-compile</id>
<activation>
<jdk>11</jdk>
<file>
<missing>FIXJDKVERSION.marker</missing>
</file>
</activation>
<build>
<plugins>
Expand All @@ -252,6 +259,9 @@
<id>java12-compile</id>
<activation>
<jdk>12</jdk>
<file>
<missing>FIXJDKVERSION.marker</missing>
</file>
</activation>
<build>
<plugins>
Expand All @@ -269,6 +279,9 @@
<id>java13-compile</id>
<activation>
<jdk>13</jdk>
<file>
<missing>FIXJDKVERSION.marker</missing>
</file>
</activation>
<build>
<plugins>
Expand Down

0 comments on commit cb6cce0

Please sign in to comment.