Skip to content

Instantly share code, notes, and snippets.

@greenlaw110
Last active January 3, 2018 04:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save greenlaw110/5d06ebd848c87c46302d to your computer and use it in GitHub Desktop.
Save greenlaw110/5d06ebd848c87c46302d to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<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>com.mycom</groupId>
<artifactId>myapp</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>My Act Application</name>
<properties>
<app.entry>com.mycom.AppEntry</app.entry>
</properties>
<parent>
<groupId>org.actframework</groupId>
<artifactId>act-starter-parent</artifactId>
<version>1.6.0.3</version>
</parent>
<build>
<finalName>${project.artifactId}-${project.version}-r${buildNumber}</finalName>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment