forked from jenkinsci/performance-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
86 lines (79 loc) · 2.61 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<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.jvnet.hudson.plugins</groupId>
<artifactId>plugin</artifactId>
<version>1.388</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>performance</artifactId>
<packaging>hpi</packaging>
<version>1.8-SNAPSHOT</version>
<name>Performance plugin</name>
<url>http://wiki.jenkins-ci.org/display/JENKINS/Performance+Plugin</url>
<developers>
<developer>
<id>manolo</id>
<name>Manuel Carrasco Monino</name>
<email>[email protected]</email>
</developer>
<developer>
<id>vergnes</id>
<name>Vergnes</name>
<email>[email protected]</email>
</developer>
<developer>
<id>aespy</id>
<name>Arnaud Espy</name>
<email>[email protected]</email>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/jenkinsci/performance-plugin.git</connection>
<developerConnection>scm:git:[email protected]:jenkinsci/performance-plugin.git</developerConnection>
</scm>
<dependencies>
<dependency>
<groupId>org.easymock</groupId>
<artifactId>easymockclassextension</artifactId>
<version>2.4</version>
<scope>test</scope>
</dependency>
</dependencies>
<pluginRepositories>
<!--
<pluginRepository>
<id>maven-java-formatter-plugin.googlecode.com</id>
<name>Maven2 Java Formatter Plugin repository</name>
<url>http://maven-java-formatter-plugin.googlecode.com/svn/maven2-repo/</url>
<snapshots><enabled>true</enabled></snapshots>
</pluginRepository>
-->
</pluginRepositories>
<distributionManagement>
<repository>
<id>maven.jenkins-ci.org</id>
<url>http://maven.jenkins-ci.org:8081/content/repositories/releases/</url>
</repository>
</distributionManagement>
<build>
<plugins>
<!--
<plugin>
<groupId>com.relativitas.maven.plugins</groupId>
<artifactId>maven-java-formatter-plugin</artifactId>
<version>0.2.0-SNAPSHOT</version>
<configuration>
<compilerSource>1.5</compilerSource>
<compilerCompliance>1.5</compilerCompliance>
<compilerTargetPlatform>1.5</compilerTargetPlatform>
<configFile>src/main/tools/format.xml</configFile>
<directories>
<directory>src/main/java</directory>
</directories>
</configuration>
</plugin>
-->
</plugins>
</build>
</project>