Skip to content

Commit

Permalink
build: use Java 11 for monitoring/ (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
c-dilks authored Sep 22, 2023
1 parent 17b7d85 commit 937977b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions monitoring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,26 @@
<packaging>jar</packaging>

<build>

<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh-external</artifactId>
<version>2.8</version>
</extension>
</extensions>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<release>11</release>
</configuration>
</plugin>
</plugins>

</build>

</project>

0 comments on commit 937977b

Please sign in to comment.