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.
  • Loading branch information
MichaelsJP committed Jul 25, 2024
1 parent 11c0f43 commit 4144770
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hmm-lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
Expand Down

0 comments on commit 4144770

Please sign in to comment.