Skip to content

Commit 4dcf5db

Browse files
committed
More pom fixes
1 parent 8faecba commit 4dcf5db

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

pom.xml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,18 @@
4444
</properties>
4545

4646
<build>
47+
<extensions>
48+
<extension>
49+
<groupId>org.apache.maven.scm</groupId>
50+
<artifactId>maven-scm-provider-gitexe</artifactId>
51+
<version>1.11.2</version>
52+
</extension>
53+
<extension>
54+
<groupId>org.apache.maven.scm</groupId>
55+
<artifactId>maven-scm-manager-plexus</artifactId>
56+
<version>1.11.2</version>
57+
</extension>
58+
</extensions>
4759
<testResources>
4860
<testResource>
4961
<directory>src/test/resources</directory>
@@ -69,16 +81,34 @@
6981
</pluginManagement>
7082
<plugins>
7183

84+
<plugin>
85+
<groupId>org.apache.maven.plugins</groupId>
86+
<artifactId>maven-gpg-plugin</artifactId>
87+
<version>1.6</version>
88+
<executions>
89+
<execution>
90+
<id>sign-artifacts</id>
91+
<phase>verify</phase>
92+
<goals>
93+
<goal>sign</goal>
94+
</goals>
95+
</execution>
96+
</executions>
97+
</plugin>
7298
<plugin>
7399
<groupId>org.apache.maven.plugins</groupId>
74100
<artifactId>maven-site-plugin</artifactId>
75101
<version>3.8.2</version>
76102
</plugin>
77103
<plugin>
104+
<groupId>org.apache.maven.plugins</groupId>
78105
<artifactId>maven-release-plugin</artifactId>
79106
<version>2.5.3</version>
80107
<configuration>
108+
<autoVersionSubmodules>true</autoVersionSubmodules>
109+
<useReleaseProfile>false</useReleaseProfile>
81110
<releaseProfiles>release</releaseProfiles>
111+
<goals>deploy</goals>
82112
</configuration>
83113
</plugin>
84114
<plugin>

0 commit comments

Comments
 (0)