Skip to content

Commit d14124d

Browse files
committed
updated parent pom & site publication
1 parent 70ac722 commit d14124d

File tree

1 file changed

+32
-1
lines changed

1 file changed

+32
-1
lines changed

pom.xml

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.codehaus.plexus</groupId>
77
<artifactId>plexus-components</artifactId>
8-
<version>1.3.1</version>
8+
<version>4.0-SNAPSHOT</version>
99
</parent>
1010

1111
<artifactId>plexus-resources</artifactId>
@@ -20,6 +20,16 @@
2020
<url>http://github.com/codehaus-plexus/plexus-resources</url>
2121
<tag>HEAD</tag>
2222
</scm>
23+
<issueManagement>
24+
<system>jira</system>
25+
<url>https://github.com/codehaus-plexus/plexus-resources/issues</url>
26+
</issueManagement>
27+
<distributionManagement>
28+
<site>
29+
<id>github:gh-pages</id>
30+
<url>${project.scm.developerConnection}</url>
31+
</site>
32+
</distributionManagement>
2333

2434
<dependencies>
2535
<dependency>
@@ -39,4 +49,25 @@
3949
<scope>test</scope>
4050
</dependency>
4151
</dependencies>
52+
53+
<build>
54+
<plugins>
55+
<plugin>
56+
<groupId>org.apache.maven.plugins</groupId>
57+
<artifactId>maven-scm-publish-plugin</artifactId>
58+
<configuration>
59+
<content>${project.reporting.outputDirectory}</content><!-- mono-module doesn't require site:stage -->
60+
</configuration>
61+
<executions>
62+
<execution>
63+
<id>scm-publish</id>
64+
<phase>site-deploy</phase><!-- deploy site with maven-scm-publish-plugin -->
65+
<goals>
66+
<goal>publish-scm</goal>
67+
</goals>
68+
</execution>
69+
</executions>
70+
</plugin>
71+
</plugins>
72+
</build>
4273
</project>

0 commit comments

Comments
 (0)