|
1 |
| -<?xml version="1.0" encoding="UTF-8"?> |
2 |
| -<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"> |
3 |
| - <modelVersion>4.0.0</modelVersion> |
4 |
| - |
5 |
| - <parent> |
6 |
| - <groupId>com.splunk.splunkins</groupId> |
7 |
| - <artifactId>pom</artifactId> |
8 |
| - <version>1.10.1-SNAPSHOT</version> |
9 |
| - </parent> |
10 |
| - |
11 |
| - <artifactId>splunk-devops</artifactId> |
12 |
| - <packaging>hpi</packaging> |
13 |
| - |
14 |
| - <name>Splunk Plugin</name> |
15 |
| - <description> |
16 |
| - Splunk plugin for Jenkins provides deep insights into your Jenkins master and slave infrastructure, job and |
17 |
| - build details such as console logs, status, artifacts, and an incredibly efficient way to analyze test results. |
18 |
| - </description> |
19 |
| - <url>https://github.com/jenkinsci/splunk-devops-plugin/blob/master/doc/splunk-devops-usage.md</url> |
20 |
| - <licenses> |
21 |
| - <license> |
22 |
| - <name>MIT License</name> |
23 |
| - <url>http://opensource.org/licenses/MIT</url> |
24 |
| - </license> |
25 |
| - </licenses> |
26 |
| - <developers> |
27 |
| - <developer> |
28 |
| - <id>djenkins</id> |
29 |
| - <name>Danielle Jenkins</name> |
30 |
| - <email>djenkins@splunk.com</email> |
31 |
| - </developer> |
32 |
| - <developer> |
33 |
| - <id>kjotwani</id> |
34 |
| - <name>Kashyap Jotwani</name> |
35 |
| - <email>kjotwani@splunk.com</email> |
36 |
| - </developer> |
37 |
| - <developer> |
38 |
| - <id>fengxx</id> |
39 |
| - <name>Ted Xiao</name> |
40 |
| - <email>xiao.xj@outlook.com</email> |
41 |
| - </developer> |
42 |
| - </developers> |
43 |
| - |
44 |
| - <build> |
45 |
| - <plugins> |
46 |
| - <plugin> |
47 |
| - <groupId>org.codehaus.gmaven</groupId> |
48 |
| - <artifactId>gmaven-plugin</artifactId> |
49 |
| - <version>1.4</version> |
50 |
| - <configuration> |
51 |
| - <providerSelection>1.8</providerSelection> |
52 |
| - </configuration> |
53 |
| - <executions> |
54 |
| - <execution> |
55 |
| - <goals> |
56 |
| - <goal>generateStubs</goal> |
57 |
| - <goal>compile</goal> |
58 |
| - <goal>generateTestStubs</goal> |
59 |
| - <goal>testCompile</goal> |
60 |
| - </goals> |
61 |
| - </execution> |
62 |
| - </executions> |
63 |
| - </plugin> |
64 |
| - <plugin> |
65 |
| - <groupId>org.apache.maven.plugins</groupId> |
66 |
| - <artifactId>maven-javadoc-plugin</artifactId> |
67 |
| - <version>2.10.3</version> |
68 |
| - <configuration> |
69 |
| - <!--skip generated sources--> |
70 |
| - <sourcepath>${basedir}/src/main/java/;${basedir}/src/main/groovy</sourcepath> |
71 |
| - </configuration> |
72 |
| - </plugin> |
73 |
| - <plugin> |
74 |
| - <groupId>org.apache.maven.plugins</groupId> |
75 |
| - <artifactId>maven-jar-plugin</artifactId> |
76 |
| - <version>3.2.0</version> |
77 |
| - <executions> |
78 |
| - <execution> |
79 |
| - <goals> |
80 |
| - <goal>test-jar</goal> |
81 |
| - </goals> |
82 |
| - </execution> |
83 |
| - </executions> |
84 |
| - <configuration> |
85 |
| - <excludes> |
86 |
| - <exclude>**/test-dependencies/*</exclude> |
87 |
| - </excludes> |
88 |
| - </configuration> |
89 |
| - </plugin> |
90 |
| - <plugin> |
91 |
| - <groupId>org.jenkins-ci.tools</groupId> |
92 |
| - <artifactId>maven-hpi-plugin</artifactId> |
93 |
| - <extensions>true</extensions> |
94 |
| - <configuration> |
95 |
| - <compatibleSinceVersion>1.5</compatibleSinceVersion> |
96 |
| - </configuration> |
97 |
| - </plugin> |
98 |
| - <plugin> |
99 |
| - <groupId>org.apache.maven.plugins</groupId> |
100 |
| - <artifactId>maven-enforcer-plugin</artifactId> |
101 |
| - <configuration> |
102 |
| - <rules> |
103 |
| - <requireUpperBoundDeps> |
104 |
| - <excludes combine.children="append"> |
105 |
| - <exclude>org.apache.maven.reporting:maven-reporting-api</exclude> |
106 |
| - <exclude>org.apache.maven.doxia:doxia-sink-api</exclude> |
107 |
| - <exclude>org.apache.maven.doxia:doxia-logging-api</exclude> |
108 |
| - <exclude>org.apache.maven:maven-plugin-api</exclude> |
109 |
| - <exclude>org.apache.maven:maven-plugin</exclude> |
110 |
| - <exclude>org.codehaus.plexus:plexus-classworlds</exclude> |
111 |
| - </excludes> |
112 |
| - </requireUpperBoundDeps> |
113 |
| - </rules> |
114 |
| - <fail>false</fail> |
115 |
| - </configuration> |
116 |
| - </plugin> |
117 |
| - </plugins> |
118 |
| - </build> |
119 |
| - |
120 |
| - <!-- If you want to depend on other plugins: --> |
121 |
| - <dependencies> |
122 |
| - |
123 |
| - <dependency> |
124 |
| - <groupId>org.codehaus.groovy</groupId> |
125 |
| - <artifactId>groovy-all</artifactId> |
126 |
| - <version>2.4.12</version> |
127 |
| - <scope>provided</scope> <!-- from jenkins-core --> |
128 |
| - </dependency> |
129 |
| - <dependency> |
130 |
| - <groupId>org.jenkins-ci.plugins</groupId> |
131 |
| - <artifactId>junit</artifactId> |
132 |
| - <version>1.47</version> |
133 |
| - <optional>true</optional><!-- from jenkins-core detached-plugins --> |
134 |
| - </dependency> |
135 |
| - <dependency> |
136 |
| - <groupId>org.jenkins-ci.plugins</groupId> |
137 |
| - <artifactId>testng-plugin</artifactId> |
138 |
| - <version>1.14</version> |
139 |
| - <optional>true</optional> |
140 |
| - </dependency> |
141 |
| - |
142 |
| - <dependency> |
143 |
| - <groupId>org.jenkins-ci.plugins</groupId> |
144 |
| - <artifactId>cucumber-testresult-plugin</artifactId> |
145 |
| - <version>0.9.7</version> |
146 |
| - <optional>true</optional> |
147 |
| - </dependency> |
148 |
| - <dependency> |
149 |
| - <groupId>org.jenkins-ci.plugins</groupId> |
150 |
| - <artifactId>clover</artifactId> |
151 |
| - <version>4.7.1</version> |
152 |
| - <optional>true</optional> |
153 |
| - </dependency> |
154 |
| - <dependency> |
155 |
| - <groupId>org.jenkins-ci.plugins</groupId> |
156 |
| - <artifactId>cobertura</artifactId> |
157 |
| - <version>1.17</version> |
158 |
| - <optional>true</optional> |
159 |
| - <exclusions> |
160 |
| - <exclusion> |
161 |
| - <groupId>commons-net</groupId> |
162 |
| - <artifactId>commons-net</artifactId> |
163 |
| - </exclusion> |
164 |
| - </exclusions> |
165 |
| - </dependency> |
166 |
| - <dependency> |
167 |
| - <groupId>org.jenkins-ci.plugins</groupId> |
168 |
| - <artifactId>scm-api</artifactId> |
169 |
| - <version>2.4.1</version> |
170 |
| - <optional>true</optional> |
171 |
| - <scope>test</scope> |
172 |
| - <!-- cobertura requires scm-api 2.4.1 or higher --> |
173 |
| - </dependency> |
174 |
| - <dependency> |
175 |
| - <groupId>org.jenkins-ci.plugins</groupId> |
176 |
| - <artifactId>jacoco</artifactId> |
177 |
| - <version>2.1.0</version> |
178 |
| - <optional>true</optional> |
179 |
| - <exclusions> |
180 |
| - <exclusion> |
181 |
| - <groupId>org.apache.maven</groupId> |
182 |
| - <artifactId>*</artifactId> |
183 |
| - </exclusion> |
184 |
| - <exclusion> |
185 |
| - <groupId>org.codehaus.plexus</groupId> |
186 |
| - <artifactId>plexus-container-default</artifactId> |
187 |
| - </exclusion> |
188 |
| - <exclusion> |
189 |
| - <groupId>xerces</groupId> |
190 |
| - <artifactId>xercesImpl</artifactId> |
191 |
| - </exclusion> |
192 |
| - <exclusion> |
193 |
| - <groupId>xml-apis</groupId> |
194 |
| - <artifactId>xml-apis</artifactId> |
195 |
| - </exclusion> |
196 |
| - <exclusion> |
197 |
| - <groupId>org.ow2.asm</groupId> |
198 |
| - <artifactId>*</artifactId> |
199 |
| - </exclusion> |
200 |
| - </exclusions> |
201 |
| - </dependency> |
202 |
| - <dependency> |
203 |
| - <groupId>org.jenkins-ci.plugins</groupId> |
204 |
| - <artifactId>script-security</artifactId> |
205 |
| - <version>1229.v4880b_b_e905a_6</version> |
206 |
| - </dependency> |
207 |
| - <dependency> |
208 |
| - <groupId>${project.groupId}</groupId> |
209 |
| - <artifactId>splunk-devops-shaded</artifactId> |
210 |
| - <version>${project.version}</version> |
211 |
| - <exclusions> |
212 |
| - <exclusion> |
213 |
| - <groupId>org.apache.httpcomponents</groupId> |
214 |
| - <artifactId>httpcore</artifactId> |
215 |
| - </exclusion> |
216 |
| - <exclusion> |
217 |
| - <groupId>org.apache.httpcomponents</groupId> |
218 |
| - <artifactId>httpclient</artifactId> |
219 |
| - </exclusion> |
220 |
| - <exclusion> |
221 |
| - <groupId>com.google.code.gson</groupId> |
222 |
| - <artifactId>gson</artifactId> |
223 |
| - </exclusion> |
224 |
| - </exclusions> |
225 |
| - </dependency> |
226 |
| - </dependencies> |
227 |
| - |
228 |
| -</project> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<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"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + |
| 5 | + <parent> |
| 6 | + <groupId>com.splunk.splunkins</groupId> |
| 7 | + <artifactId>pom</artifactId> |
| 8 | + <version>1.10.1</version> |
| 9 | + </parent> |
| 10 | + |
| 11 | + <artifactId>splunk-devops</artifactId> |
| 12 | + <packaging>hpi</packaging> |
| 13 | + |
| 14 | + <name>Splunk Plugin</name> |
| 15 | + <description> |
| 16 | + Splunk plugin for Jenkins provides deep insights into your Jenkins master and slave infrastructure, job and |
| 17 | + build details such as console logs, status, artifacts, and an incredibly efficient way to analyze test results. |
| 18 | + </description> |
| 19 | + <url>https://github.com/jenkinsci/splunk-devops-plugin/blob/master/doc/splunk-devops-usage.md</url> |
| 20 | + <licenses> |
| 21 | + <license> |
| 22 | + <name>MIT License</name> |
| 23 | + <url>http://opensource.org/licenses/MIT</url> |
| 24 | + </license> |
| 25 | + </licenses> |
| 26 | + <developers> |
| 27 | + <developer> |
| 28 | + <id>djenkins</id> |
| 29 | + <name>Danielle Jenkins</name> |
| 30 | + <email>djenkins@splunk.com</email> |
| 31 | + </developer> |
| 32 | + <developer> |
| 33 | + <id>kjotwani</id> |
| 34 | + <name>Kashyap Jotwani</name> |
| 35 | + <email>kjotwani@splunk.com</email> |
| 36 | + </developer> |
| 37 | + <developer> |
| 38 | + <id>fengxx</id> |
| 39 | + <name>Ted Xiao</name> |
| 40 | + <email>xiao.xj@outlook.com</email> |
| 41 | + </developer> |
| 42 | + </developers> |
| 43 | + |
| 44 | + <build> |
| 45 | + <plugins> |
| 46 | + <plugin> |
| 47 | + <groupId>org.codehaus.gmaven</groupId> |
| 48 | + <artifactId>gmaven-plugin</artifactId> |
| 49 | + <version>1.4</version> |
| 50 | + <configuration> |
| 51 | + <providerSelection>1.8</providerSelection> |
| 52 | + </configuration> |
| 53 | + <executions> |
| 54 | + <execution> |
| 55 | + <goals> |
| 56 | + <goal>generateStubs</goal> |
| 57 | + <goal>compile</goal> |
| 58 | + <goal>generateTestStubs</goal> |
| 59 | + <goal>testCompile</goal> |
| 60 | + </goals> |
| 61 | + </execution> |
| 62 | + </executions> |
| 63 | + </plugin> |
| 64 | + <plugin> |
| 65 | + <groupId>org.apache.maven.plugins</groupId> |
| 66 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 67 | + <version>2.10.3</version> |
| 68 | + <configuration> |
| 69 | + <!--skip generated sources--> |
| 70 | + <sourcepath>${basedir}/src/main/java/;${basedir}/src/main/groovy</sourcepath> |
| 71 | + </configuration> |
| 72 | + </plugin> |
| 73 | + <plugin> |
| 74 | + <groupId>org.apache.maven.plugins</groupId> |
| 75 | + <artifactId>maven-jar-plugin</artifactId> |
| 76 | + <version>3.2.0</version> |
| 77 | + <executions> |
| 78 | + <execution> |
| 79 | + <goals> |
| 80 | + <goal>test-jar</goal> |
| 81 | + </goals> |
| 82 | + </execution> |
| 83 | + </executions> |
| 84 | + <configuration> |
| 85 | + <excludes> |
| 86 | + <exclude>**/test-dependencies/*</exclude> |
| 87 | + </excludes> |
| 88 | + </configuration> |
| 89 | + </plugin> |
| 90 | + <plugin> |
| 91 | + <groupId>org.jenkins-ci.tools</groupId> |
| 92 | + <artifactId>maven-hpi-plugin</artifactId> |
| 93 | + <extensions>true</extensions> |
| 94 | + <configuration> |
| 95 | + <compatibleSinceVersion>1.5</compatibleSinceVersion> |
| 96 | + </configuration> |
| 97 | + </plugin> |
| 98 | + <plugin> |
| 99 | + <groupId>org.apache.maven.plugins</groupId> |
| 100 | + <artifactId>maven-enforcer-plugin</artifactId> |
| 101 | + <configuration> |
| 102 | + <rules> |
| 103 | + <requireUpperBoundDeps> |
| 104 | + <excludes combine.children="append"> |
| 105 | + <exclude>org.apache.maven.reporting:maven-reporting-api</exclude> |
| 106 | + <exclude>org.apache.maven.doxia:doxia-sink-api</exclude> |
| 107 | + <exclude>org.apache.maven.doxia:doxia-logging-api</exclude> |
| 108 | + <exclude>org.apache.maven:maven-plugin-api</exclude> |
| 109 | + <exclude>org.apache.maven:maven-plugin</exclude> |
| 110 | + <exclude>org.codehaus.plexus:plexus-classworlds</exclude> |
| 111 | + </excludes> |
| 112 | + </requireUpperBoundDeps> |
| 113 | + </rules> |
| 114 | + <fail>false</fail> |
| 115 | + </configuration> |
| 116 | + </plugin> |
| 117 | + </plugins> |
| 118 | + </build> |
| 119 | + |
| 120 | + <!-- If you want to depend on other plugins: --> |
| 121 | + <dependencies> |
| 122 | + |
| 123 | + <dependency> |
| 124 | + <groupId>org.codehaus.groovy</groupId> |
| 125 | + <artifactId>groovy-all</artifactId> |
| 126 | + <version>2.4.12</version> |
| 127 | + <scope>provided</scope> <!-- from jenkins-core --> |
| 128 | + </dependency> |
| 129 | + <dependency> |
| 130 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 131 | + <artifactId>junit</artifactId> |
| 132 | + <version>1.47</version> |
| 133 | + <optional>true</optional><!-- from jenkins-core detached-plugins --> |
| 134 | + </dependency> |
| 135 | + <dependency> |
| 136 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 137 | + <artifactId>testng-plugin</artifactId> |
| 138 | + <version>1.14</version> |
| 139 | + <optional>true</optional> |
| 140 | + </dependency> |
| 141 | + |
| 142 | + <dependency> |
| 143 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 144 | + <artifactId>cucumber-testresult-plugin</artifactId> |
| 145 | + <version>0.9.7</version> |
| 146 | + <optional>true</optional> |
| 147 | + </dependency> |
| 148 | + <dependency> |
| 149 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 150 | + <artifactId>clover</artifactId> |
| 151 | + <version>4.7.1</version> |
| 152 | + <optional>true</optional> |
| 153 | + </dependency> |
| 154 | + <dependency> |
| 155 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 156 | + <artifactId>cobertura</artifactId> |
| 157 | + <version>1.17</version> |
| 158 | + <optional>true</optional> |
| 159 | + <exclusions> |
| 160 | + <exclusion> |
| 161 | + <groupId>commons-net</groupId> |
| 162 | + <artifactId>commons-net</artifactId> |
| 163 | + </exclusion> |
| 164 | + </exclusions> |
| 165 | + </dependency> |
| 166 | + <dependency> |
| 167 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 168 | + <artifactId>scm-api</artifactId> |
| 169 | + <version>2.4.1</version> |
| 170 | + <optional>true</optional> |
| 171 | + <scope>test</scope> |
| 172 | + <!-- cobertura requires scm-api 2.4.1 or higher --> |
| 173 | + </dependency> |
| 174 | + <dependency> |
| 175 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 176 | + <artifactId>jacoco</artifactId> |
| 177 | + <version>2.1.0</version> |
| 178 | + <optional>true</optional> |
| 179 | + <exclusions> |
| 180 | + <exclusion> |
| 181 | + <groupId>org.apache.maven</groupId> |
| 182 | + <artifactId>*</artifactId> |
| 183 | + </exclusion> |
| 184 | + <exclusion> |
| 185 | + <groupId>org.codehaus.plexus</groupId> |
| 186 | + <artifactId>plexus-container-default</artifactId> |
| 187 | + </exclusion> |
| 188 | + <exclusion> |
| 189 | + <groupId>xerces</groupId> |
| 190 | + <artifactId>xercesImpl</artifactId> |
| 191 | + </exclusion> |
| 192 | + <exclusion> |
| 193 | + <groupId>xml-apis</groupId> |
| 194 | + <artifactId>xml-apis</artifactId> |
| 195 | + </exclusion> |
| 196 | + <exclusion> |
| 197 | + <groupId>org.ow2.asm</groupId> |
| 198 | + <artifactId>*</artifactId> |
| 199 | + </exclusion> |
| 200 | + </exclusions> |
| 201 | + </dependency> |
| 202 | + <dependency> |
| 203 | + <groupId>org.jenkins-ci.plugins</groupId> |
| 204 | + <artifactId>script-security</artifactId> |
| 205 | + <version>1229.v4880b_b_e905a_6</version> |
| 206 | + </dependency> |
| 207 | + <dependency> |
| 208 | + <groupId>${project.groupId}</groupId> |
| 209 | + <artifactId>splunk-devops-shaded</artifactId> |
| 210 | + <version>${project.version}</version> |
| 211 | + <exclusions> |
| 212 | + <exclusion> |
| 213 | + <groupId>org.apache.httpcomponents</groupId> |
| 214 | + <artifactId>httpcore</artifactId> |
| 215 | + </exclusion> |
| 216 | + <exclusion> |
| 217 | + <groupId>org.apache.httpcomponents</groupId> |
| 218 | + <artifactId>httpclient</artifactId> |
| 219 | + </exclusion> |
| 220 | + <exclusion> |
| 221 | + <groupId>com.google.code.gson</groupId> |
| 222 | + <artifactId>gson</artifactId> |
| 223 | + </exclusion> |
| 224 | + </exclusions> |
| 225 | + </dependency> |
| 226 | + </dependencies> |
| 227 | + |
| 228 | +</project> |
0 commit comments