diff options
author | Albert Pham <the.sk89q@gmail.com> | 2013-06-13 15:55:12 -0700 |
---|---|---|
committer | Albert Pham <the.sk89q@gmail.com> | 2013-06-13 15:55:12 -0700 |
commit | 280ad8b8bf2942f055daf5fb6f8ae55a7f88243a (patch) | |
tree | 05b6fa56f6b826242f6a42f1f8fb2514e3d568d9 /pom.xml | |
download | spark-280ad8b8bf2942f055daf5fb6f8ae55a7f88243a.tar.gz spark-280ad8b8bf2942f055daf5fb6f8ae55a7f88243a.tar.bz2 spark-280ad8b8bf2942f055daf5fb6f8ae55a7f88243a.zip |
Initial commit.
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 145 |
1 files changed, 145 insertions, 0 deletions
@@ -0,0 +1,145 @@ +<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.sk89q</groupId> + <artifactId>warmroast</artifactId> + <version>1.0.0-SNAPSHOT</version> + <name>WarmRoast</name> + <url>http://www.sk89q.com</url> + <scm> + <connection>scm:git:git://github.com/sk89q/warmroast.git</connection> + <url>https://github.com/sk89q/warmroast</url> + <developerConnection>scm:git:git@github.com:sk89q/warmroast.git</developerConnection> + </scm> + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> + <dependencies> + <dependency> + <groupId>org.eclipse.jetty</groupId> + <artifactId>jetty-servlet</artifactId> + <version>9.0.3.v20130506</version> + </dependency> + <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + <version>2.4</version> + </dependency> + <dependency> + <groupId>net.sf.opencsv</groupId> + <artifactId>opencsv</artifactId> + <version>2.0</version> + </dependency> + <dependency> + <groupId>com.beust</groupId> + <artifactId>jcommander</artifactId> + <version>1.30</version> + </dependency> + </dependencies> + <build> + <resources> + <resource> + <targetPath>www</targetPath> + <filtering>false</filtering> + <directory>${basedir}/src/main/resources/www</directory> + <includes> + <include>**/*</include> + </includes> + </resource> + </resources> + <plugins> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.0</version> + <configuration> + <source>1.7</source> + <target>1.7</target> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <configuration> + <archive> + <manifest> + <mainClass>com.sk89q.warmroast.WarmRoast</mainClass> + </manifest> + </archive> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-shade-plugin</artifactId> + <version>2.1</version> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>shade</goal> + </goals> + <configuration> + <filters> + <filter> + <artifact>*:*</artifact> + <excludes> + <exclude>META-INF/*.SF</exclude> + <exclude>META-INF/*.DSA</exclude> + <exclude>META-INF/*.RSA</exclude> + </excludes> + </filter> + </filters> + <artifactSet> + <excludes> + <exclude>com.sun:tools</exclude> + </excludes> + </artifactSet> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + <profiles> + <profile> + <id>tools-default</id> + <activation> + <activeByDefault>true</activeByDefault> + <file> + <exists>${java.home}/../lib/tools.jar</exists> + </file> + </activation> + <properties> + <toolsJar>${java.home}/../lib/tools.jar</toolsJar> + </properties> + <dependencies> + <dependency> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + <version>1.6.0</version> + <scope>system</scope> + <systemPath>${toolsJar}</systemPath> + </dependency> + </dependencies> + </profile> + <profile> + <id>tools-mac</id> + <activation> + <activeByDefault>false</activeByDefault> + <file> + <exists>${java.home}/../Classes/classes.jar</exists> + </file> + </activation> + <properties> + <toolsJar>${java.home}/../Classes/classes.jar</toolsJar> + </properties> + <dependencies> + <dependency> + <groupId>com.sun</groupId> + <artifactId>tools</artifactId> + <version>1.6.0</version> + <scope>system</scope> + <systemPath>${toolsJar}</systemPath> + </dependency> + </dependencies> + </profile> + </profiles> +</project>
\ No newline at end of file |