|
1 | 1 | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 | | - xmlns="http://maven.apache.org/POM/4.0.0" |
3 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 2 | + xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | 3 | <modelVersion>4.0.0</modelVersion> |
5 | 4 |
|
6 | 5 | <licenses> |
|
24 | 23 | </developers> |
25 | 24 |
|
26 | 25 | <properties> |
27 | | - <revision>0.0.1</revision> |
| 26 | + <revision>0.0.2-SNAPSHOT</revision> |
28 | 27 | <java.version>17</java.version> |
29 | 28 | <maven.compiler.release>${java.version}</maven.compiler.release> |
30 | 29 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
121 | 120 | <plugin> |
122 | 121 | <artifactId>maven-surefire-plugin</artifactId> |
123 | 122 | </plugin> |
124 | | - |
125 | 123 | <!-- POM FLATTENING FOR CI FRIENDLY VERSIONS --> |
126 | 124 | <plugin> |
127 | 125 | <groupId>org.codehaus.mojo</groupId> |
|
147 | 145 | </execution> |
148 | 146 | </executions> |
149 | 147 | </plugin> |
150 | | - |
151 | 148 | <plugin> |
152 | 149 | <artifactId>maven-enforcer-plugin</artifactId> |
153 | 150 | <executions> |
|
170 | 167 | </execution> |
171 | 168 | </executions> |
172 | 169 | </plugin> |
173 | | - |
174 | | - <plugin> |
175 | | - <artifactId>maven-gpg-plugin</artifactId> |
176 | | - <executions> |
177 | | - <execution> |
178 | | - <id>sign-artifacts</id> |
179 | | - <phase>deploy</phase> |
180 | | - <goals> |
181 | | - <goal>sign</goal> |
182 | | - </goals> |
183 | | - </execution> |
184 | | - </executions> |
185 | | - </plugin> |
186 | | - |
187 | | - <plugin> |
188 | | - <groupId>org.sonatype.central</groupId> |
189 | | - <artifactId>central-publishing-maven-plugin</artifactId> |
190 | | - <configuration> |
191 | | - <publishingServerId>central</publishingServerId> |
192 | | - </configuration> |
193 | | - </plugin> |
194 | | - |
195 | 170 | <plugin> |
196 | 171 | <artifactId>maven-gpg-plugin</artifactId> |
197 | | - <version>3.2.7</version> |
| 172 | + <version>3.2.8</version> |
198 | 173 | </plugin> |
199 | 174 | <plugin> |
200 | 175 | <groupId>org.sonatype.central</groupId> |
201 | 176 | <artifactId>central-publishing-maven-plugin</artifactId> |
202 | | - <version>0.7.0</version> |
| 177 | + <version>0.8.0</version> |
203 | 178 | <extensions>true</extensions> |
204 | 179 | </plugin> |
205 | | - |
206 | 180 | </plugins> |
207 | 181 |
|
208 | 182 | <pluginManagement> |
|
258 | 232 | </pluginManagement> |
259 | 233 | </build> |
260 | 234 |
|
| 235 | + <profiles> |
| 236 | + <profile> |
| 237 | + <id>deploy-release</id> |
| 238 | + <build> |
| 239 | + <plugins> |
| 240 | + <plugin> |
| 241 | + <artifactId>maven-gpg-plugin</artifactId> |
| 242 | + <executions> |
| 243 | + <execution> |
| 244 | + <id>sign-artifacts</id> |
| 245 | + <phase>deploy</phase> |
| 246 | + <goals> |
| 247 | + <goal>sign</goal> |
| 248 | + </goals> |
| 249 | + </execution> |
| 250 | + </executions> |
| 251 | + </plugin> |
| 252 | + <plugin> |
| 253 | + <groupId>org.sonatype.central</groupId> |
| 254 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 255 | + <configuration> |
| 256 | + <publishingServerId>central</publishingServerId> |
| 257 | + </configuration> |
| 258 | + </plugin> |
| 259 | + </plugins> |
| 260 | + </build> |
| 261 | + </profile> |
| 262 | + </profiles> |
| 263 | + |
261 | 264 | <distributionManagement> |
262 | 265 | <snapshotRepository> |
263 | 266 | <id>artifactory</id> |
|
0 commit comments