diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2016-04-09 14:22:20 -0700 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net> | 2016-04-09 15:48:01 -0700 |
commit | 3102d8bce3426d9cf41aeaf201c360d342677770 (patch) | |
tree | 38c4f1e8828f9af9c4b77a173bee0d312b321698 /pom.xml | |
parent | bbf907e51dfcf157bdee24dead1d531122aa25db (diff) |
Switching from Ivy+Ant to Maven.
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 226 |
1 files changed, 226 insertions, 0 deletions
@@ -0,0 +1,226 @@ +<?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.p4square</groupId> + <artifactId>foursquare-grow</artifactId> + <version>1.0-SNAPSHOT</version> + + <name>foursquare-grow</name> + <description>The Foursquare Grow Website</description> + <url>https://github.com/PuyallupFoursquare/foursquare-grow</url> + + <developers> + <developer> + <name>Jesse Morgan</name> + <email>jesse@jesterpm.net</email> + </developer> + </developers> + + <repositories> + <repository> + <id>org.restlet</id> + <name>org.restlet</name> + <url>http://maven.restlet.org</url> + </repository> + </repositories> + + <dependencyManagement> + <dependencies> + <dependency> + <groupId>com.amazonaws</groupId> + <artifactId>aws-java-sdk-bom</artifactId> + <version>1.10.62</version> + <type>pom</type> + <scope>import</scope> + </dependency> + </dependencies> + </dependencyManagement> + + <dependencies> + <dependency> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + <version>[1.2,)</version> + </dependency> + + <dependency> + <groupId>org.restlet.jee</groupId> + <artifactId>org.restlet</artifactId> + <version>[2.2-M5]</version> + </dependency> + <dependency> + <groupId>org.restlet.jee</groupId> + <artifactId>org.restlet.ext.servlet</artifactId> + <version>[2.2-M5]</version> + </dependency> + <dependency> + <groupId>org.restlet.jee</groupId> + <artifactId>org.restlet.ext.jackson</artifactId> + <version>[2.2-M5]</version> + </dependency> + <dependency> + <groupId>org.restlet.jee</groupId> + <artifactId>org.restlet.ext.freemarker</artifactId> + <version>[2.2-M5]</version> + </dependency> + <dependency> + <groupId>org.restlet.jee</groupId> + <artifactId>org.restlet.ext.httpclient</artifactId> + <version>[2.2-M5]</version> + </dependency> + + <!-- Backend Dependencies --> + <dependency> + <groupId>com.netflix.astyanax</groupId> + <artifactId>astyanax-core</artifactId> + <version>1.56.49</version> + </dependency> + <dependency> + <groupId>com.netflix.astyanax</groupId> + <artifactId>astyanax-thrift</artifactId> + <version>1.56.49</version> + </dependency> + <dependency> + <groupId>com.netflix.astyanax</groupId> + <artifactId>astyanax-cassandra</artifactId> + <version>1.56.49</version> + </dependency> + <dependency> + <groupId>com.amazonaws</groupId> + <artifactId>aws-java-sdk-dynamodb</artifactId> + </dependency> + + <dependency> + <groupId>io.dropwizard.metrics</groupId> + <artifactId>metrics-core</artifactId> + <version>3.1.0</version> + </dependency> + <dependency> + <groupId>io.dropwizard.metrics</groupId> + <artifactId>metrics-json</artifactId> + <version>3.1.0</version> + </dependency> + + <dependency> + <groupId>com.p4square</groupId> + <artifactId>ccbapi</artifactId> + <version>[1.0,)</version> + </dependency> + + <!-- These are here to fix conflicts between different packages. --> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpcore</artifactId> + <version>4.4.4</version> + </dependency> + <dependency> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> + <version>4.3.6</version> + </dependency> + <dependency> + <groupId>joda-time</groupId> + <artifactId>joda-time</artifactId> + <version>2.8.1</version> + </dependency> + + <!-- Test Dependencies --> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.8.2</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.easymock</groupId> + <artifactId>easymock</artifactId> + <version>3.4</version> + <scope>test</scope> + </dependency> + </dependencies> + + <build> + <resources> + <resource> + <directory>src/main/resources</directory> + <filtering>false</filtering> + <excludes> + <exclude>templates/templates/gitversion.ftl</exclude> + </excludes> + </resource> + <resource> + <directory>src/main/resources</directory> + <filtering>true</filtering> + <includes> + <include>templates/templates/gitversion.ftl</include> + </includes> + </resource> + </resources> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.5.1</version> + <configuration> + <!-- or whatever version you use --> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> + + <plugin> + <groupId>com.lukegb.mojo</groupId> + <artifactId>gitdescribe-maven-plugin</artifactId> + <version>3.0</version> + <executions> + <execution> + <goals> + <goal>gitdescribe</goal> + </goals> + <id>git-describe</id> + <phase>initialize</phase> + <configuration> + <extraArguments> + <param>--always</param> + <param>--dirty</param> + <param>--tags</param> + </extraArguments> + </configuration> + </execution> + </executions> + </plugin> + + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>exec-maven-plugin</artifactId> + <version>1.4.0</version> + <executions> + <execution> + <goals> + <goal>exec</goal> + </goals> + </execution> + </executions> + <configuration> + <executable>java</executable> + <arguments> + <argument>-classpath</argument> + <classpath/> + <argument>com.p4square.grow.GrowProcessComponent</argument> + <argument>devfiles/grow-server.properties</argument> + </arguments> + </configuration> + </plugin> + </plugins> + </build> + + <scm> + <connection>scm:git:git@github.com:PuyallupFoursquare/foursquare-grow.git</connection> + <url>scm:git:git@github.com:PuyallupFoursquare/foursquare-grow.git</url> + <developerConnection>scm:git:git@github.com:PuyallupFoursquare/foursquare-grow.git</developerConnection> + </scm> + +</project> |