Lines Matching +full:compiler +full:- +full:version
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
9 ~ http://www.apache.org/licenses/LICENSE-2.0
16 -->
19 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 …xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24 <artifactId>google-java-format-parent</artifactId>
26 <version>HEAD-SNAPSHOT</version>
38 <url>https://github.com/google/google-java-format</url>
49 <name>The Apache Software License, Version 2.0</name>
50 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
66 <timezone>-8</timezone>
71 <url>http://github.com/google/google-java-format/</url>
72 <connection>scm:git:git://github.com/google/google-java-format.git</connection>
73 …<developerConnection>scm:git:ssh://git@github.com/google/google-java-format.git</developerConnecti…
79 <url>http://github.com/google/google-java-format/issues</url>
87 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
88 <java.version>1.8</java.version>
89 <guava.version>32.1.3-jre</guava.version>
90 <truth.version>1.1.3</truth.version>
91 <checker.version>3.21.2</checker.version>
92 <errorprone.version>2.16</errorprone.version>
93 <auto-value.version>1.9</auto-value.version>
94 <auto-service.version>1.0.1</auto-service.version>
95 <maven-javadoc-plugin.version>3.4.0</maven-javadoc-plugin.version>
96 <maven-source-plugin.version>3.2.1</maven-source-plugin.version>
101 <!-- Required runtime dependencies -->
105 <version>${guava.version}</version>
108 <!-- Compile-time dependencies -->
111 <artifactId>checker-qual</artifactId>
112 <version>${checker.version}</version>
117 <version>${errorprone.version}</version>
121 <artifactId>auto-value-annotations</artifactId>
122 <version>${auto-value.version}</version>
126 <artifactId>auto-service-annotations</artifactId>
127 <version>${auto-service.version}</version>
130 <!-- Test dependencies -->
134 <version>4.13.2</version>
139 <artifactId>guava-testlib</artifactId>
140 <version>${guava.version}</version>
146 <version>${truth.version}</version>
151 <artifactId>truth-java8-extension</artifactId>
152 <version>${truth.version}</version>
162 <artifactId>maven-compiler-plugin</artifactId>
163 <version>3.9.0</version>
166 <artifactId>maven-jar-plugin</artifactId>
167 <version>3.2.2</version>
170 <artifactId>maven-source-plugin</artifactId>
171 <version>3.2.1</version>
174 <artifactId>maven-javadoc-plugin</artifactId>
175 <version>3.4.0</version>
178 <artifactId>maven-gpg-plugin</artifactId>
179 <version>3.0.1</version>
183 <artifactId>maven-bundle-plugin</artifactId>
184 <version>5.1.4</version>
191 <artifactId>maven-compiler-plugin</artifactId>
193 <source>${java.version}</source>
194 <target>${java.version}</target>
195 <encoding>UTF-8</encoding>
197 <!-- compile-time arguments for google-java-format -->
198 <arg>-XDcompilePolicy=simple</arg>
199 <arg>-Xplugin:ErrorProne</arg>
200 <arg>--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED</arg>
201 <arg>--add-exports=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED</arg>
202 <arg>--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED</arg>
203 <arg>--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED</arg>
204 <arg>--add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED</arg>
205 <arg>--add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED</arg>
206 <arg>--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED</arg>
212 <version>${errorprone.version}</version>
216 <artifactId>auto-value</artifactId>
217 <version>${auto-value.version}</version>
221 <artifactId>auto-service</artifactId>
222 <version>${auto-service.version}</version>
229 <artifactId>maven-jar-plugin</artifactId>
236 <Add-Exports><!--
237 -->jdk.compiler/com.sun.tools.javac.api <!--
238 -->jdk.compiler/com.sun.tools.javac.code <!--
239 -->jdk.compiler/com.sun.tools.javac.file <!--
240 -->jdk.compiler/com.sun.tools.javac.parser <!--
241 -->jdk.compiler/com.sun.tools.javac.tree <!--
242 -->jdk.compiler/com.sun.tools.javac.util<!--
243 --></Add-Exports>
250 <artifactId>maven-source-plugin</artifactId>
253 <id>attach-sources</id>
262 <artifactId>maven-javadoc-plugin</artifactId>
263 <version>3.4.0</version>
269 <id>attach-javadocs</id>
278 <artifactId>maven-surefire-plugin</artifactId>
279 <version>2.22.2</version>
281 <!-- set heap size to work around http://github.com/travis-ci/travis-ci/issues/3396 -->
283 -Xmx1024m
284 --add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED
285 --add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED
286 --add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED
287 --add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED
288 --add-exports=jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED
289 --add-exports=jdk.compiler/com.sun.tools.javac.processing=ALL-UNNAMED
290 --add-exports=jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED
291 --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED
292 --add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED
293 --add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED
302 <id>sonatype-nexus-snapshots</id>
307 <id>sonatype-nexus-staging</id>
315 <id>sonatype-oss-release</id>
320 <artifactId>maven-source-plugin</artifactId>
321 <version>${maven-source-plugin.version}</version>
324 <id>attach-sources</id>
326 <goal>jar-no-fork</goal>
333 <artifactId>maven-javadoc-plugin</artifactId>
334 <version>${maven-javadoc-plugin.version}</version>
337 <id>attach-javadocs</id>
346 <artifactId>maven-gpg-plugin</artifactId>
347 <version>3.0.1</version>
350 <id>sign-artifacts</id>