maven/Sanity/hello-java/pom.xml
2023-01-31 08:48:47 +01:00

18 lines
431 B
XML

<project>
<modelVersion>4.0.0</modelVersion>
<groupId>test-hello</groupId>
<artifactId>hello</artifactId>
<version>1.0.0</version>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>