Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions android/guava-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,21 @@
</license>
</licenses>

<developers>
<!-- Sonatype requires that we list someone here. Guava has many contributors: https://github.com/google/guava/graphs/contributors -->
<developer>
<id>cpovirk</id>
<name>Chris Povirk</name>
<email>[email protected]</email>
</developer>
</developers>

<scm>
<connection>scm:git:https://github.com/google/guava.git</connection>
<developerConnection>scm:git:[email protected]:google/guava.git</developerConnection>
<url>https://github.com/google/guava</url>
</scm>

<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/google/guava/issues</url>
Expand Down Expand Up @@ -54,4 +69,27 @@
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>sonatype-oss-release</id>
<build>
<plugins>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
14 changes: 4 additions & 10 deletions android/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,11 @@
</license>
</licenses>
<developers>
<!-- Sonatype requires that we list someone here. Guava has many contributors: https://github.com/google/guava/graphs/contributors -->
<developer>
<id>kevinb9n</id>
<name>Kevin Bourrillion</name>
<email>[email protected]</email>
<organization>Google</organization>
<organizationUrl>http://www.google.com</organizationUrl>
<roles>
<role>owner</role>
<role>developer</role>
</roles>
<timezone>-8</timezone>
<id>cpovirk</id>
<name>Chris Povirk</name>
<email>[email protected]</email>
</developer>
</developers>
<modules>
Expand Down
38 changes: 38 additions & 0 deletions guava-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,21 @@
</license>
</licenses>

<developers>
<!-- Sonatype requires that we list someone here. Guava has many contributors: https://github.com/google/guava/graphs/contributors -->
<developer>
<id>cpovirk</id>
<name>Chris Povirk</name>
<email>[email protected]</email>
</developer>
</developers>

<scm>
<connection>scm:git:https://github.com/google/guava.git</connection>
<developerConnection>scm:git:[email protected]:google/guava.git</developerConnection>
<url>https://github.com/google/guava</url>
</scm>

<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/google/guava/issues</url>
Expand Down Expand Up @@ -59,4 +74,27 @@
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>sonatype-oss-release</id>
<build>
<plugins>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.0.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
14 changes: 4 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,11 @@
</license>
</licenses>
<developers>
<!-- Sonatype requires that we list someone here. Guava has many contributors: https://github.com/google/guava/graphs/contributors -->
<developer>
<id>kevinb9n</id>
<name>Kevin Bourrillion</name>
<email>[email protected]</email>
<organization>Google</organization>
<organizationUrl>http://www.google.com</organizationUrl>
<roles>
<role>owner</role>
<role>developer</role>
</roles>
<timezone>-8</timezone>
<id>cpovirk</id>
<name>Chris Povirk</name>
<email>[email protected]</email>
</developer>
</developers>
<modules>
Expand Down
Loading