forked from jenkinsci/wsclean-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
47 lines (43 loc) · 1.87 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>de.jamba.hudson.plugin.wsclean</groupId>
<artifactId>hudson-wsclean-plugin</artifactId>
<packaging>hpi</packaging>
<name>Hudson Distributed Workspace Cleaner</name>
<version>1.0.5-SNAPSHOT</version>
<url>http://wiki.hudson-ci.org/display/HUDSON/Hudson+Distributed+Workspace+Clean+plugin</url>
<parent>
<groupId>org.jvnet.hudson.plugins</groupId>
<artifactId>plugin</artifactId>
<version>1.328</version>
</parent>
<description>This plugin cleans all workspace directories for the same BuildProject within as same slave group</description>
<organization>
<name>Fox Mobile Distribution GmbH</name>
<url>http://www.jamba.de</url>
</organization>
<developers>
<developer>
<id>tspengler</id>
<name>Thomas Spengler</name>
</developer>
</developers>
<distributionManagement>
<repository>
<uniqueVersion>false</uniqueVersion>
<id>java.net-m2-repository</id>
<!--url>svn:https://svn.dev.java.net/svn/maven2-repository/trunk/www/repository/</url-->
<url>java-net:/maven2-repository/trunk/repository/</url>
</repository>
<snapshotRepository>
<!-- prevent accidental deployment of SNAPSHOTS to repository -->
<id>local</id>
<url>file:.</url>
</snapshotRepository>
</distributionManagement>
<scm>
<connection>scm:svn:https://[email protected]/svn/hudson/trunk/hudson/plugins/wsclean</connection>
<developerConnection>scm:svn:https://svn.dev.java.net/svn/hudson/trunk/hudson/plugins/wsclean</developerConnection>
<url>https://svn.dev.java.net/svn/hudson/trunk/hudson/plugins/wsclean</url>
</scm>
</project>