blob: 913b4a32e9d63d0d8e7a26128af25889792a2e30 [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>
cushon4b692772016-10-24 17:30:38 -070051 <groupId>com.sun</groupId>
52 <artifactId>tools</artifactId>
53 <scope>system</scope>
54 <optional>true</optional>
55 <version>1.8</version>
56 <systemPath>${java.home}/../lib/tools.jar</systemPath>
57 </dependency>
58 <dependency>
cushonc5ee8762016-08-23 14:17:08 -070059 <groupId>junit</groupId>
60 <artifactId>junit</artifactId>
61 <version>4.12</version>
62 <scope>test</scope>
63 </dependency>
64 <dependency>
65 <groupId>com.google.truth</groupId>
66 <artifactId>truth</artifactId>
67 <version>0.25</version>
68 <scope>test</scope>
69 </dependency>
70 <dependency>
71 <groupId>com.google.jimfs</groupId>
72 <artifactId>jimfs</artifactId>
73 <version>1.0</version>
74 <scope>test</scope>
75 </dependency>
76 </dependencies>
77
78 <build>
79 <sourceDirectory>java</sourceDirectory>
80 <testSourceDirectory>javatests</testSourceDirectory>
81 <testResources>
82 <testResource>
83 <directory>javatests</directory>
84 <includes>
85 <include>**/testdata/**</include>
86 </includes>
87 </testResource>
88 </testResources>
cushon667facf2016-10-20 14:07:39 -070089 <extensions>
90 <extension>
91 <groupId>kr.motd.maven</groupId>
92 <artifactId>os-maven-plugin</artifactId>
cushone75cc322016-10-21 11:49:46 -070093 <version>1.4.0.Final</version>
cushon667facf2016-10-20 14:07:39 -070094 </extension>
95 </extensions>
cushonc5ee8762016-08-23 14:17:08 -070096 <plugins>
97 <plugin>
98 <groupId>org.apache.maven.plugins</groupId>
99 <artifactId>maven-compiler-plugin</artifactId>
100 <version>3.1</version>
101 <configuration>
cushon7cc90d32016-09-15 17:11:01 -0700102 <source>1.8</source>
103 <target>1.8</target>
cushonc5ee8762016-08-23 14:17:08 -0700104 <encoding>UTF-8</encoding>
105 </configuration>
106 </plugin>
cushon667facf2016-10-20 14:07:39 -0700107 <plugin>
108 <groupId>org.xolstice.maven.plugins</groupId>
109 <artifactId>protobuf-maven-plugin</artifactId>
110 <version>0.5.0</version>
111 <configuration>
112 <protoSourceRoot>proto</protoSourceRoot>
cushone75cc322016-10-21 11:49:46 -0700113 <protocArtifact>com.google.protobuf:protoc:3.1.0:exe:${os.detected.classifier}</protocArtifact>
cushon667facf2016-10-20 14:07:39 -0700114 <pluginId>grpc-java</pluginId>
115 <pluginArtifact>io.grpc:protoc-gen-grpc-java:1.0.1:exe:${os.detected.classifier}</pluginArtifact>
116 </configuration>
117 <executions>
118 <execution>
119 <goals>
120 <goal>compile</goal>
121 <goal>compile-custom</goal>
122 </goals>
123 </execution>
124 </executions>
125 </plugin>
cushonc5ee8762016-08-23 14:17:08 -0700126 </plugins>
127 </build>
128</project>