This is an automated email from the ASF dual-hosted git repository.
pkarwasz pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/logging-log4j-transform.git
The following commit(s) were added to refs/heads/main by this push:
new cc6a040 Add sign plugin and default goal
cc6a040 is described below
commit cc6a040267a549d22b62711455a6a233111ffc07
Author: Piotr P. Karwasz <[email protected]>
AuthorDate: Sun Apr 30 23:37:06 2023 +0200
Add sign plugin and default goal
---
pom.xml | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/pom.xml b/pom.xml
index b5dd4af..0e0f310 100644
--- a/pom.xml
+++ b/pom.xml
@@ -180,7 +180,22 @@
<skipTests>true</skipTests>
</properties>
<build>
+ <defaultGoal>deploy</defaultGoal>
<plugins>
+
+ <plugin>
+ <groupId>org.simplify4u.plugins</groupId>
+ <artifactId>sign-maven-plugin</artifactId>
+ <version>${sign-maven-plugin.version}</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>sign</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
<!-- We want to deploy the artifact to a staging location for
perusal -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
@@ -190,6 +205,7 @@
<updateReleaseInfo>true</updateReleaseInfo>
</configuration>
</plugin>
+
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
@@ -202,6 +218,7 @@
</execution>
</executions>
</plugin>
+
</plugins>
</build>
</profile>