forked from Seitenbau/sb-jenkins-dynamicparameter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
143 lines (130 loc) · 4.7 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<?xml version="1.0" encoding="UTF-8" ?>
<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>1.447</version><!-- which version of Jenkins is this plugin built against? -->
</parent>
<groupId>com.seitenbau.jenkins.plugins</groupId>
<artifactId>dynamicparameter</artifactId>
<packaging>hpi</packaging>
<version>0.2.1-SNAPSHOT</version>
<name>Jenkins Dynamic Parameter Plug-in</name>
<description>
This plugin allows build parameters with dynamically generated default values.
</description>
<licenses>
<license>
<name>Apache License</name>
<comments>All source code is under the Apache License.</comments>
</license>
</licenses>
<scm>
<connection>scm:git:ssh://github.com/Seitenbau/sb-jenkins-dynamicparameter.git</connection>
<developerConnection>scm:git:[email protected]:Seitenbau/sb-jenkins-dynamicparameter.git</developerConnection>
<url>https://github.com/Seitenbau/sb-jenkins-dynamicparameter.git</url>
</scm>
<url>https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+Dynamic+Parameter+Plug-in</url>
<developers>
<developer>
<id>dimitarp</id>
<name>Dimitar Popov</name>
</developer>
<developer>
<id>baranowski</id>
<name>Christian Baranowski</name>
</developer>
</developers>
<repositories>
<repository>
<id>maven.jenkins-ci.org</id>
<url>http://repo.jenkins-ci.org/public/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>maven.jenkins-ci.org</id>
<url>http://repo.jenkins-ci.org/public/</url>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.9</version>
<configuration>
<additionalBuildcommands>
<buildcommand>com.atlassw.tools.eclipse.checkstyle.CheckstyleBuilder</buildcommand>
</additionalBuildcommands>
<additionalProjectnatures>
<projectnature>com.atlassw.tools.eclipse.checkstyle.CheckstyleNature</projectnature>
</additionalProjectnatures>
<additionalConfig>
<file>
<name>.checkstyle</name>
<content>
<![CDATA[<?xml version="1.0" encoding="UTF-8"?>
<fileset-config file-format-version="1.2.0" simple-config="true">
<local-check-config name="sb-checks" location="/src/test/checkstyle/sb-checks5.xml" type="project" description="">
<additional-data name="protect-config-file" value="false" />
</local-check-config>
<fileset name="all" enabled="true" check-config-name="sb-checks" local="true">
<file-match-pattern match-pattern="." include-pattern="true" />
</fileset>
<filter name="NonSrcDirs" enabled="true" />
</fileset-config>
]]>
</content>
</file>
</additionalConfig>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<!-- http://maven.apache.org/plugins/maven-compiler-plugin/ -->
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.9.1</version>
<configuration>
<configLocation>src/test/checkstyle/sb-checks5.xml</configLocation>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.4.0</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.5.1</version>
</plugin>
</plugins>
</reporting>
<dependencies>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>scriptler</artifactId>
<version>2.2</version>
</dependency>
</dependencies>
</project>