-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
48 lines (41 loc) · 1.55 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
48
<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>
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>2.21</version>
</parent>
<groupId>com.agfa.jenkins.plugins</groupId>
<artifactId>resource-manager</artifactId>
<packaging>hpi</packaging>
<version>1.1-SNAPSHOT</version>
<name>Resource Manager</name>
<url>http://wikihealthcare.agfa.net/display/JEN/Resource+Manager</url>
<scm>
<connection>scm:git:[email protected]:huybrechts/hudson-resource-manager.git</connection>
<developerConnection>scm:git:[email protected]:huybrechts/hudson-resource-manager.git</developerConnection>
<tag>HEAD</tag>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<findbugs.failOnError>false</findbugs.failOnError>
<java.level>8</java.level>
</properties>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>2.4</version>
</extension>
</extensions>
</build>
<distributionManagement>
<repository>
<id>hap-repository</id>
<name>HAP Maven Repository</name>
<url>scp://maven-repository.agfahealthcare.com/maven-repository</url>
<uniqueVersion>true</uniqueVersion>
</repository>
</distributionManagement>
</project>