| 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.nano</groupId> | 11 <groupId>com.google.protobuf.nano</groupId> |
| 12 <artifactId>protobuf-javanano</artifactId> | 12 <artifactId>protobuf-javanano</artifactId> |
| 13 <version>3.0.0-alpha-6</version> | 13 <version>3.1.0</version> |
| 14 <packaging>bundle</packaging> | 14 <packaging>bundle</packaging> |
| 15 <name>Protocol Buffer JavaNano API</name> | 15 <name>Protocol Buffer JavaNano API</name> |
| 16 <description> | 16 <description> |
| 17 Protocol Buffers are a way of encoding structured data in an efficient yet | 17 Protocol Buffers are a way of encoding structured data in an efficient yet |
| 18 extensible format. | 18 extensible format. |
| 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 </execution> | 157 </execution> |
| 158 </executions> | 158 </executions> |
| 159 </plugin> | 159 </plugin> |
| 160 <plugin> | 160 <plugin> |
| 161 <groupId>org.apache.felix</groupId> | 161 <groupId>org.apache.felix</groupId> |
| 162 <artifactId>maven-bundle-plugin</artifactId> | 162 <artifactId>maven-bundle-plugin</artifactId> |
| 163 <extensions>true</extensions> | 163 <extensions>true</extensions> |
| 164 <configuration> | 164 <configuration> |
| 165 <instructions> | 165 <instructions> |
| 166 <Bundle-DocURL>https://developers.google.com/protocol-buffers/</Bund
le-DocURL> | 166 <Bundle-DocURL>https://developers.google.com/protocol-buffers/</Bund
le-DocURL> |
| 167 <Bundle-SymbolicName>com.google.protobuf</Bundle-SymbolicName> | 167 <Bundle-SymbolicName>com.google.protobuf.nano</Bundle-SymbolicName> |
| 168 <Export-Package>com.google.protobuf;version=3.0.0-alpha-5</Export-Pa
ckage> | 168 <Export-Package>com.google.protobuf.nano;version=3.0.0-alpha-7</Expo
rt-Package> |
| 169 </instructions> | 169 </instructions> |
| 170 </configuration> | 170 </configuration> |
| 171 </plugin> | 171 </plugin> |
| 172 </plugins> | 172 </plugins> |
| 173 </build> | 173 </build> |
| 174 <profiles> | 174 <profiles> |
| 175 <profile> | 175 <profile> |
| 176 <id>release</id> | 176 <id>release</id> |
| 177 <distributionManagement> | 177 <distributionManagement> |
| 178 <snapshotRepository> | 178 <snapshotRepository> |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 <serverId>sonatype-nexus-staging</serverId> | 235 <serverId>sonatype-nexus-staging</serverId> |
| 236 <nexusUrl>https://oss.sonatype.org/</nexusUrl> | 236 <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 237 <autoReleaseAfterClose>false</autoReleaseAfterClose> | 237 <autoReleaseAfterClose>false</autoReleaseAfterClose> |
| 238 </configuration> | 238 </configuration> |
| 239 </plugin> | 239 </plugin> |
| 240 </plugins> | 240 </plugins> |
| 241 </build> | 241 </build> |
| 242 </profile> | 242 </profile> |
| 243 </profiles> | 243 </profiles> |
| 244 </project> | 244 </project> |
| OLD | NEW |