blob: 7489a782e6b6872a7559dbd88bff4b8558a6eb0b [file] [log] [blame]
cushonc5ee8762016-08-23 14:17:08 -07001<?xml version="1.0" encoding="UTF-8"?>
2<project
3 xmlns="http://maven.apache.org/POM/4.0.0"
4 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
6 <modelVersion>4.0.0</modelVersion>
7
8 <groupId>com.google.turbine</groupId>
9 <artifactId>turbine</artifactId>
10 <version>0.1-SNAPSHOT</version>
11
12 <name>turbine</name>
13 <description>
14 turbine is a header compiler for Java
15 </description>
16
17 <dependencies>
18 <dependency>
19 <groupId>com.google.guava</groupId>
20 <artifactId>guava</artifactId>
21 <version>19.0</version>
22 </dependency>
23 <dependency>
24 <groupId>com.google.code.findbugs</groupId>
25 <artifactId>jsr305</artifactId>
26 <version>2.0.1</version>
27 </dependency>
28 <dependency>
29 <groupId>org.ow2.asm</groupId>
30 <artifactId>asm</artifactId>
31 <version>5.0.3</version>
32 <scope>test</scope>
33 </dependency>
34 <dependency>
35 <groupId>com.google.errorprone</groupId>
36 <artifactId>javac</artifactId>
37 <version>1.9.0-dev-r2973-2</version>
38 <scope>test</scope>
39 </dependency>
40 <dependency>
41 <groupId>junit</groupId>
42 <artifactId>junit</artifactId>
43 <version>4.12</version>
44 <scope>test</scope>
45 </dependency>
46 <dependency>
47 <groupId>com.google.truth</groupId>
48 <artifactId>truth</artifactId>
49 <version>0.25</version>
50 <scope>test</scope>
51 </dependency>
52 <dependency>
53 <groupId>com.google.jimfs</groupId>
54 <artifactId>jimfs</artifactId>
55 <version>1.0</version>
56 <scope>test</scope>
57 </dependency>
58 </dependencies>
59
60 <build>
61 <sourceDirectory>java</sourceDirectory>
62 <testSourceDirectory>javatests</testSourceDirectory>
63 <testResources>
64 <testResource>
65 <directory>javatests</directory>
66 <includes>
67 <include>**/testdata/**</include>
68 </includes>
69 </testResource>
70 </testResources>
71 <plugins>
72 <plugin>
73 <groupId>org.apache.maven.plugins</groupId>
74 <artifactId>maven-compiler-plugin</artifactId>
75 <version>3.1</version>
76 <configuration>
77 <source>1.7</source>
78 <target>1.7</target>
79 <encoding>UTF-8</encoding>
80 </configuration>
81 </plugin>
82 </plugins>
83 </build>
84</project>