blob: 9e26ce304e887c2146e4afe826aa27504d023965 [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>
40 <artifactId>asm</artifactId>
41 <version>5.0.3</version>
42 <scope>test</scope>
43 </dependency>
44 <dependency>
cushon783f80f2016-09-19 14:52:44 -070045 <groupId>org.ow2.asm</groupId>
46 <artifactId>asm-util</artifactId>
47 <version>5.0.3</version>
48 <scope>test</scope>
49 </dependency>
50 <dependency>
cushonc5ee8762016-08-23 14:17:08 -070051 <groupId>com.google.errorprone</groupId>
52 <artifactId>javac</artifactId>
53 <version>1.9.0-dev-r2973-2</version>
54 <scope>test</scope>
55 </dependency>
56 <dependency>
57 <groupId>junit</groupId>
58 <artifactId>junit</artifactId>
59 <version>4.12</version>
60 <scope>test</scope>
61 </dependency>
62 <dependency>
63 <groupId>com.google.truth</groupId>
64 <artifactId>truth</artifactId>
65 <version>0.25</version>
66 <scope>test</scope>
67 </dependency>
68 <dependency>
69 <groupId>com.google.jimfs</groupId>
70 <artifactId>jimfs</artifactId>
71 <version>1.0</version>
72 <scope>test</scope>
73 </dependency>
74 </dependencies>
75
76 <build>
77 <sourceDirectory>java</sourceDirectory>
78 <testSourceDirectory>javatests</testSourceDirectory>
79 <testResources>
80 <testResource>
81 <directory>javatests</directory>
82 <includes>
83 <include>**/testdata/**</include>
84 </includes>
85 </testResource>
86 </testResources>
cushon667facf2016-10-20 14:07:39 -070087 <extensions>
88 <extension>
89 <groupId>kr.motd.maven</groupId>
90 <artifactId>os-maven-plugin</artifactId>
cushone75cc322016-10-21 11:49:46 -070091 <version>1.4.0.Final</version>
cushon667facf2016-10-20 14:07:39 -070092 </extension>
93 </extensions>
cushonc5ee8762016-08-23 14:17:08 -070094 <plugins>
95 <plugin>
96 <groupId>org.apache.maven.plugins</groupId>
97 <artifactId>maven-compiler-plugin</artifactId>
98 <version>3.1</version>
99 <configuration>
cushon7cc90d32016-09-15 17:11:01 -0700100 <source>1.8</source>
101 <target>1.8</target>
cushonc5ee8762016-08-23 14:17:08 -0700102 <encoding>UTF-8</encoding>
103 </configuration>
104 </plugin>
cushon667facf2016-10-20 14:07:39 -0700105 <plugin>
106 <groupId>org.xolstice.maven.plugins</groupId>
107 <artifactId>protobuf-maven-plugin</artifactId>
108 <version>0.5.0</version>
109 <configuration>
110 <protoSourceRoot>proto</protoSourceRoot>
cushone75cc322016-10-21 11:49:46 -0700111 <protocArtifact>com.google.protobuf:protoc:3.1.0:exe:${os.detected.classifier}</protocArtifact>
cushon667facf2016-10-20 14:07:39 -0700112 <pluginId>grpc-java</pluginId>
113 <pluginArtifact>io.grpc:protoc-gen-grpc-java:1.0.1:exe:${os.detected.classifier}</pluginArtifact>
114 </configuration>
115 <executions>
116 <execution>
117 <goals>
118 <goal>compile</goal>
119 <goal>compile-custom</goal>
120 </goals>
121 </execution>
122 </executions>
123 </plugin>
cushonc5ee8762016-08-23 14:17:08 -0700124 </plugins>
125 </build>
126</project>