|
15 | 15 | ~ limitations under the License. |
16 | 16 | --> |
17 | 17 |
|
18 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" |
19 | | - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
20 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 18 | +<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"> |
21 | 19 | <modelVersion>4.0.0</modelVersion> |
22 | 20 |
|
23 | 21 | <groupId>com.twosigma.webtau</groupId> |
24 | 22 | <artifactId>webtau-parent</artifactId> |
25 | | - <version>0.1</version> |
| 23 | + <version>0.17-SNAPSHOT</version> |
26 | 24 | <packaging>pom</packaging> |
27 | 25 |
|
| 26 | + <url>https://github.com/twosigma/webtau</url> |
| 27 | + |
| 28 | + <licenses> |
| 29 | + <license> |
| 30 | + <name>Apache License, Version 2.0</name> |
| 31 | + <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 32 | + <distribution>repo</distribution> |
| 33 | + </license> |
| 34 | + </licenses> |
| 35 | + |
| 36 | + <scm> |
| 37 | + <url>https://github.com/twosigma/webtau</url> |
| 38 | + <connection>scm:git:https://github.com/twosigma/webtau.git</connection> |
| 39 | + <developerConnection>scm:git:https://github.com/twosigma/webtau.git</developerConnection> |
| 40 | + <tag>HEAD</tag> |
| 41 | + </scm> |
| 42 | + |
| 43 | + <distributionManagement> |
| 44 | + <snapshotRepository> |
| 45 | + <id>ossrh</id> |
| 46 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 47 | + </snapshotRepository> |
| 48 | + |
| 49 | + <repository> |
| 50 | + <id>ossrh</id> |
| 51 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 52 | + </repository> |
| 53 | + </distributionManagement> |
| 54 | + |
28 | 55 | <modules> |
29 | 56 | <module>webtau-utils</module> |
30 | 57 | <module>webtau-utils-testing-data</module> |
|
183 | 210 | </plugin> |
184 | 211 | </plugins> |
185 | 212 | </pluginManagement> |
| 213 | + |
| 214 | + <plugins> |
| 215 | + <plugin> |
| 216 | + <groupId>org.apache.maven.plugins</groupId> |
| 217 | + <artifactId>maven-release-plugin</artifactId> |
| 218 | + <version>2.5.3</version> |
| 219 | + <configuration> |
| 220 | + <autoVersionSubmodules>true</autoVersionSubmodules> |
| 221 | + <useReleaseProfile>false</useReleaseProfile> |
| 222 | + <releaseProfiles>release</releaseProfiles> |
| 223 | + <tagNameFormat>@{project.version}</tagNameFormat> |
| 224 | + <goals>deploy</goals> |
| 225 | + </configuration> |
| 226 | + </plugin> |
| 227 | + |
| 228 | + <plugin> |
| 229 | + <groupId>org.sonatype.plugins</groupId> |
| 230 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 231 | + <version>1.6.8</version> |
| 232 | + <extensions>true</extensions> |
| 233 | + <configuration> |
| 234 | + <serverId>ossrh</serverId> |
| 235 | + <nexusUrl>https://oss.sonatype.org/</nexusUrl> |
| 236 | + <autoReleaseAfterClose>false</autoReleaseAfterClose> |
| 237 | + </configuration> |
| 238 | + </plugin> |
| 239 | + </plugins> |
186 | 240 | </build> |
| 241 | + |
| 242 | + <profiles> |
| 243 | + <profile> |
| 244 | + <id>releases</id> |
| 245 | + <build> |
| 246 | + <plugins> |
| 247 | + <plugin> |
| 248 | + <groupId>org.apache.maven.plugins</groupId> |
| 249 | + <artifactId>maven-source-plugin</artifactId> |
| 250 | + <version>3.0.1</version> |
| 251 | + <executions> |
| 252 | + <execution> |
| 253 | + <id>attach-sources</id> |
| 254 | + <goals> |
| 255 | + <goal>jar-no-fork</goal> |
| 256 | + </goals> |
| 257 | + </execution> |
| 258 | + </executions> |
| 259 | + </plugin> |
| 260 | + <plugin> |
| 261 | + <groupId>org.apache.maven.plugins</groupId> |
| 262 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 263 | + <version>3.0.1</version> |
| 264 | + <executions> |
| 265 | + <execution> |
| 266 | + <id>attach-javadocs</id> |
| 267 | + <goals> |
| 268 | + <goal>jar</goal> |
| 269 | + </goals> |
| 270 | + </execution> |
| 271 | + </executions> |
| 272 | + </plugin> |
| 273 | + </plugins> |
| 274 | + </build> |
| 275 | + </profile> |
| 276 | + </profiles> |
187 | 277 | </project> |
0 commit comments