Created
August 16, 2012 21:07
-
-
Save zonski/3373676 to your computer and use it in GitHub Desktop.
POM for Google Closure Templates Project
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" | |
xmlns="http://maven.apache.org/POM/4.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.google.code</groupId> | |
<artifactId>google-closure-templates</artifactId> | |
<version>20120815</version> | |
<name>Google Closure Templates</name> | |
<build> | |
<sourceDirectory>java/src</sourceDirectory> | |
<testSourceDirectory>java/tests</testSourceDirectory> | |
<testResources> | |
<testResource> | |
<directory>java/tests</directory> | |
</testResource> | |
</testResources> | |
<plugins> | |
<plugin> | |
<groupId>org.codehaus.mojo</groupId> | |
<artifactId>javacc-maven-plugin</artifactId> | |
<version>2.6</version> | |
<configuration> | |
<!-- additional configuration here --> | |
</configuration> | |
<executions> | |
<execution> | |
<id>javacc</id> | |
<goals> | |
<goal>javacc</goal> | |
</goals> | |
<configuration> | |
<sourceDirectory>java/src</sourceDirectory> | |
<lookAhead>2</lookAhead> | |
<isStatic>false</isStatic> | |
</configuration> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
</build> | |
<dependencies> | |
<dependency> | |
<groupId>com.google.inject.extensions</groupId> | |
<artifactId>guice-assistedinject</artifactId> | |
<version>3.0</version> | |
</dependency> | |
<dependency> | |
<groupId>aopalliance</groupId> | |
<artifactId>aopalliance</artifactId> | |
<version>1.0</version> | |
</dependency> | |
<dependency> | |
<groupId>args4j</groupId> | |
<artifactId>args4j</artifactId> | |
<version>2.0.16</version> | |
</dependency> | |
<dependency> | |
<groupId>cglib</groupId> | |
<artifactId>cglib-nodep</artifactId> | |
<version>2.2.2</version> | |
</dependency> | |
<dependency> | |
<groupId>com.google.guava</groupId> | |
<artifactId>guava</artifactId> | |
<version>10.0.1</version> | |
</dependency> | |
<dependency> | |
<groupId>com.google.inject</groupId> | |
<artifactId>guice</artifactId> | |
<version>3.0</version> | |
</dependency> | |
<dependency> | |
<groupId>com.google.inject.extensions</groupId> | |
<artifactId>guice-multibindings</artifactId> | |
<version>3.0</version> | |
</dependency> | |
<dependency> | |
<groupId>com.ibm.icu</groupId> | |
<artifactId>icu4j</artifactId> | |
<version>4.8.1.1</version> | |
</dependency> | |
<dependency> | |
<groupId>javax.inject</groupId> | |
<artifactId>javax.inject</artifactId> | |
<version>1</version> | |
</dependency> | |
<dependency> | |
<groupId>net.sourceforge.findbugs</groupId> | |
<artifactId>jsr305</artifactId> | |
<version>1.3.7</version> | |
</dependency> | |
<dependency> | |
<groupId>org.objenesis</groupId> | |
<artifactId>objenesis</artifactId> | |
<version>1.2</version> | |
</dependency> | |
<dependency> | |
<groupId>rhino</groupId> | |
<artifactId>js</artifactId> | |
<version>1.7R2</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.ant</groupId> | |
<artifactId>ant</artifactId> | |
<version>1.8.4</version> | |
</dependency> | |
<dependency> | |
<groupId>junit</groupId> | |
<artifactId>junit</artifactId> | |
<version>4.10</version> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.easymock</groupId> | |
<artifactId>easymock</artifactId> | |
<version>3.0</version> | |
<scope>test</scope> | |
</dependency> | |
</dependencies> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment