-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
363 lines (300 loc) · 12.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
<?xml version="1.0" encoding="UTF-8"?>
<!--
Sonatype Nexus (TM) Open Source Version
Copyright (c) 2008-2015 Sonatype, Inc.
All rights reserved. Includes the third-party code listed at http://links.sonatype.com/products/nexus/oss/attributions.
This program and the accompanying materials are made available under the terms of the Eclipse Public License Version 1.0,
which accompanies this distribution and is available at http://www.eclipse.org/legal/epl-v10.html.
Sonatype Nexus (TM) Professional Version is available from Sonatype, Inc. "Sonatype" and "Sonatype Nexus" are trademarks
of Sonatype, Inc. Apache Maven is a trademark of the Apache Software Foundation. M2eclipse is a trademark of the
Eclipse Foundation. All other trademarks are the property of their respective owners.
-->
<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>ua.pp.msk.yum</groupId>
<artifactId>createrepo</artifactId>
<name>Createrepo</name>
<packaging>jar</packaging>
<version>0.0-SNAPSHOT</version>
<description>Java Createrepo implementation. This code was originally forked from Sonatype Nexus OSS GIT repository https://github.com/sonatype/nexus-oss</description>
<properties>
<pluginDescription>Allows Nexus to create yum repositories for uploaded RPM packages.</pluginDescription>
<!--
Define nexus versions. The 'nexus.version' property always refers to the version of the current project.
These values must always be constants; 'nexus.version' will get update automatically by set-version.
-->
<nexus.version>2.11.2-06</nexus.version>
<!-- FIXME: WTF is this for, part of the http proxy changes, used in subst in test files :-( -->
<nexus.configuration.version>2.8.0</nexus.configuration.version>
<!--
Configuration of 'nexus-plugin' packaging and bundles.
-->
<nexus-plugin-bundle.version>1.2</nexus-plugin-bundle.version>
<nexus-plugin.type>nexus-plugin</nexus-plugin.type>
<!-- logging configuration used in logback config files to control test logging -->
<test.log.level>INFO</test.log.level>
<test.log.pattern>%date %level [%thread%X{DC}] %logger - %msg%n</test.log.pattern>
<it.test.log.level>INFO</it.test.log.level>
<it.nexus.log.level>INFO</it.nexus.log.level>
<!-- nexus integration-testing bundle configuration -->
<it.nexus.bundle.groupId>org.sonatype.nexus.assemblies</it.nexus.bundle.groupId>
<it.nexus.bundle.artifactId>nexus-bundle-template</it.nexus.bundle.artifactId>
<it.nexus.bundle.version>${nexus.version}</it.nexus.bundle.version>
<!--
compiler plugin configuration, we are Java7
but some child modules will override these properties to remain on Java6
-->
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-plugin-api</artifactId>
<scope>provided</scope>
</dependency>
<!-- <dependency>
<groupId>org.sonatype.nexus.plugins</groupId>
<artifactId>nexus-capabilities-plugin</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-exec</artifactId>
</dependency>
<dependency>
<groupId>org.redline-rpm</groupId>
<artifactId>redline</artifactId>
</dependency>
<dependency>
<groupId>org.apache.servicemix.bundles</groupId>
<artifactId>org.apache.servicemix.bundles.stax-utils</artifactId>
</dependency>
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-test-common</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.code.tempus-fugit</groupId>
<artifactId>tempus-fugit</artifactId>
<scope>test</scope>
</dependency>-->
<dependency>
<groupId>org.sonatype.nexus.plugins</groupId>
<artifactId>nexus-restlet1x-plugin</artifactId>
<version>2.11.2-06</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.sonatype.nexus.plugins</groupId>
<artifactId>nexus-capabilities-plugin</artifactId>
<version>2.11.2-06</version>
<type>jar</type>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-exec</artifactId>
<version>1.3</version>
<type>jar</type>
</dependency>
</dependencies>
<repositories>
<repository>
<id>rso-public-grid</id>
<url>https://repository.sonatype.org/content/groups/sonatype-public-grid/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<dependencyManagement>
<dependencies>
<!-- INTERNAL -->
<!--
DM entry here is used to allow the _bundle-launcher-style_ integration-tests to locate the appropriate Nexus bundle to test with.
-->
<dependency>
<groupId>${it.nexus.bundle.groupId}</groupId>
<artifactId>${it.nexus.bundle.artifactId}</artifactId>
<classifier>bundle</classifier>
<type>zip</type>
<version>${it.nexus.bundle.version}</version>
</dependency>
<!-- components -->
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>base-configuration</artifactId>
<version>2.11.2-06</version>
</dependency>
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-bootstrap</artifactId>
<version>2.11.2-06</version>
</dependency>
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-client-core</artifactId>
<version>2.11.2-06</version>
</dependency>
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-configuration-model</artifactId>
<version>2.11.2-06</version>
</dependency>
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-core</artifactId>
<version>2.11.2-06</version>
</dependency>
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-core</artifactId>
<version>2.11.2-06</version>
<classifier>tests</classifier>
</dependency>
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-csrfguard</artifactId>
<version>2.11.2-06</version>
</dependency>
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-ehcache</artifactId>
<version>2.11.2-06</version>
</dependency>
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-launcher</artifactId>
<version>2.11.2-06</version>
</dependency>
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-ldap-common</artifactId>
<version>2.11.2-06</version>
</dependency>
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-locks</artifactId>
<version>2.11.2-06</version>
</dependency>
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-oss-edition</artifactId>
<version>2.11.2-06</version>
</dependency>
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-plugin-api</artifactId>
<version>2.11.2-06</version>
</dependency>
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-repository-metadata-api</artifactId>
<version>2.11.2-06</version>
</dependency>
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-repository-metadata-model</artifactId>
<version>2.11.2-06</version>
</dependency>
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-scheduler</artifactId>
<version>2.11.2-06</version>
</dependency>
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-security</artifactId>
<version>2.11.2-06</version>
</dependency>
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-security-realms</artifactId>
<version>2.11.2-06</version>
</dependency>
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-webapp</artifactId>
<version>2.11.2-06</version>
</dependency>
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-webapp</artifactId>
<type>war</type>
<version>2.11.2-06</version>
</dependency>
<!-- testsupport -->
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-it-helper-plugin</artifactId>
<classifier>bundle</classifier>
<type>zip</type>
<version>2.11.2-06</version>
</dependency>
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-plugin-testsupport</artifactId>
<version>2.11.2-06</version>
</dependency>
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-test-common</artifactId>
<version>2.11.2-06</version>
</dependency>
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-test-harness-launcher</artifactId>
<version>2.11.2-06</version>
</dependency>
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-testsuite-client</artifactId>
<version>2.11.2-06</version>
</dependency>
<dependency>
<groupId>org.sonatype.nexus</groupId>
<artifactId>nexus-testsuite-support</artifactId>
<version>2.11.2-06</version>
</dependency>
<!-- assemblies -->
<dependency>
<groupId>org.sonatype.nexus.assemblies</groupId>
<artifactId>nexus-bundle-template</artifactId>
<version>2.11.2-06</version>
<classifier>bundle</classifier>
<type>zip</type>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.karaf.tooling</groupId>
<artifactId>karaf-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
</plugins>
</build>
</project>