|
21 | 21 | <maven.compiler.release>17</maven.compiler.release> |
22 | 22 | <maven.compiler.parameters>true</maven.compiler.parameters> |
23 | 23 | <maven-release-plugin.version>3.1.1</maven-release-plugin.version> |
24 | | - <nexus-staging-maven-plugin.version>1.7.0</nexus-staging-maven-plugin.version> |
25 | 24 | <maven-javadoc-plugin.version>3.11.2</maven-javadoc-plugin.version> |
26 | | - <maven-gpg-plugin.version>3.2.7</maven-gpg-plugin.version> |
27 | 25 | <maven-source-plugin.version>3.3.1</maven-source-plugin.version> |
28 | 26 | <maven-shade-plugin.version>3.6.0</maven-shade-plugin.version> |
29 | 27 | </properties> |
|
116 | 114 | </developer> |
117 | 115 | </developers> |
118 | 116 |
|
119 | | - <distributionManagement> |
120 | | - <snapshotRepository> |
121 | | - <id>sonatype-nexus-snapshots</id> |
122 | | - <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> |
123 | | - </snapshotRepository> |
124 | | - <repository> |
125 | | - <id>sonatype-nexus-release</id> |
126 | | - <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
127 | | - </repository> |
128 | | - </distributionManagement> |
129 | | - |
130 | 117 | <scm> |
131 | 118 | <url>https://github.com/quarkusio/quarkus-project-develocity-extension</url> |
132 | 119 | <connection>scm:git:git@github.com:quarkusio/quarkus-project-develocity-extension.git</connection> |
|
151 | 138 | <configuration> |
152 | 139 | <autoVersionSubmodules>true</autoVersionSubmodules> |
153 | 140 | <tagNameFormat>@{project.version}</tagNameFormat> |
154 | | - <pushChanges>true</pushChanges> |
| 141 | + |
| 142 | + <pushChanges>false</pushChanges> |
155 | 143 | <localCheckout>true</localCheckout> |
156 | | - </configuration> |
157 | | - </plugin> |
158 | | - <plugin> |
159 | | - <groupId>org.sonatype.plugins</groupId> |
160 | | - <artifactId>nexus-staging-maven-plugin</artifactId> |
161 | | - <version>${nexus-staging-maven-plugin.version}</version> |
162 | | - <extensions>true</extensions> |
163 | | - <configuration> |
164 | | - <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
165 | | - <serverId>ossrh</serverId> |
166 | | - <autoReleaseAfterClose>true</autoReleaseAfterClose> |
167 | | - <keepStagingRepositoryOnCloseRuleFailure>true</keepStagingRepositoryOnCloseRuleFailure> |
| 144 | + <remoteTagging>false</remoteTagging> |
168 | 145 | </configuration> |
169 | 146 | </plugin> |
170 | 147 | <plugin> |
|
199 | 176 | </execution> |
200 | 177 | </executions> |
201 | 178 | </plugin> |
202 | | - <plugin> |
203 | | - <!-- |
204 | | - ## IMPORTANT ## |
205 | | - In your ~/.m2/settings.xml you need to add and edit the following profile: |
206 | | - <profile> |
207 | | - <id>release</id> |
208 | | - <properties> |
209 | | - <gpg.useagent>false</gpg.useagent> |
210 | | - <gpg.executable>/usr/local/Cellar/gnupg@1.4/1.4.23_1/bin/gpg1</gpg.executable> <- use gpg1 on Mac OS X <gpg.homedir>~/.gnupg</gpg.homedir> <- Update to your own directory <gpg.passphrase>******</gpg.passphrase> <- Add your passphrase </properties> |
211 | | - </profile> |
212 | | - --> |
213 | | - <groupId>org.apache.maven.plugins</groupId> |
214 | | - <artifactId>maven-gpg-plugin</artifactId> |
215 | | - <version>${maven-gpg-plugin.version}</version> |
216 | | - <executions> |
217 | | - <execution> |
218 | | - <id>sign-artifacts</id> |
219 | | - <phase>verify</phase> |
220 | | - <goals> |
221 | | - <goal>sign</goal> |
222 | | - </goals> |
223 | | - <configuration> |
224 | | - <gpgArguments> |
225 | | - <arg>--pinentry-mode</arg> |
226 | | - <arg>loopback</arg> |
227 | | - </gpgArguments> |
228 | | - </configuration> |
229 | | - </execution> |
230 | | - </executions> |
231 | | - </plugin> |
232 | 179 | </plugins> |
233 | 180 | </build> |
234 | 181 | </profile> |
|
0 commit comments