Skip to content

Commit

Permalink
chore: 🤖 Moves gpg sign to profile
Browse files Browse the repository at this point in the history
  • Loading branch information
asm0dey committed Aug 17, 2020
1 parent c312bf1 commit 8668fcf
Showing 1 changed file with 23 additions and 14 deletions.
37 changes: 23 additions & 14 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,20 +60,6 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<url>http://maven.apache.org</url>
Expand Down Expand Up @@ -109,4 +95,27 @@
<url>https://maven.pkg.github.com/JetBrains/kotlin-spark-api-parent</url>
</repository>
</distributionManagement>
<profiles>
<profile>
<id>sign</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

0 comments on commit 8668fcf

Please sign in to comment.