This is an automated email from the ASF dual-hosted git repository.
painter pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/turbine-archetypes.git
The following commit(s) were added to refs/heads/master by this push:
new e72af13 Adding maven-gpg plugin to force signature uploads
e72af13 is described below
commit e72af13305ce77d4f050b23fee8be86f3d849313
Author: Jeffery Painter <[email protected]>
AuthorDate: Tue Apr 23 15:36:21 2024 -0400
Adding maven-gpg plugin to force signature uploads
---
pom.xml | 18 +++++++++++++++++-
1 file changed, 17 insertions(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index 75a8641..a4f4fca 100644
--- a/pom.xml
+++ b/pom.xml
@@ -157,7 +157,23 @@
</goals>
</execution>
</executions>
- </plugin>
+ </plugin>
+ <!-- force signatures to be created and uploaded on deploy -->
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-gpg-plugin</artifactId>
+ <version>3.2.4</version>
+ <executions>
+ <execution>
+ <id>sign-artifacts</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>sign</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
</plugins>
</build>
</profile>