Skip to content

Commit

Permalink
build: skip benchmark module in release artifact publishing (#691)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephaniewang526 committed Aug 25, 2020
1 parent a0e760f commit 8bd5c5c
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions benchmark/pom.xml
Expand Up @@ -72,6 +72,22 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<configuration>
<skipNexusStagingDeployMojo>true</skipNexusStagingDeployMojo>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 8bd5c5c

Please sign in to comment.