Skip to content

Commit

Permalink
Update pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Scullard committed Nov 28, 2019
1 parent 7da3f1e commit bafbf1c
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>com.hedera.hashgraph</groupId>
<artifactId>hedera-protobuf-java-api</artifactId>
<packaging>jar</packaging>
<version>0.3.7-SNAPSHOT</version>
<version>0.3.6-SNAPSHOT</version>

<name>hedera-protobuf-java-api</name>
<description>Protobuf Java API for Hedera Hashgraph</description>
Expand Down Expand Up @@ -246,14 +246,31 @@
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
<additionalOptions>-html5</additionalOptions>
</configuration>
<executions>
<execution>
<phase>deploy</phase>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<phase>deploy</phase>
<goals>
<goal>sign</goal>
</goals>
Expand Down

0 comments on commit bafbf1c

Please sign in to comment.