Skip to content

Commit a5dcdfc

Browse files
authored
chore: fix pom version and skip publishing (#1069)
1 parent 7312faf commit a5dcdfc

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed

google-cloud-bigtable-stats/pom.xml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
through Stackdriver. Built-in metrics will be implemented with shaded OpenCensus so it won't interfere with
1414
customer's application metrics. -->
1515
<artifactId>google-cloud-bigtable-stats</artifactId>
16+
<version>2.2.1-SNAPSHOT</version><!-- {x-version-update:google-cloud-bigtable:current} -->
1617
<description>Experimental project to shade OpenCensus dependencies.</description>
1718

1819
<dependencyManagement>
@@ -83,6 +84,59 @@
8384
</ignoredUnusedDeclaredDependencies>
8485
</configuration>
8586
</plugin>
87+
<!-- TODO(mattiefu) remove skip publishing after we add built-in metrics implementation -->
88+
<!-- Start Skip publishing -->
89+
<plugin>
90+
<groupId>org.apache.maven.plugins</groupId>
91+
<artifactId>maven-deploy-plugin</artifactId>
92+
<version>3.0.0-M1</version>
93+
<configuration>
94+
<skip>true</skip>
95+
</configuration>
96+
</plugin>
97+
<plugin>
98+
<groupId>org.sonatype.plugins</groupId>
99+
<artifactId>nexus-staging-maven-plugin</artifactId>
100+
<configuration>
101+
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
102+
</configuration>
103+
</plugin>
104+
<plugin>
105+
<groupId>org.apache.maven.plugins</groupId>
106+
<artifactId>maven-site-plugin</artifactId>
107+
<configuration>
108+
<skipDeploy>true</skipDeploy>
109+
</configuration>
110+
</plugin>
111+
<plugin>
112+
<groupId>org.apache.maven.plugins</groupId>
113+
<artifactId>maven-source-plugin</artifactId>
114+
<configuration>
115+
<skipSource>true</skipSource>
116+
</configuration>
117+
</plugin>
118+
<plugin>
119+
<groupId>org.apache.maven.plugins</groupId>
120+
<artifactId>maven-javadoc-plugin</artifactId>
121+
<configuration>
122+
<skip>true</skip>
123+
</configuration>
124+
</plugin>
125+
<plugin>
126+
<groupId>org.apache.maven.plugins</groupId>
127+
<artifactId>maven-gpg-plugin</artifactId>
128+
<configuration>
129+
<skip>true</skip>
130+
</configuration>
131+
</plugin>
132+
<plugin>
133+
<groupId>org.codehaus.mojo</groupId>
134+
<artifactId>clirr-maven-plugin</artifactId>
135+
<configuration>
136+
<skip>true</skip>
137+
</configuration>
138+
</plugin>
139+
<!-- End Skip publishing -->
86140
</plugins>
87141
</build>
88142
</project>

0 commit comments

Comments
 (0)