mirror of https://github.com/apache/maven.git
prepare svnpubsub
This commit is contained in:
parent
59dcfc80cd
commit
6e6c4870e4
21
its/pom.xml
21
its/pom.xml
|
@ -25,7 +25,7 @@ under the License.
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.apache.maven</groupId>
|
<groupId>org.apache.maven</groupId>
|
||||||
<artifactId>maven-parent</artifactId>
|
<artifactId>maven-parent</artifactId>
|
||||||
<version>23</version>
|
<version>22</version>
|
||||||
<relativePath>../pom/maven/pom.xml</relativePath>
|
<relativePath>../pom/maven/pom.xml</relativePath>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
|
@ -46,6 +46,17 @@ under the License.
|
||||||
<system>Jenkins</system>
|
<system>Jenkins</system>
|
||||||
<url>https://builds.apache.org/view/M-R/view/Maven/job/core-integration-testing-maven-3/</url>
|
<url>https://builds.apache.org/view/M-R/view/Maven/job/core-integration-testing-maven-3/</url>
|
||||||
</ciManagement>
|
</ciManagement>
|
||||||
|
<distributionManagement>
|
||||||
|
<site>
|
||||||
|
<id>apache.website</id>
|
||||||
|
<url>scm:svn:https://svn.apache.org/repos/infra/websites/production/maven/content/${maven.site.path}</url>
|
||||||
|
</site>
|
||||||
|
</distributionManagement>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<maven.site.path>core-its</maven.site.path>
|
||||||
|
<maven.site.cache>${user.home}/maven-sites</maven.site.cache>
|
||||||
|
</properties>
|
||||||
|
|
||||||
<modules>
|
<modules>
|
||||||
<module>core-it-support</module>
|
<module>core-it-support</module>
|
||||||
|
@ -70,6 +81,14 @@ under the License.
|
||||||
<artifactId>maven-surefire-plugin</artifactId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
<version>2.13</version>
|
<version>2.13</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-scm-publish-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<checkoutDirectory>${maven.site.cache}/${maven.site.path}</checkoutDirectory>
|
||||||
|
<tryUpdate>true</tryUpdate>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</pluginManagement>
|
</pluginManagement>
|
||||||
</build>
|
</build>
|
||||||
|
|
Loading…
Reference in New Issue