Skip to content

Commit 6c25fd8

Browse files
committed
updgrade parent and prepare site publication
1 parent f7513e2 commit 6c25fd8

File tree

1 file changed

+25
-4
lines changed

1 file changed

+25
-4
lines changed

pom.xml

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ limitations under the License.
2222
<parent>
2323
<groupId>org.codehaus.plexus</groupId>
2424
<artifactId>plexus</artifactId>
25-
<version>3.3.1</version>
25+
<version>4.0-SNAPSHOT</version>
2626
</parent>
2727

2828
<artifactId>plexus-utils</artifactId>
@@ -32,7 +32,6 @@ limitations under the License.
3232
<description>A collection of various utility classes to ease working with strings, files, command lines, XML and
3333
more.
3434
</description>
35-
<url>http://plexus.codehaus.org/plexus-utils</url>
3635

3736
<scm>
3837
<connection>scm:git:[email protected]:codehaus-plexus/plexus-utils.git</connection>
@@ -41,9 +40,15 @@ limitations under the License.
4140
<tag>HEAD</tag>
4241
</scm>
4342
<issueManagement>
44-
<system>JIRA</system>
45-
<url>http://jira.codehaus.org/browse/PLXUTILS</url>
43+
<system>github</system>
44+
<url>http://github.com/codehaus-plexus/plexus-utils/issues</url>
4645
</issueManagement>
46+
<distributionManagement>
47+
<site>
48+
<id>github:gh-pages</id>
49+
<url>${project.scm.developerConnection}</url>
50+
</site>
51+
</distributionManagement>
4752

4853
<dependencies>
4954
<dependency>
@@ -55,6 +60,22 @@ limitations under the License.
5560
</dependencies>
5661
<build>
5762
<plugins>
63+
<plugin>
64+
<groupId>org.apache.maven.plugins</groupId>
65+
<artifactId>maven-scm-publish-plugin</artifactId>
66+
<configuration>
67+
<content>${project.reporting.outputDirectory}</content><!-- mono-module doesn't require site:stage -->
68+
</configuration>
69+
<executions>
70+
<execution>
71+
<id>scm-publish</id>
72+
<phase>site-deploy</phase><!-- deploy site with maven-scm-publish-plugin -->
73+
<goals>
74+
<goal>publish-scm</goal>
75+
</goals>
76+
</execution>
77+
</executions>
78+
</plugin>
5879
<plugin>
5980
<groupId>org.apache.maven.plugins</groupId>
6081
<artifactId>maven-surefire-plugin</artifactId>

0 commit comments

Comments
 (0)