1
0
mirror of https://github.com/sethm/symon.git synced 2024-09-29 04:54:53 +00:00
symon/pom.xml

53 lines
1.4 KiB
XML
Raw Normal View History

2008-12-06 00:44:33 +00:00
<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.loomcom.j6502</groupId>
<artifactId>j6502</artifactId>
<packaging>jar</packaging>
2008-12-06 02:03:00 +00:00
<version>0.1.0</version>
2008-12-06 00:44:33 +00:00
<name>j6502</name>
<url>http://www.loomcom.com/j6502</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
2008-12-06 02:03:00 +00:00
<build>
<plugins>
<!-- Set Java version to 6 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<!-- best lock down version of the plugin too -->
<configuration>
<source>5</source>
<target>5</target>
</configuration>
</plugin>
2008-12-06 02:03:00 +00:00
<!-- Set up Main-Class in the JAR manifest -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>com.loomcom.j6502.Simulator</mainClass>
2008-12-06 02:03:00 +00:00
<packageName>com.loomcom.j6502</packageName>
</manifest>
<manifestEntries>
<mode>development</mode>
<url>${pom.url}</url>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
2008-12-06 00:44:33 +00:00
</project>