Skip to content

Commit

Permalink
fix: Replace java compile target with the default defined version
Browse files Browse the repository at this point in the history
Currently, the hmm-lib module is still build in compatibility mode. Let's fix this. Even core has one defined. We can just use the one from the parent.
  • Loading branch information
MichaelsJP committed Jul 25, 2024
1 parent 11c0f43 commit d4911e2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 21 deletions.
8 changes: 0 additions & 8 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -182,14 +182,6 @@
<failOnUnableToExtractRepoInfo>false</failOnUnableToExtractRepoInfo>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>17</source>
<target>17</target>
</configuration>
</plugin>
</plugins>

<!-- make version available at runtime via version file -->
Expand Down
13 changes: 0 additions & 13 deletions hmm-lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,17 +57,4 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>

<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit d4911e2

Please sign in to comment.