Skip to content

Commit 8668fcf

Browse files
committed
chore: 🤖 Moves gpg sign to profile
1 parent c312bf1 commit 8668fcf

File tree

1 file changed

+23
-14
lines changed

1 file changed

+23
-14
lines changed

pom.xml

+23-14
Original file line numberDiff line numberDiff line change
@@ -60,20 +60,6 @@
6060
</execution>
6161
</executions>
6262
</plugin>
63-
<plugin>
64-
<groupId>org.apache.maven.plugins</groupId>
65-
<artifactId>maven-gpg-plugin</artifactId>
66-
<version>1.5</version>
67-
<executions>
68-
<execution>
69-
<id>sign-artifacts</id>
70-
<phase>verify</phase>
71-
<goals>
72-
<goal>sign</goal>
73-
</goals>
74-
</execution>
75-
</executions>
76-
</plugin>
7763
</plugins>
7864
</build>
7965
<url>http://maven.apache.org</url>
@@ -109,4 +95,27 @@
10995
<url>https://maven.pkg.github.com/JetBrains/kotlin-spark-api-parent</url>
11096
</repository>
11197
</distributionManagement>
98+
<profiles>
99+
<profile>
100+
<id>sign</id>
101+
<build>
102+
<plugins>
103+
<plugin>
104+
<groupId>org.apache.maven.plugins</groupId>
105+
<artifactId>maven-gpg-plugin</artifactId>
106+
<version>1.5</version>
107+
<executions>
108+
<execution>
109+
<id>sign-artifacts</id>
110+
<phase>verify</phase>
111+
<goals>
112+
<goal>sign</goal>
113+
</goals>
114+
</execution>
115+
</executions>
116+
</plugin>
117+
</plugins>
118+
</build>
119+
</profile>
120+
</profiles>
112121
</project>

0 commit comments

Comments
 (0)