Skip to content

Instantly share code, notes, and snippets.

@Azoraqua
Created March 18, 2019 19:43
Show Gist options
  • Save Azoraqua/aca605e4c75372aa6ba8bfbe4d1fe50d to your computer and use it in GitHub Desktop.
Save Azoraqua/aca605e4c75372aa6ba8bfbe4d1fe50d to your computer and use it in GitHub Desktop.
Minimalistic POM File for Maven.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>{{ PROJECT_GROUPID }}</groupId>
<artifactId>{{ PROJECT_ARTIFACTID }}</artifactId>
<version>{{ PROJECT_VERSION }}</version>
<properties>
<encoding>UTF-8</encoding>
<maven.compiler.source>{{ JAVA_VERSION }}</maven.compiler.source>
<maven.compiler.target>{{ JAVA_VERSION }}</maven.compiler.target>
</properties>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment