Skip to content

Commit

Permalink
Bigtable: publish emulator to maven central (#4106)
Browse files Browse the repository at this point in the history
* Bigtable: publish emulator to maven central

* make sure nexus plugin is not disabled
  • Loading branch information
igorbernstein2 authored and chingor13 committed Nov 28, 2018
1 parent 9529c62 commit b42b580
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions google-cloud-testing/google-cloud-bigtable-emulator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,17 @@
<artifactId>google-cloud-bigtable-emulator</artifactId>
<version>0.71.1-alpha-SNAPSHOT</version><!-- {x-version-update:google-cloud-bigtable-emulator:current} -->

<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -39,6 +50,19 @@
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.6</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>false</autoReleaseAfterClose>
<skipNexusStagingDeployMojo>false</skipNexusStagingDeployMojo>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit b42b580

Please sign in to comment.