Skip to content

Commit 9a656d6

Browse files
committed
release: remove extra signing step
It resulted in having double signed artifacts: scylla-driver-core-3.11.5.7-javadoc.jar.asc.asc Which resulted in publishing failure.
1 parent 5268dad commit 9a656d6

File tree

2 files changed

+5
-49
lines changed

2 files changed

+5
-49
lines changed

driver-dist/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@
9494
<plugin>
9595
<groupId>org.apache.maven.plugins</groupId>
9696
<artifactId>maven-gpg-plugin</artifactId>
97-
<version>1.5</version>
9897
<configuration>
9998
<skip>true</skip>
10099
</configuration>

pom.xml

Lines changed: 5 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -818,27 +818,6 @@
818818
</executions>
819819
</plugin>
820820

821-
<plugin>
822-
<groupId>org.apache.maven.plugins</groupId>
823-
<artifactId>maven-gpg-plugin</artifactId>
824-
<version>1.5</version>
825-
<executions>
826-
<execution>
827-
<id>sign-artifacts</id>
828-
<phase>verify</phase>
829-
<goals>
830-
<goal>sign</goal>
831-
</goals>
832-
<configuration>
833-
<gpgArguments>
834-
<arg>--pinentry-mode</arg>
835-
<arg>loopback</arg>
836-
</gpgArguments>
837-
</configuration>
838-
</execution>
839-
</executions>
840-
</plugin>
841-
842821
<plugin>
843822
<groupId>org.ops4j</groupId>
844823
<artifactId>maven-pax-plugin</artifactId>
@@ -903,39 +882,17 @@
903882
<waitUntil>validated</waitUntil>
904883
</configuration>
905884
</plugin>
885+
<plugin>
886+
<groupId>org.apache.maven.plugins</groupId>
887+
<artifactId>maven-gpg-plugin</artifactId>
888+
<version>3.2.8</version>
889+
</plugin>
906890
</plugins>
907891

908892
</build>
909893

910894
<profiles>
911895

912-
<profile>
913-
<id>release-sign-artifacts</id>
914-
<activation>
915-
<property>
916-
<name>performRelease</name>
917-
<value>true</value>
918-
</property>
919-
</activation>
920-
<build>
921-
<plugins>
922-
<plugin>
923-
<groupId>org.apache.maven.plugins</groupId>
924-
<artifactId>maven-gpg-plugin</artifactId>
925-
<executions>
926-
<execution>
927-
<id>sign-artifacts</id>
928-
<phase>verify</phase>
929-
<goals>
930-
<goal>sign</goal>
931-
</goals>
932-
</execution>
933-
</executions>
934-
</plugin>
935-
</plugins>
936-
</build>
937-
</profile>
938-
939896
<profile>
940897
<id>short</id>
941898
<properties>

0 commit comments

Comments
 (0)