Skip to content

Commit

Permalink
Simplify maven profiles for compiler targets.
Browse files Browse the repository at this point in the history
  • Loading branch information
aclemons committed May 1, 2022
1 parent 6e3386f commit 2cfefa1
Showing 1 changed file with 2 additions and 12 deletions.
14 changes: 2 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,19 +50,9 @@
</properties>
<profiles>
<profile>
<id>jdk16</id>
<id>jdk17andolder</id>
<activation>
<jdk>1.6</jdk>
</activation>
<properties>
<maven.compiler.source>1.5</maven.compiler.source>
<maven.compiler.target>1.5</maven.compiler.target>
</properties>
</profile>
<profile>
<id>jdk17</id>
<activation>
<jdk>1.7</jdk>
<jdk>[1.3,1.8)</jdk>
</activation>
<properties>
<maven.compiler.source>1.5</maven.compiler.source>
Expand Down

0 comments on commit 2cfefa1

Please sign in to comment.