|
1 | 1 | <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 | 2 | <modelVersion>4.0.0</modelVersion>
|
3 |
| - <parent> |
4 |
| - <groupId>org.sonatype.oss</groupId> |
5 |
| - <artifactId>oss-parent</artifactId> |
6 |
| - <version>9</version> |
7 |
| - </parent> |
8 | 3 |
|
9 | 4 | <groupId>ru.lanwen.verbalregex</groupId>
|
10 | 5 | <artifactId>java-verbal-expressions</artifactId>
|
|
115 | 110 | </plugins>
|
116 | 111 | </reporting>
|
117 | 112 |
|
| 113 | + <distributionManagement> |
| 114 | + <snapshotRepository> |
| 115 | + <id>ossrh</id> |
| 116 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 117 | + </snapshotRepository> |
| 118 | + <repository> |
| 119 | + <id>ossrh</id> |
| 120 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 121 | + </repository> |
| 122 | + </distributionManagement> |
| 123 | + |
| 124 | + <profiles> |
| 125 | + <profile> |
| 126 | + <id>deployment</id> |
| 127 | + <activation> |
| 128 | + <activeByDefault>true</activeByDefault> |
| 129 | + </activation> |
| 130 | + <build> |
| 131 | + <plugins> |
| 132 | + <plugin> |
| 133 | + <groupId>org.apache.maven.plugins</groupId> |
| 134 | + <artifactId>maven-gpg-plugin</artifactId> |
| 135 | + <version>1.5</version> |
| 136 | + <executions> |
| 137 | + <execution> |
| 138 | + <id>sign-artifacts</id> |
| 139 | + <phase>verify</phase> |
| 140 | + <goals> |
| 141 | + <goal>sign</goal> |
| 142 | + </goals> |
| 143 | + </execution> |
| 144 | + </executions> |
| 145 | + </plugin> |
| 146 | + <plugin> |
| 147 | + <groupId>org.sonatype.plugins</groupId> |
| 148 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 149 | + <version>1.6.3</version> |
| 150 | + <extensions>true</extensions> |
| 151 | + <configuration> |
| 152 | + <serverId>ossrh</serverId> |
| 153 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 154 | + <autoReleaseAfterClose>true</autoReleaseAfterClose> |
| 155 | + </configuration> |
| 156 | + </plugin> |
| 157 | + |
| 158 | + <plugin> |
| 159 | + <groupId>org.apache.maven.plugins</groupId> |
| 160 | + <artifactId>maven-source-plugin</artifactId> |
| 161 | + <version>2.2.1</version> |
| 162 | + <executions> |
| 163 | + <execution> |
| 164 | + <id>attach-sources</id> |
| 165 | + <goals> |
| 166 | + <goal>jar-no-fork</goal> |
| 167 | + </goals> |
| 168 | + </execution> |
| 169 | + </executions> |
| 170 | + </plugin> |
| 171 | + |
| 172 | + <plugin> |
| 173 | + <groupId>org.apache.maven.plugins</groupId> |
| 174 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 175 | + <version>2.9.1</version> |
| 176 | + <executions> |
| 177 | + <execution> |
| 178 | + <id>attach-javadocs</id> |
| 179 | + <goals> |
| 180 | + <goal>jar</goal> |
| 181 | + </goals> |
| 182 | + </execution> |
| 183 | + </executions> |
| 184 | + </plugin> |
| 185 | + </plugins> |
| 186 | + </build> |
| 187 | + </profile> |
| 188 | + </profiles> |
| 189 | + |
118 | 190 | </project>
|
0 commit comments