Skip to content

Commit be862d8

Browse files
committed
Fix copy/paste errors
1 parent cdc51a6 commit be862d8

File tree

1 file changed

+37
-39
lines changed

1 file changed

+37
-39
lines changed

pom.xml

Lines changed: 37 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -115,45 +115,6 @@
115115
<artifactId>maven-release-plugin</artifactId>
116116
<version>${release-plugin.version}</version>
117117
</plugin>
118-
<plugin>
119-
<groupId>org.apache.maven.plugins</groupId>
120-
<artifactId>maven-gpg-plugin</artifactId>
121-
122-
<executions>
123-
<execution>
124-
<id>sign-artifacts</id>
125-
<phase>verify</phase>
126-
<goals>
127-
<goal>sign</goal>
128-
</goals>
129-
<configuration>
130-
<keyname>${gpg.keyname}</keyname>
131-
<passphraseServerId>${gpg.keyname}</passphraseServerId>
132-
133-
</configuration>
134-
</execution>
135-
</executions>
136-
</plugin>
137-
<plugin>
138-
<groupId>org.sonatype.plugins</groupId>
139-
<artifactId>nexus-staging-maven-plugin</artifactId>
140-
<extensions>true</extensions>
141-
<configuration>
142-
<serverId>ossrh</serverId>
143-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
144-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
145-
</configuration>
146-
</plugin>
147-
<plugin>
148-
<groupId>org.apache.maven.plugins</groupId>
149-
<artifactId>maven-release-plugin</artifactId>
150-
<configuration>
151-
<autoVersionSubmodules>true</autoVersionSubmodules>
152-
<useReleaseProfile>false</useReleaseProfile>
153-
<releaseProfiles>release</releaseProfiles>
154-
<goals>deploy</goals>
155-
</configuration>
156-
</plugin>
157118
</plugins>
158119
</pluginManagement>
159120
<plugins>
@@ -185,6 +146,43 @@
185146
</execution>
186147
</executions>
187148
</plugin>
149+
<plugin>
150+
<groupId>org.apache.maven.plugins</groupId>
151+
<artifactId>maven-gpg-plugin</artifactId>
152+
<executions>
153+
<execution>
154+
<id>sign-artifacts</id>
155+
<phase>verify</phase>
156+
<goals>
157+
<goal>sign</goal>
158+
</goals>
159+
<configuration>
160+
<keyname>${gpg.keyname}</keyname>
161+
<passphraseServerId>${gpg.keyname}</passphraseServerId>
162+
</configuration>
163+
</execution>
164+
</executions>
165+
</plugin>
166+
<plugin>
167+
<groupId>org.sonatype.plugins</groupId>
168+
<artifactId>nexus-staging-maven-plugin</artifactId>
169+
<extensions>true</extensions>
170+
<configuration>
171+
<serverId>ossrh</serverId>
172+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
173+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
174+
</configuration>
175+
</plugin>
176+
<plugin>
177+
<groupId>org.apache.maven.plugins</groupId>
178+
<artifactId>maven-release-plugin</artifactId>
179+
<configuration>
180+
<autoVersionSubmodules>true</autoVersionSubmodules>
181+
<useReleaseProfile>false</useReleaseProfile>
182+
<releaseProfiles>release</releaseProfiles>
183+
<goals>deploy</goals>
184+
</configuration>
185+
</plugin>
188186
</plugins>
189187
</build>
190188
</project>

0 commit comments

Comments
 (0)