| OLD | NEW |
| 1 <?xml version="1.0" encoding="UTF-8"?> | 1 <?xml version="1.0" encoding="UTF-8"?> |
| 2 <project xmlns="http://maven.apache.org/POM/4.0.0" | 2 <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/
maven-v4_0_0.xsd"> | 4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/
maven-v4_0_0.xsd"> |
| 5 <modelVersion>4.0.0</modelVersion> | 5 <modelVersion>4.0.0</modelVersion> |
| 6 <parent> | 6 <parent> |
| 7 <groupId>com.google</groupId> | 7 <groupId>com.google</groupId> |
| 8 <artifactId>google</artifactId> | 8 <artifactId>google</artifactId> |
| 9 <version>1</version> | 9 <version>1</version> |
| 10 </parent> | 10 </parent> |
| 11 <groupId>com.google.protobuf</groupId> | 11 <groupId>com.google.protobuf</groupId> |
| 12 <artifactId>protoc</artifactId> | 12 <artifactId>protoc</artifactId> |
| 13 <version>3.0.0-beta-2</version> | 13 <version>3.1.0</version> |
| 14 <packaging>pom</packaging> | 14 <packaging>pom</packaging> |
| 15 <name>Protobuf Compiler</name> | 15 <name>Protobuf Compiler</name> |
| 16 <description> | 16 <description> |
| 17 Protobuf Compiler (protoc) is a compiler for .proto files. It generates | 17 Protobuf Compiler (protoc) is a compiler for .proto files. It generates |
| 18 language-specific code for Protobuf messages and RPC interfaces. | 18 language-specific code for Protobuf messages and RPC interfaces. |
| 19 </description> | 19 </description> |
| 20 <inceptionYear>2008</inceptionYear> | 20 <inceptionYear>2008</inceptionYear> |
| 21 <url>https://developers.google.com/protocol-buffers/</url> | 21 <url>https://developers.google.com/protocol-buffers/</url> |
| 22 <licenses> | 22 <licenses> |
| 23 <license> | 23 <license> |
| (...skipping 28 matching lines...) Expand all Loading... |
| 52 <goal>exec</goal> | 52 <goal>exec</goal> |
| 53 </goals> | 53 </goals> |
| 54 </execution> | 54 </execution> |
| 55 </executions> | 55 </executions> |
| 56 <configuration> | 56 <configuration> |
| 57 <executable>bash</executable> | 57 <executable>bash</executable> |
| 58 <arguments> | 58 <arguments> |
| 59 <argument>build-protoc.sh</argument> | 59 <argument>build-protoc.sh</argument> |
| 60 <argument>${os.detected.name}</argument> | 60 <argument>${os.detected.name}</argument> |
| 61 <argument>${os.detected.arch}</argument> | 61 <argument>${os.detected.arch}</argument> |
| 62 <argument>protoc</argument> |
| 62 </arguments> | 63 </arguments> |
| 63 </configuration> | 64 </configuration> |
| 64 </plugin> | 65 </plugin> |
| 65 <plugin> | 66 <plugin> |
| 66 <groupId>org.codehaus.mojo</groupId> | 67 <groupId>org.codehaus.mojo</groupId> |
| 67 <artifactId>build-helper-maven-plugin</artifactId> | 68 <artifactId>build-helper-maven-plugin</artifactId> |
| 68 <version>1.8</version> | 69 <version>1.8</version> |
| 69 <executions> | 70 <executions> |
| 70 <execution> | 71 <execution> |
| 71 <id>attach-artifacts</id> | 72 <id>attach-artifacts</id> |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 <skipStagingRepositoryClose>true</skipStagingRepositoryClose> | 126 <skipStagingRepositoryClose>true</skipStagingRepositoryClose> |
| 126 <autoReleaseAfterClose>false</autoReleaseAfterClose> | 127 <autoReleaseAfterClose>false</autoReleaseAfterClose> |
| 127 <stagingRepositoryId>${staging.repository}</stagingRepositoryId> | 128 <stagingRepositoryId>${staging.repository}</stagingRepositoryId> |
| 128 </configuration> | 129 </configuration> |
| 129 </plugin> | 130 </plugin> |
| 130 </plugins> | 131 </plugins> |
| 131 </build> | 132 </build> |
| 132 </profile> | 133 </profile> |
| 133 </profiles> | 134 </profiles> |
| 134 </project> | 135 </project> |
| OLD | NEW |