Skip to content

Commit

Permalink
Set java version in emap-star-annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyestein committed Jun 6, 2024
1 parent f886190 commit 3253df1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions emap-star/emap-star-annotations/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
</parent>

<properties>
<java.version>17</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<auto-service.version>1.0.1</auto-service.version>
</properties>
Expand All @@ -39,6 +40,11 @@
<!-- Needed for annotation processing -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<forceJavacCompilerUse>true</forceJavacCompilerUse>
</configuration>
<executions>
<execution>
<id>default-compile</id>
Expand Down

0 comments on commit 3253df1

Please sign in to comment.