Skip to content

Instantly share code, notes, and snippets.

@settipalli
Created February 8, 2019 11:40
Show Gist options
  • Save settipalli/701c56b82fef34d9d97fae0681342805 to your computer and use it in GitHub Desktop.
Save settipalli/701c56b82fef34d9d97fae0681342805 to your computer and use it in GitHub Desktop.
Maven starter template.
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
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>com.epi</groupId>
<artifactId>EPI</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<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>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.8.1</version>
</dependency>
</dependencies>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment