Browse Source

Project import generated by Copybara. (#2504)

PiperOrigin-RevId: 322109913

Co-authored-by: The libphonenumber Team <noreply@google.com>
pull/3882/head
David Beaumont 6 years ago
committed by GitHub
parent
commit
bc4ce0e0fe
1 changed files with 44 additions and 18 deletions
  1. +44
    -18
      metadata/pom.xml

+ 44
- 18
metadata/pom.xml View File

@ -14,28 +14,14 @@
<build> <build>
<plugins> <plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>8</source>
<target>8</target>
<annotationProcessorPaths>
<annotationProcessorPath>
<groupId>com.google.auto.value</groupId>
<artifactId>auto-value</artifactId>
<version>1.7.3</version>
</annotationProcessorPath>
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin> <plugin>
<groupId>com.github.os72</groupId> <groupId>com.github.os72</groupId>
<artifactId>protoc-jar-maven-plugin</artifactId> <artifactId>protoc-jar-maven-plugin</artifactId>
<version>3.11.4</version> <version>3.11.4</version>
<executions> <executions>
<execution> <execution>
<id>generate-proto</id>
<phase>generate-sources</phase> <phase>generate-sources</phase>
<goals> <goals>
<goal>run</goal> <goal>run</goal>
@ -45,10 +31,50 @@
<inputDirectories> <inputDirectories>
<include>src/main/proto</include> <include>src/main/proto</include>
</inputDirectories> </inputDirectories>
<outputDirectorySuffix>proto</outputDirectorySuffix>
<addSources>main</addSources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>8</source>
<target>8</target>
</configuration>
<executions>
<execution>
<id>process-annotations</id>
<phase>generate-sources</phase>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<compilerArgs>
<arg>-proc:only</arg>
</compilerArgs>
</configuration>
</execution>
<execution>
<!-- using an id of default-compile will override the default execution -->
<id>default-compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<compilerArgs>
<arg>-proc:none</arg>
</compilerArgs>
</configuration> </configuration>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId> <artifactId>maven-javadoc-plugin</artifactId>
@ -89,7 +115,7 @@
<dependency> <dependency>
<groupId>com.google.auto.value</groupId> <groupId>com.google.auto.value</groupId>
<artifactId>auto-value</artifactId> <artifactId>auto-value</artifactId>
<version>1.7.3</version>
<version>1.7.4</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
@ -97,7 +123,7 @@
<dependency> <dependency>
<groupId>com.google.auto.value</groupId> <groupId>com.google.auto.value</groupId>
<artifactId>auto-value-annotations</artifactId> <artifactId>auto-value-annotations</artifactId>
<version>1.7.3</version>
<version>1.7.4</version>
</dependency> </dependency>
<!-- https://mvnrepository.com/artifact/com.github.os72/protoc-jar-maven-plugin --> <!-- https://mvnrepository.com/artifact/com.github.os72/protoc-jar-maven-plugin -->


Loading…
Cancel
Save