|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 4 | <modelVersion>4.0.0</modelVersion> |
4 | 5 |
|
5 | | - <parent> |
6 | | - <groupId>org.sonatype.oss</groupId> |
7 | | - <artifactId>oss-parent</artifactId> |
8 | | - <version>9</version> |
9 | | - </parent> |
10 | | - |
11 | 6 | <groupId>de.andrena.tools.nopackagecycles</groupId> |
12 | 7 | <artifactId>no-package-cycles-enforcer-rule</artifactId> |
13 | 8 | <version>1.0.6-SNAPSHOT</version> |
|
107 | 102 | <phase>compile</phase> |
108 | 103 | <configuration> |
109 | 104 | <rules> |
110 | | - <NoPackageCyclesRule implementation="de.andrena.tools.nopackagecycles.NoPackageCyclesRule" /> |
| 105 | + <NoPackageCyclesRule |
| 106 | + implementation="de.andrena.tools.nopackagecycles.NoPackageCyclesRule" /> |
111 | 107 | </rules> |
112 | 108 | </configuration> |
113 | 109 | </execution> |
114 | 110 | </executions> |
115 | 111 | </plugin> |
| 112 | + <plugin> |
| 113 | + <groupId>org.sonatype.plugins</groupId> |
| 114 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 115 | + <version>1.6.7</version> |
| 116 | + <extensions>true</extensions> |
| 117 | + <configuration> |
| 118 | + <serverId>ossrh</serverId> |
| 119 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 120 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 121 | + </configuration> |
| 122 | + </plugin> |
| 123 | + <plugin> |
| 124 | + <groupId>org.apache.maven.plugins</groupId> |
| 125 | + <artifactId>maven-gpg-plugin</artifactId> |
| 126 | + <version>1.5</version> |
| 127 | + <executions> |
| 128 | + <execution> |
| 129 | + <id>sign-artifacts</id> |
| 130 | + <phase>verify</phase> |
| 131 | + <goals> |
| 132 | + <goal>sign</goal> |
| 133 | + </goals> |
| 134 | + </execution> |
| 135 | + </executions> |
| 136 | + </plugin> |
116 | 137 | </plugins> |
117 | 138 | </build> |
118 | 139 |
|
|
177 | 198 | <scope>test</scope> |
178 | 199 | </dependency> |
179 | 200 | </dependencies> |
| 201 | + |
| 202 | + <distributionManagement> |
| 203 | + <snapshotRepository> |
| 204 | + <id>ossrh</id> |
| 205 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 206 | + </snapshotRepository> |
| 207 | + <repository> |
| 208 | + <id>ossrh</id> |
| 209 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 210 | + </repository> |
| 211 | + </distributionManagement> |
180 | 212 | </project> |
0 commit comments