blob: ddec737f51bff35e045ba19fbc45dda21269dd76 [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>
cushonf0e97442016-09-14 10:48:35 -070029 <groupId>com.google.errorprone</groupId>
30 <artifactId>error_prone_annotations</artifactId>
31 <version>2.0.12</version>
32 </dependency>
33 <dependency>
cushon667facf2016-10-20 14:07:39 -070034 <groupId>com.google.protobuf</groupId>
35 <artifactId>protobuf-java</artifactId>
cushone75cc322016-10-21 11:49:46 -070036 <version>3.1.0</version>
cushon667facf2016-10-20 14:07:39 -070037 </dependency>
38 <dependency>
cushonc5ee8762016-08-23 14:17:08 -070039 <groupId>org.ow2.asm</groupId>
cushonf3df8fd2016-10-21 11:56:46 -070040 <artifactId>asm-debug-all</artifactId>
41 <version>5.1</version>
cushon783f80f2016-09-19 14:52:44 -070042 <scope>test</scope>
43 </dependency>
44 <dependency>
cushonc5ee8762016-08-23 14:17:08 -070045 <groupId>com.google.errorprone</groupId>
46 <artifactId>javac</artifactId>
47 <version>1.9.0-dev-r2973-2</version>
48 <scope>test</scope>
49 </dependency>
50 <dependency>
51 <groupId>junit</groupId>
52 <artifactId>junit</artifactId>
53 <version>4.12</version>
54 <scope>test</scope>
55 </dependency>
56 <dependency>
57 <groupId>com.google.truth</groupId>
58 <artifactId>truth</artifactId>
59 <version>0.25</version>
60 <scope>test</scope>
61 </dependency>
62 <dependency>
63 <groupId>com.google.jimfs</groupId>
64 <artifactId>jimfs</artifactId>
65 <version>1.0</version>
66 <scope>test</scope>
67 </dependency>
68 </dependencies>
69
70 <build>
71 <sourceDirectory>java</sourceDirectory>
72 <testSourceDirectory>javatests</testSourceDirectory>
73 <testResources>
74 <testResource>
75 <directory>javatests</directory>
76 <includes>
77 <include>**/testdata/**</include>
78 </includes>
79 </testResource>
80 </testResources>
cushon667facf2016-10-20 14:07:39 -070081 <extensions>
82 <extension>
83 <groupId>kr.motd.maven</groupId>
84 <artifactId>os-maven-plugin</artifactId>
cushone75cc322016-10-21 11:49:46 -070085 <version>1.4.0.Final</version>
cushon667facf2016-10-20 14:07:39 -070086 </extension>
87 </extensions>
cushonc5ee8762016-08-23 14:17:08 -070088 <plugins>
89 <plugin>
90 <groupId>org.apache.maven.plugins</groupId>
91 <artifactId>maven-compiler-plugin</artifactId>
92 <version>3.1</version>
93 <configuration>
cushon7cc90d32016-09-15 17:11:01 -070094 <source>1.8</source>
95 <target>1.8</target>
cushonc5ee8762016-08-23 14:17:08 -070096 <encoding>UTF-8</encoding>
97 </configuration>
98 </plugin>
cushon667facf2016-10-20 14:07:39 -070099 <plugin>
100 <groupId>org.xolstice.maven.plugins</groupId>
101 <artifactId>protobuf-maven-plugin</artifactId>
102 <version>0.5.0</version>
103 <configuration>
104 <protoSourceRoot>proto</protoSourceRoot>
cushone75cc322016-10-21 11:49:46 -0700105 <protocArtifact>com.google.protobuf:protoc:3.1.0:exe:${os.detected.classifier}</protocArtifact>
cushon667facf2016-10-20 14:07:39 -0700106 <pluginId>grpc-java</pluginId>
107 <pluginArtifact>io.grpc:protoc-gen-grpc-java:1.0.1:exe:${os.detected.classifier}</pluginArtifact>
108 </configuration>
109 <executions>
110 <execution>
111 <goals>
112 <goal>compile</goal>
113 <goal>compile-custom</goal>
114 </goals>
115 </execution>
116 </executions>
117 </plugin>
cushonc5ee8762016-08-23 14:17:08 -0700118 </plugins>
119 </build>
120</project>