|
5 | 5 | http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
6 | 6 | <modelVersion>4.0.0</modelVersion> |
7 | 7 |
|
| 8 | + <parent> |
| 9 | + <groupId>org.sonatype.oss</groupId> |
| 10 | + <artifactId>oss-parent</artifactId> |
| 11 | + <version>9</version> |
| 12 | + </parent> |
| 13 | + |
8 | 14 | <groupId>org.checkstyle.autofix</groupId> |
9 | 15 | <artifactId>checkstyle-openrewrite-recipes</artifactId> |
10 | 16 | <version>1.0.0</version> |
|
13 | 19 | <name>checkstyle openrewrite recipes</name> |
14 | 20 | <description>Automatically fix Checkstyle violations with OpenRewrite</description> |
15 | 21 | <url>https://github.com/checkstyle/checkstyle-openrewrite-recipes</url> |
| 22 | + <inceptionYear>2025</inceptionYear> |
| 23 | + <licenses> |
| 24 | + <license> |
| 25 | + <name>Apache-2.0</name> |
| 26 | + <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 27 | + </license> |
| 28 | + </licenses> |
| 29 | + <scm> |
| 30 | + < connection>scm:git: [email protected]:checkstyle/checkstyle-openrewrite-recipes.git</ connection> |
| 31 | + < developerConnection>scm:git: [email protected]:checkstyle/checkstyle-openrewrite-recipes.git</ developerConnection> |
| 32 | + <url>https://github.com/checkstyle/checkstyle-openrewrite-recipes</url> |
| 33 | + </scm> |
16 | 34 |
|
17 | 35 | <properties> |
18 | 36 | <maven.compiler.source>17</maven.compiler.source> |
|
202 | 220 | </executions> |
203 | 221 | </plugin> |
204 | 222 |
|
| 223 | + <plugin> |
| 224 | + <groupId>org.apache.maven.plugins</groupId> |
| 225 | + <artifactId>maven-deploy-plugin</artifactId> |
| 226 | + <version>4.0.0-beta-2</version> |
| 227 | + </plugin> |
| 228 | + <plugin> |
| 229 | + <groupId>org.sonatype.plugins</groupId> |
| 230 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 231 | + <version>1.7.0</version> |
| 232 | + <extensions>true</extensions> |
| 233 | + <configuration> |
| 234 | + <!-- serverId is ID of a <server> section from Maven's settings.xml |
| 235 | + to pick authentication information from |
| 236 | + --> |
| 237 | + <serverId>sonatype-nexus-staging</serverId> |
| 238 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 239 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 240 | + </configuration> |
| 241 | + </plugin> |
| 242 | + |
205 | 243 | </plugins> |
206 | 244 | </build> |
207 | 245 |
|
|
0 commit comments