Skip to content

Instantly share code, notes, and snippets.

@DurandA
Last active February 18, 2020 12:58
Show Gist options
  • Save DurandA/d1f62475a55948960f48a884ff6fc90b to your computer and use it in GitHub Desktop.
Save DurandA/d1f62475a55948960f48a884ff6fc90b to your computer and use it in GitHub Desktop.
Software Engineering I Maven template
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>ch.unifr.diuf.softeng</groupId>
<artifactId>exercise0-duranda-gremaupa</artifactId>
<version>1</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>11</java.version>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment