Skip to content

Instantly share code, notes, and snippets.

@sangohan
Created June 20, 2014 13:40
Show Gist options
  • Save sangohan/ea5358ab5750dbe4a3e4 to your computer and use it in GitHub Desktop.
Save sangohan/ea5358ab5750dbe4a3e4 to your computer and use it in GitHub Desktop.
supersimplesemantics pom file
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.darkflame</groupId>
<artifactId>supersimplesemantics</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>super simple semantics</name>
<url>https://code.google.com/p/supersimplesemantics</url>
<dependencies>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>11.0</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment