|
5 | 5 | http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
6 | 6 | <modelVersion>4.0.0</modelVersion> |
7 | 7 |
|
8 | | - <groupId>org.checkstyle.autofix</groupId> |
| 8 | + <parent> |
| 9 | + <groupId>org.sonatype.oss</groupId> |
| 10 | + <artifactId>oss-parent</artifactId> |
| 11 | + <version>9</version> |
| 12 | + </parent> |
| 13 | + |
| 14 | + <groupId>com.puppycrawl.tools</groupId> |
9 | 15 | <artifactId>checkstyle-openrewrite-recipes</artifactId> |
10 | 16 | <version>1.0.0</version> |
11 | 17 | <packaging>jar</packaging> |
12 | 18 |
|
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> |
|
181 | 199 | </configuration> |
182 | 200 | <dependencies> |
183 | 201 | <dependency> |
184 | | - <groupId>org.checkstyle.autofix</groupId> |
| 202 | + <groupId>com.puppycrawl.tools</groupId> |
185 | 203 | <artifactId>checkstyle-openrewrite-recipes</artifactId> |
186 | 204 | <version>${project.version}</version> |
187 | 205 | </dependency> |
|
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>sonatype-nexus-staging</serverId> |
| 235 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 236 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 237 | + </configuration> |
| 238 | + </plugin> |
| 239 | + |
205 | 240 | </plugins> |
206 | 241 | </build> |
207 | 242 |
|
|
0 commit comments