diff --git a/pom.xml b/pom.xml index 73abac29acefeaf10c7e09d5dfa511bc9c94e96f..1d1776f93ff12354b0746850362eebee4f82be7c 100644 --- a/pom.xml +++ b/pom.xml @@ -8,13 +8,13 @@ <packaging>jar</packaging> <name>TeeTime</name> + <description>TeeTime is a Pipes-and-Filters framework for Java</description> <url>http://teetime.sourceforge.org</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> - <distribution>repo</distribution> </license> </licenses> @@ -22,6 +22,17 @@ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> + <distributionManagement> + <snapshotRepository> + <id>ossrh</id> + <url>https://oss.sonatype.org/content/repositories/snapshots</url> + </snapshotRepository> + <repository> + <id>ossrh</id> + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> + </repository> + </distributionManagement> + <developers> <developer> <id>chw</id> @@ -38,7 +49,7 @@ <scm> <connection>scm:git:https://build.se.informatik.uni-kiel.de/gitlab/chw/teetime.git</connection> <developerConnection>scm:git:ssh://gitlab@build.se.informatik.uni-kiel.de:chw/teetime.git</developerConnection> - <url></url> + <url>http://teetime.sourceforge.net</url> </scm> <repositories> @@ -141,7 +152,7 @@ </execution> </executions> </plugin> - + <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> @@ -156,20 +167,32 @@ </executions> </plugin> - <!-- <plugin> --> - <!-- <groupId>org.apache.maven.plugins</groupId> --> - <!-- <artifactId>maven-gpg-plugin</artifactId> --> - <!-- <version>1.5</version> --> - <!-- <executions> --> - <!-- <execution> --> - <!-- <id>sign-artifacts</id> --> - <!-- <phase>verify</phase> --> - <!-- <goals> --> - <!-- <goal>sign</goal> --> - <!-- </goals> --> - <!-- </execution> --> - <!-- </executions> --> - <!-- </plugin> --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-gpg-plugin</artifactId> + <version>1.5</version> + <executions> + <execution> + <id>sign-artifacts</id> + <phase>verify</phase> + <goals> + <goal>sign</goal> + </goals> + </execution> + </executions> + </plugin> + + <plugin> + <groupId>org.sonatype.plugins</groupId> + <artifactId>nexus-staging-maven-plugin</artifactId> + <version>1.6.3</version> + <extensions>true</extensions> + <configuration> + <serverId>ossrh</serverId> + <nexusUrl>https://oss.sonatype.org/</nexusUrl> + <autoReleaseAfterClose>true</autoReleaseAfterClose> + </configuration> + </plugin> <!-- <plugin> --> <!-- <groupId>org.apache.maven.plugins</groupId> -->