aboutsummaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorcushon <cushon@google.com>2016-08-23 14:17:08 -0700
committerLiam Miller-Cushon <cushon@google.com>2016-09-15 16:08:02 -0700
commitc5ee876e5f2cee182b6dbe35b9cf7b4f429a8f04 (patch)
tree6eb2f72597d818d65edec740cb58168d824e4df0 /pom.xml
parent881d847a3ccf0bca29a5c809aeb68eff9f467ced (diff)
downloadturbine-c5ee876e5f2cee182b6dbe35b9cf7b4f429a8f04.tar.gz
Initial turbine maven build
MOE_MIGRATED_REVID=131095240
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml84
1 files changed, 84 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..7489a78
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,84 @@
+<?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.google.turbine</groupId>
+ <artifactId>turbine</artifactId>
+ <version>0.1-SNAPSHOT</version>
+
+ <name>turbine</name>
+ <description>
+ turbine is a header compiler for Java
+ </description>
+
+ <dependencies>
+ <dependency>
+ <groupId>com.google.guava</groupId>
+ <artifactId>guava</artifactId>
+ <version>19.0</version>
+ </dependency>
+ <dependency>
+ <groupId>com.google.code.findbugs</groupId>
+ <artifactId>jsr305</artifactId>
+ <version>2.0.1</version>
+ </dependency>
+ <dependency>
+ <groupId>org.ow2.asm</groupId>
+ <artifactId>asm</artifactId>
+ <version>5.0.3</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.google.errorprone</groupId>
+ <artifactId>javac</artifactId>
+ <version>1.9.0-dev-r2973-2</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.12</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.google.truth</groupId>
+ <artifactId>truth</artifactId>
+ <version>0.25</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>com.google.jimfs</groupId>
+ <artifactId>jimfs</artifactId>
+ <version>1.0</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <sourceDirectory>java</sourceDirectory>
+ <testSourceDirectory>javatests</testSourceDirectory>
+ <testResources>
+ <testResource>
+ <directory>javatests</directory>
+ <includes>
+ <include>**/testdata/**</include>
+ </includes>
+ </testResource>
+ </testResources>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>3.1</version>
+ <configuration>
+ <source>1.7</source>
+ <target>1.7</target>
+ <encoding>UTF-8</encoding>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>