Bonjour,

Je cherche à faire communiquer mon repository Maven local avec Artifactory que j'ai installé en local sur ma machine. Je cherche également à faire communiquer Artifactory avec les remote repositories sur Internet (dans le cas où rien n'est trouvé dans Artifactory).

J'ai donc installé Artifactory. J'ai configuré son proxy avec les paramètres de mon entreprise.

Enfin j'ai modifié mon settings.xml afin de communiquer avec Artifactory. Le voici :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
 
<?xml version="1.0" encoding="UTF-8"?>
<settings
	xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"
	xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 
	<mirrors>
		<mirror>
			<id>artifactory</id>
			<mirrorOf>central</mirrorOf>
			<name>Artifactory</name>
			<url>http://127.0.0.1:8080/artifactory/remote-repos</url>
		</mirror>
	</mirrors>
 
	<profiles>
		<profile>
			<id>artifactory</id>
			<repositories>
				<repository>
					<snapshots>
						<enabled>false</enabled>
					</snapshots>
					<id>central</id>
					<name>libs-releases</name>
					<url>http://127.0.0.1:8080/artifactory/libs-releases</url>
				</repository>
				<repository>
					<snapshots />
					<id>snapshots</id>
					<name>libs-snapshots</name>
					<url>http://127.0.0.1:8080/artifactory/libs-snapshots</url>
				</repository>
			</repositories>
			<pluginRepositories>
				<pluginRepository>
					<snapshots>
						<enabled>false</enabled>
					</snapshots>
					<id>central</id>
					<name>plugins-releases</name>
					<url>http://127.0.0.1:8080/artifactory/plugins-releases</url>
				</pluginRepository>
				<pluginRepository>
					<snapshots />
					<id>snapshots</id>
					<name>plugins-snapshots</name>
					<url>http://127.0.0.1:8080/artifactory/plugins-snapshots</url>
				</pluginRepository>
			</pluginRepositories>
		</profile>
	</profiles>
 
	<activeProfiles>
		<activeProfile>artifactory</activeProfile>
	</activeProfiles>
 
</settings>
Le problème c'est qu'apparemment Maven va bien chercher sur Artifactory mais ne va pas chercher sur Internet . Voici la sortie :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
 
[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] Building essai
[INFO]    task-segment: [clean, install, site]
[INFO] ------------------------------------------------------------------------
Downloading: http://127.0.0.1:8080/artifactory/plugins-releases/org/apache/maven/plugins/maven-clean-plugin/2.2/maven-clean-plugin-2.2.pom
[INFO] Unable to find resource 'org.apache.maven.plugins:maven-clean-plugin:pom:2.2' in repository central (http://127.0.0.1:8080/artifactory/plugins-releases)
Downloading: http://127.0.0.1:8080/artifactory/plugins-snapshots/org/apache/maven/plugins/maven-clean-plugin/2.2/maven-clean-plugin-2.2.pom
[INFO] Unable to find resource 'org.apache.maven.plugins:maven-clean-plugin:pom:2.2' in repository snapshots (http://127.0.0.1:8080/artifactory/plugins-snapshots)
Downloading: http://127.0.0.1:8080/artifactory/libs-releases/org/apache/maven/plugins/maven-clean-plugin/2.2/maven-clean-plugin-2.2.pom
[INFO] Unable to find resource 'org.apache.maven.plugins:maven-clean-plugin:pom:2.2' in repository central (http://127.0.0.1:8080/artifactory/libs-releases)
Downloading: http://127.0.0.1:8080/artifactory/libs-snapshots/org/apache/maven/plugins/maven-clean-plugin/2.2/maven-clean-plugin-2.2.pom
[INFO] Unable to find resource 'org.apache.maven.plugins:maven-clean-plugin:pom:2.2' in repository snapshots (http://127.0.0.1:8080/artifactory/libs-snapshots)
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] Error building POM (may not be this project's POM).
 
 
Project ID: org.apache.maven.plugins:maven-clean-plugin
 
Reason: POM 'org.apache.maven.plugins:maven-clean-plugin' not found in repository: Unable to download the artifact from any repository
 
  org.apache.maven.plugins:maven-clean-plugin:pom:2.2
 
from the specified remote repositories:
  central (http://127.0.0.1:8080/artifactory/libs-releases),
  snapshots (http://127.0.0.1:8080/artifactory/libs-snapshots)
 
 for project org.apache.maven.plugins:maven-clean-plugin
 
 
[INFO] ------------------------------------------------------------------------
[INFO] For more information, run Maven with the -e switch
[INFO] ------------------------------------------------------------------------
[INFO] Total time: < 1 second
[INFO] Finished at: Thu Apr 22 09:36:00 CEST 2010
[INFO] Final Memory: 2M/15M
[INFO] ------------------------------------------------------------------------
channel stopped
Finished: FAILURE
Auriez-vous une idée?
Je vous remercie d'avance

Edit:
Voici mon artifactory.config.xml si cela peut servir...
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
 
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<config xmlns="http://artifactory.jfrog.org/xsd/1.4.3" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.jfrog.org/xsd/artifactory-v1_4_3.xsd">
    <serverName>artifactory</serverName>
    <offlineMode>false</offlineMode>
    <fileUploadMaxSizeMb>100</fileUploadMaxSizeMb>
    <dateFormat>dd-MM-yy HH:mm:ss z</dateFormat>
    <addons>
        <showAddonsInfo>true</showAddonsInfo>
        <showAddonsInfoCookie>1271667354588</showAddonsInfoCookie>
    </addons>
    <security>
        <anonAccessEnabled>true</anonAccessEnabled>
        <passwordSettings>
            <encryptionPolicy>supported</encryptionPolicy>
        </passwordSettings>
    </security>
    <backups>
        <backup>
            <key>backup1</key>
            <enabled>true</enabled>
            <cronExp>0 0 /12 * * ?</cronExp>
            <retentionPeriodHours>168</retentionPeriodHours>
            <createArchive>false</createArchive>
            <excludedRepositories>
                <repositoryRef>repo1</repositoryRef>
            </excludedRepositories>
            <sendMailOnError>true</sendMailOnError>
        </backup>
    </backups>
    <indexer>
        <enabled>false</enabled>
        <indexingIntervalHours>24</indexingIntervalHours>
        <excludedRepositories>
            <repositoryRef>codehaus</repositoryRef>
            <repositoryRef>google-code</repositoryRef>
            <repositoryRef>java.net.m1</repositoryRef>
            <repositoryRef>java.net.m2</repositoryRef>
            <repositoryRef>jboss</repositoryRef>
            <repositoryRef>jfrog-libs</repositoryRef>
            <repositoryRef>jfrog-plugins</repositoryRef>
            <repositoryRef>libs-releases</repositoryRef>
            <repositoryRef>libs-snapshots</repositoryRef>
            <repositoryRef>plugins-releases</repositoryRef>
            <repositoryRef>plugins-snapshots</repositoryRef>
            <repositoryRef>remote-repos</repositoryRef>
            <repositoryRef>repo1</repositoryRef>
            <repositoryRef>spring-milestone</repositoryRef>
            <repositoryRef>spring-release</repositoryRef>
            <repositoryRef>spring-snapshots</repositoryRef>
        </excludedRepositories>
    </indexer>
    <localRepositories>
        <localRepository>
            <key>libs-releases-local</key>
            <description>Local repository for in-house libraries</description>
            <type>maven2</type>
            <includesPattern>**/*</includesPattern>
            <blackedOut>false</blackedOut>
            <handleReleases>true</handleReleases>
            <handleSnapshots>false</handleSnapshots>
            <maxUniqueSnapshots>0</maxUniqueSnapshots>
            <suppressPomConsistencyChecks>false</suppressPomConsistencyChecks>
            <propertySets/>
            <snapshotVersionBehavior>non-unique</snapshotVersionBehavior>
            <localRepoChecksumPolicyType>client-checksums</localRepoChecksumPolicyType>
        </localRepository>
        <localRepository>
            <key>libs-snapshots-local</key>
            <description>Local repository for in-house snapshots</description>
            <type>maven2</type>
            <includesPattern>**/*</includesPattern>
            <blackedOut>false</blackedOut>
            <handleReleases>false</handleReleases>
            <handleSnapshots>true</handleSnapshots>
            <maxUniqueSnapshots>0</maxUniqueSnapshots>
            <suppressPomConsistencyChecks>false</suppressPomConsistencyChecks>
            <propertySets/>
            <snapshotVersionBehavior>non-unique</snapshotVersionBehavior>
            <localRepoChecksumPolicyType>client-checksums</localRepoChecksumPolicyType>
        </localRepository>
        <localRepository>
            <key>plugins-releases-local</key>
            <description>Local repository for plugins</description>
            <type>maven2</type>
            <includesPattern>**/*</includesPattern>
            <blackedOut>false</blackedOut>
            <handleReleases>true</handleReleases>
            <handleSnapshots>false</handleSnapshots>
            <maxUniqueSnapshots>0</maxUniqueSnapshots>
            <suppressPomConsistencyChecks>false</suppressPomConsistencyChecks>
            <propertySets/>
            <snapshotVersionBehavior>non-unique</snapshotVersionBehavior>
            <localRepoChecksumPolicyType>client-checksums</localRepoChecksumPolicyType>
        </localRepository>
        <localRepository>
            <key>plugins-snapshots-local</key>
            <description>Local repository for plugins snapshots</description>
            <type>maven2</type>
            <includesPattern>**/*</includesPattern>
            <blackedOut>false</blackedOut>
            <handleReleases>false</handleReleases>
            <handleSnapshots>true</handleSnapshots>
            <maxUniqueSnapshots>0</maxUniqueSnapshots>
            <suppressPomConsistencyChecks>false</suppressPomConsistencyChecks>
            <propertySets/>
            <snapshotVersionBehavior>non-unique</snapshotVersionBehavior>
            <localRepoChecksumPolicyType>client-checksums</localRepoChecksumPolicyType>
        </localRepository>
        <localRepository>
            <key>ext-releases-local</key>
            <description>Local repository for third party libraries</description>
            <type>maven2</type>
            <includesPattern>**/*</includesPattern>
            <blackedOut>false</blackedOut>
            <handleReleases>true</handleReleases>
            <handleSnapshots>false</handleSnapshots>
            <maxUniqueSnapshots>0</maxUniqueSnapshots>
            <suppressPomConsistencyChecks>false</suppressPomConsistencyChecks>
            <propertySets/>
            <snapshotVersionBehavior>non-unique</snapshotVersionBehavior>
            <localRepoChecksumPolicyType>client-checksums</localRepoChecksumPolicyType>
        </localRepository>
        <localRepository>
            <key>ext-snapshots-local</key>
            <description>Local repository for third party snapshots</description>
            <type>maven2</type>
            <includesPattern>**/*</includesPattern>
            <blackedOut>false</blackedOut>
            <handleReleases>false</handleReleases>
            <handleSnapshots>true</handleSnapshots>
            <maxUniqueSnapshots>0</maxUniqueSnapshots>
            <suppressPomConsistencyChecks>false</suppressPomConsistencyChecks>
            <propertySets/>
            <snapshotVersionBehavior>non-unique</snapshotVersionBehavior>
            <localRepoChecksumPolicyType>client-checksums</localRepoChecksumPolicyType>
        </localRepository>
    </localRepositories>
    <remoteRepositories>
        <remoteRepository>
            <key>repo1</key>
            <description>Central Maven 2 repositoryyyyy</description>
            <type>maven2</type>
            <includesPattern>**/*</includesPattern>
            <blackedOut>false</blackedOut>
            <handleReleases>true</handleReleases>
            <handleSnapshots>false</handleSnapshots>
            <maxUniqueSnapshots>0</maxUniqueSnapshots>
            <suppressPomConsistencyChecks>false</suppressPomConsistencyChecks>
            <propertySets/>
            <url>http://repo1.maven.org/maven2</url>
            <offline>false</offline>
            <hardFail>false</hardFail>
            <storeArtifactsLocally>true</storeArtifactsLocally>
            <fetchJarsEagerly>false</fetchJarsEagerly>
            <fetchSourcesEagerly>false</fetchSourcesEagerly>
            <retrievalCachePeriodSecs>43200</retrievalCachePeriodSecs>
            <failedRetrievalCachePeriodSecs>30</failedRetrievalCachePeriodSecs>
            <missedRetrievalCachePeriodSecs>43200</missedRetrievalCachePeriodSecs>
            <remoteRepoChecksumPolicyType>generate-if-absent</remoteRepoChecksumPolicyType>
            <unusedArtifactsCleanupEnabled>false</unusedArtifactsCleanupEnabled>
            <unusedArtifactsCleanupPeriodHours>0</unusedArtifactsCleanupPeriodHours>
            <shareConfiguration>false</shareConfiguration>
            <synchronizeProperties>false</synchronizeProperties>
            <socketTimeoutMillis>15000</socketTimeoutMillis>
            <proxyRef>default-proxy</proxyRef>
        </remoteRepository>
        <remoteRepository>
            <key>java.net.m2</key>
            <description>java.net Maven2 Formatddddd</description>
            <type>maven2</type>
            <includesPattern>**/*</includesPattern>
            <excludesPattern>commons-*,org/apache/**</excludesPattern>
            <blackedOut>false</blackedOut>
            <handleReleases>true</handleReleases>
            <handleSnapshots>true</handleSnapshots>
            <maxUniqueSnapshots>0</maxUniqueSnapshots>
            <suppressPomConsistencyChecks>false</suppressPomConsistencyChecks>
            <propertySets/>
            <url>http://download.java.net/maven/2</url>
            <offline>false</offline>
            <hardFail>false</hardFail>
            <storeArtifactsLocally>false</storeArtifactsLocally>
            <fetchJarsEagerly>false</fetchJarsEagerly>
            <fetchSourcesEagerly>false</fetchSourcesEagerly>
            <retrievalCachePeriodSecs>43200</retrievalCachePeriodSecs>
            <failedRetrievalCachePeriodSecs>30</failedRetrievalCachePeriodSecs>
            <missedRetrievalCachePeriodSecs>43200</missedRetrievalCachePeriodSecs>
            <remoteRepoChecksumPolicyType>generate-if-absent</remoteRepoChecksumPolicyType>
            <unusedArtifactsCleanupEnabled>false</unusedArtifactsCleanupEnabled>
            <unusedArtifactsCleanupPeriodHours>0</unusedArtifactsCleanupPeriodHours>
            <shareConfiguration>false</shareConfiguration>
            <synchronizeProperties>false</synchronizeProperties>
            <socketTimeoutMillis>15000</socketTimeoutMillis>
            <proxyRef>default-proxy</proxyRef>
        </remoteRepository>
        <remoteRepository>
            <key>java.net.m1</key>
            <description>java.net Maven1 Format</description>
            <type>maven1</type>
            <includesPattern>**/*</includesPattern>
            <blackedOut>false</blackedOut>
            <handleReleases>true</handleReleases>
            <handleSnapshots>true</handleSnapshots>
            <maxUniqueSnapshots>0</maxUniqueSnapshots>
            <suppressPomConsistencyChecks>false</suppressPomConsistencyChecks>
            <propertySets/>
            <url>http://download.java.net/maven/1</url>
            <offline>false</offline>
            <hardFail>false</hardFail>
            <storeArtifactsLocally>true</storeArtifactsLocally>
            <fetchJarsEagerly>false</fetchJarsEagerly>
            <fetchSourcesEagerly>false</fetchSourcesEagerly>
            <retrievalCachePeriodSecs>43200</retrievalCachePeriodSecs>
            <failedRetrievalCachePeriodSecs>30</failedRetrievalCachePeriodSecs>
            <missedRetrievalCachePeriodSecs>43200</missedRetrievalCachePeriodSecs>
            <remoteRepoChecksumPolicyType>generate-if-absent</remoteRepoChecksumPolicyType>
            <unusedArtifactsCleanupEnabled>false</unusedArtifactsCleanupEnabled>
            <unusedArtifactsCleanupPeriodHours>0</unusedArtifactsCleanupPeriodHours>
            <shareConfiguration>false</shareConfiguration>
            <synchronizeProperties>false</synchronizeProperties>
            <socketTimeoutMillis>15000</socketTimeoutMillis>
            <proxyRef>default-proxy</proxyRef>
        </remoteRepository>
        <remoteRepository>
            <key>jfrog-libs</key>
            <description>JFrog libraries releases</description>
            <type>maven2</type>
            <includesPattern>**/*</includesPattern>
            <excludesPattern>org/apache/maven/**</excludesPattern>
            <blackedOut>false</blackedOut>
            <handleReleases>true</handleReleases>
            <handleSnapshots>false</handleSnapshots>
            <maxUniqueSnapshots>0</maxUniqueSnapshots>
            <suppressPomConsistencyChecks>false</suppressPomConsistencyChecks>
            <propertySets/>
            <url>http://repo.jfrog.org/artifactory/libs-releases-local</url>
            <offline>false</offline>
            <hardFail>false</hardFail>
            <storeArtifactsLocally>true</storeArtifactsLocally>
            <fetchJarsEagerly>false</fetchJarsEagerly>
            <fetchSourcesEagerly>false</fetchSourcesEagerly>
            <retrievalCachePeriodSecs>43200</retrievalCachePeriodSecs>
            <failedRetrievalCachePeriodSecs>30</failedRetrievalCachePeriodSecs>
            <missedRetrievalCachePeriodSecs>43200</missedRetrievalCachePeriodSecs>
            <remoteRepoChecksumPolicyType>generate-if-absent</remoteRepoChecksumPolicyType>
            <unusedArtifactsCleanupEnabled>false</unusedArtifactsCleanupEnabled>
            <unusedArtifactsCleanupPeriodHours>0</unusedArtifactsCleanupPeriodHours>
            <shareConfiguration>false</shareConfiguration>
            <synchronizeProperties>false</synchronizeProperties>
            <socketTimeoutMillis>15000</socketTimeoutMillis>
            <proxyRef>default-proxy</proxyRef>
        </remoteRepository>
        <remoteRepository>
            <key>jfrog-plugins</key>
            <description>JFrog plugins releases</description>
            <type>maven2</type>
            <includesPattern>org/jfrog/**</includesPattern>
            <blackedOut>false</blackedOut>
            <handleReleases>true</handleReleases>
            <handleSnapshots>false</handleSnapshots>
            <maxUniqueSnapshots>0</maxUniqueSnapshots>
            <suppressPomConsistencyChecks>false</suppressPomConsistencyChecks>
            <propertySets/>
            <url>http://repo.jfrog.org/artifactory/plugins-releases-local</url>
            <offline>false</offline>
            <hardFail>false</hardFail>
            <storeArtifactsLocally>true</storeArtifactsLocally>
            <fetchJarsEagerly>false</fetchJarsEagerly>
            <fetchSourcesEagerly>false</fetchSourcesEagerly>
            <retrievalCachePeriodSecs>43200</retrievalCachePeriodSecs>
            <failedRetrievalCachePeriodSecs>30</failedRetrievalCachePeriodSecs>
            <missedRetrievalCachePeriodSecs>43200</missedRetrievalCachePeriodSecs>
            <remoteRepoChecksumPolicyType>generate-if-absent</remoteRepoChecksumPolicyType>
            <unusedArtifactsCleanupEnabled>false</unusedArtifactsCleanupEnabled>
            <unusedArtifactsCleanupPeriodHours>0</unusedArtifactsCleanupPeriodHours>
            <shareConfiguration>false</shareConfiguration>
            <synchronizeProperties>false</synchronizeProperties>
            <socketTimeoutMillis>15000</socketTimeoutMillis>
            <proxyRef>default-proxy</proxyRef>
        </remoteRepository>
        <remoteRepository>
            <key>jboss</key>
            <description>JBoss Maven2 releases</description>
            <type>maven2</type>
            <includesPattern>org/jboss/**,org/hibernate/**,org/richfaces/**,org/drools/**</includesPattern>
            <blackedOut>false</blackedOut>
            <handleReleases>true</handleReleases>
            <handleSnapshots>false</handleSnapshots>
            <maxUniqueSnapshots>0</maxUniqueSnapshots>
            <suppressPomConsistencyChecks>false</suppressPomConsistencyChecks>
            <propertySets/>
            <url>http://repository.jboss.com/maven2</url>
            <offline>false</offline>
            <hardFail>false</hardFail>
            <storeArtifactsLocally>true</storeArtifactsLocally>
            <fetchJarsEagerly>false</fetchJarsEagerly>
            <fetchSourcesEagerly>false</fetchSourcesEagerly>
            <retrievalCachePeriodSecs>43200</retrievalCachePeriodSecs>
            <failedRetrievalCachePeriodSecs>30</failedRetrievalCachePeriodSecs>
            <missedRetrievalCachePeriodSecs>43200</missedRetrievalCachePeriodSecs>
            <remoteRepoChecksumPolicyType>generate-if-absent</remoteRepoChecksumPolicyType>
            <unusedArtifactsCleanupEnabled>false</unusedArtifactsCleanupEnabled>
            <unusedArtifactsCleanupPeriodHours>0</unusedArtifactsCleanupPeriodHours>
            <shareConfiguration>false</shareConfiguration>
            <synchronizeProperties>false</synchronizeProperties>
            <socketTimeoutMillis>15000</socketTimeoutMillis>
            <proxyRef>default-proxy</proxyRef>
        </remoteRepository>
        <remoteRepository>
            <key>codehaus</key>
            <description>Codehaus Maven2 releases</description>
            <type>maven2</type>
            <includesPattern>org/**,com/**,net/**</includesPattern>
            <excludesPattern>org/apache/**,commons-*,org/artifactory/**,org/jfrog/**</excludesPattern>
            <blackedOut>false</blackedOut>
            <handleReleases>true</handleReleases>
            <handleSnapshots>false</handleSnapshots>
            <maxUniqueSnapshots>0</maxUniqueSnapshots>
            <suppressPomConsistencyChecks>false</suppressPomConsistencyChecks>
            <propertySets/>
            <url>http://repository.codehaus.org</url>
            <offline>false</offline>
            <hardFail>false</hardFail>
            <storeArtifactsLocally>false</storeArtifactsLocally>
            <fetchJarsEagerly>false</fetchJarsEagerly>
            <fetchSourcesEagerly>false</fetchSourcesEagerly>
            <retrievalCachePeriodSecs>43200</retrievalCachePeriodSecs>
            <failedRetrievalCachePeriodSecs>30</failedRetrievalCachePeriodSecs>
            <missedRetrievalCachePeriodSecs>43200</missedRetrievalCachePeriodSecs>
            <remoteRepoChecksumPolicyType>generate-if-absent</remoteRepoChecksumPolicyType>
            <unusedArtifactsCleanupEnabled>false</unusedArtifactsCleanupEnabled>
            <unusedArtifactsCleanupPeriodHours>0</unusedArtifactsCleanupPeriodHours>
            <shareConfiguration>false</shareConfiguration>
            <synchronizeProperties>false</synchronizeProperties>
            <socketTimeoutMillis>15000</socketTimeoutMillis>
            <proxyRef>default-proxy</proxyRef>
        </remoteRepository>
        <remoteRepository>
            <key>spring-milestone</key>
            <description>SpringSource in milestone version</description>
            <type>maven2</type>
            <includesPattern>org/springframework/**</includesPattern>
            <blackedOut>false</blackedOut>
            <handleReleases>true</handleReleases>
            <handleSnapshots>false</handleSnapshots>
            <maxUniqueSnapshots>0</maxUniqueSnapshots>
            <suppressPomConsistencyChecks>false</suppressPomConsistencyChecks>
            <propertySets/>
            <url>http://maven.springframework.org/milestone</url>
            <offline>false</offline>
            <hardFail>false</hardFail>
            <storeArtifactsLocally>true</storeArtifactsLocally>
            <fetchJarsEagerly>false</fetchJarsEagerly>
            <fetchSourcesEagerly>false</fetchSourcesEagerly>
            <retrievalCachePeriodSecs>43200</retrievalCachePeriodSecs>
            <failedRetrievalCachePeriodSecs>30</failedRetrievalCachePeriodSecs>
            <missedRetrievalCachePeriodSecs>43200</missedRetrievalCachePeriodSecs>
            <remoteRepoChecksumPolicyType>generate-if-absent</remoteRepoChecksumPolicyType>
            <unusedArtifactsCleanupEnabled>false</unusedArtifactsCleanupEnabled>
            <unusedArtifactsCleanupPeriodHours>0</unusedArtifactsCleanupPeriodHours>
            <shareConfiguration>false</shareConfiguration>
            <synchronizeProperties>false</synchronizeProperties>
            <socketTimeoutMillis>15000</socketTimeoutMillis>
            <proxyRef>default-proxy</proxyRef>
        </remoteRepository>
        <remoteRepository>
            <key>spring-snapshots</key>
            <description>SpringSource in snapshot stage</description>
            <type>maven2</type>
            <includesPattern>org/springframework/**</includesPattern>
            <blackedOut>false</blackedOut>
            <handleReleases>false</handleReleases>
            <handleSnapshots>true</handleSnapshots>
            <maxUniqueSnapshots>0</maxUniqueSnapshots>
            <suppressPomConsistencyChecks>false</suppressPomConsistencyChecks>
            <propertySets/>
            <url>http://maven.springframework.org/snapshot</url>
            <offline>false</offline>
            <hardFail>false</hardFail>
            <storeArtifactsLocally>true</storeArtifactsLocally>
            <fetchJarsEagerly>false</fetchJarsEagerly>
            <fetchSourcesEagerly>false</fetchSourcesEagerly>
            <retrievalCachePeriodSecs>43200</retrievalCachePeriodSecs>
            <failedRetrievalCachePeriodSecs>30</failedRetrievalCachePeriodSecs>
            <missedRetrievalCachePeriodSecs>43200</missedRetrievalCachePeriodSecs>
            <remoteRepoChecksumPolicyType>generate-if-absent</remoteRepoChecksumPolicyType>
            <unusedArtifactsCleanupEnabled>false</unusedArtifactsCleanupEnabled>
            <unusedArtifactsCleanupPeriodHours>0</unusedArtifactsCleanupPeriodHours>
            <shareConfiguration>false</shareConfiguration>
            <synchronizeProperties>false</synchronizeProperties>
            <socketTimeoutMillis>15000</socketTimeoutMillis>
            <proxyRef>default-proxy</proxyRef>
        </remoteRepository>
        <remoteRepository>
            <key>spring-release</key>
            <description>SpringSource releases</description>
            <type>maven2</type>
            <includesPattern>org/springframework/**</includesPattern>
            <blackedOut>false</blackedOut>
            <handleReleases>true</handleReleases>
            <handleSnapshots>false</handleSnapshots>
            <maxUniqueSnapshots>0</maxUniqueSnapshots>
            <suppressPomConsistencyChecks>false</suppressPomConsistencyChecks>
            <propertySets/>
            <url>http://maven.springframework.org/release</url>
            <offline>false</offline>
            <hardFail>false</hardFail>
            <storeArtifactsLocally>true</storeArtifactsLocally>
            <fetchJarsEagerly>false</fetchJarsEagerly>
            <fetchSourcesEagerly>false</fetchSourcesEagerly>
            <retrievalCachePeriodSecs>43200</retrievalCachePeriodSecs>
            <failedRetrievalCachePeriodSecs>30</failedRetrievalCachePeriodSecs>
            <missedRetrievalCachePeriodSecs>43200</missedRetrievalCachePeriodSecs>
            <remoteRepoChecksumPolicyType>generate-if-absent</remoteRepoChecksumPolicyType>
            <unusedArtifactsCleanupEnabled>false</unusedArtifactsCleanupEnabled>
            <unusedArtifactsCleanupPeriodHours>0</unusedArtifactsCleanupPeriodHours>
            <shareConfiguration>false</shareConfiguration>
            <synchronizeProperties>false</synchronizeProperties>
            <socketTimeoutMillis>15000</socketTimeoutMillis>
            <proxyRef>default-proxy</proxyRef>
        </remoteRepository>
        <remoteRepository>
            <key>google-code</key>
            <description>Google's open source releases</description>
            <type>maven2</type>
            <includesPattern>com/google/**</includesPattern>
            <blackedOut>false</blackedOut>
            <handleReleases>true</handleReleases>
            <handleSnapshots>false</handleSnapshots>
            <maxUniqueSnapshots>0</maxUniqueSnapshots>
            <suppressPomConsistencyChecks>false</suppressPomConsistencyChecks>
            <propertySets/>
            <url>http://google-maven-repository.googlecode.com/svn/repository</url>
            <offline>false</offline>
            <hardFail>false</hardFail>
            <storeArtifactsLocally>true</storeArtifactsLocally>
            <fetchJarsEagerly>false</fetchJarsEagerly>
            <fetchSourcesEagerly>false</fetchSourcesEagerly>
            <retrievalCachePeriodSecs>43200</retrievalCachePeriodSecs>
            <failedRetrievalCachePeriodSecs>30</failedRetrievalCachePeriodSecs>
            <missedRetrievalCachePeriodSecs>43200</missedRetrievalCachePeriodSecs>
            <remoteRepoChecksumPolicyType>generate-if-absent</remoteRepoChecksumPolicyType>
            <unusedArtifactsCleanupEnabled>false</unusedArtifactsCleanupEnabled>
            <unusedArtifactsCleanupPeriodHours>0</unusedArtifactsCleanupPeriodHours>
            <shareConfiguration>false</shareConfiguration>
            <synchronizeProperties>false</synchronizeProperties>
            <socketTimeoutMillis>15000</socketTimeoutMillis>
            <proxyRef>default-proxy</proxyRef>
        </remoteRepository>
    </remoteRepositories>
    <virtualRepositories>
        <virtualRepository>
            <key>remote-repos</key>
            <type>maven2</type>
            <includesPattern>**/*</includesPattern>
            <artifactoryRequestsCanRetrieveRemoteArtifacts>true</artifactoryRequestsCanRetrieveRemoteArtifacts>
            <repositories>
                <repositoryRef>codehaus</repositoryRef>
                <repositoryRef>jboss</repositoryRef>
                <repositoryRef>java.net.m2</repositoryRef>
                <repositoryRef>java.net.m1</repositoryRef>
                <repositoryRef>repo1</repositoryRef>
                <repositoryRef>jfrog-libs</repositoryRef>
                <repositoryRef>jfrog-plugins</repositoryRef>
                <repositoryRef>spring-milestone</repositoryRef>
                <repositoryRef>spring-snapshots</repositoryRef>
                <repositoryRef>spring-release</repositoryRef>
                <repositoryRef>google-code</repositoryRef>
            </repositories>
            <pomRepositoryReferencesCleanupPolicy>discard_active_reference</pomRepositoryReferencesCleanupPolicy>
        </virtualRepository>
        <virtualRepository>
            <key>libs-releases</key>
            <type>maven2</type>
            <includesPattern>**/*</includesPattern>
            <artifactoryRequestsCanRetrieveRemoteArtifacts>false</artifactoryRequestsCanRetrieveRemoteArtifacts>
            <repositories>
                <repositoryRef>libs-releases-local</repositoryRef>
                <repositoryRef>ext-releases-local</repositoryRef>
                <repositoryRef>remote-repos</repositoryRef>
            </repositories>
            <pomRepositoryReferencesCleanupPolicy>discard_active_reference</pomRepositoryReferencesCleanupPolicy>
        </virtualRepository>
        <virtualRepository>
            <key>plugins-releases</key>
            <type>maven2</type>
            <includesPattern>**/*</includesPattern>
            <artifactoryRequestsCanRetrieveRemoteArtifacts>false</artifactoryRequestsCanRetrieveRemoteArtifacts>
            <repositories>
                <repositoryRef>plugins-releases-local</repositoryRef>
                <repositoryRef>ext-releases-local</repositoryRef>
                <repositoryRef>remote-repos</repositoryRef>
            </repositories>
            <pomRepositoryReferencesCleanupPolicy>discard_active_reference</pomRepositoryReferencesCleanupPolicy>
        </virtualRepository>
        <virtualRepository>
            <key>libs-snapshots</key>
            <type>maven2</type>
            <includesPattern>**/*</includesPattern>
            <artifactoryRequestsCanRetrieveRemoteArtifacts>false</artifactoryRequestsCanRetrieveRemoteArtifacts>
            <repositories>
                <repositoryRef>libs-snapshots-local</repositoryRef>
                <repositoryRef>ext-snapshots-local</repositoryRef>
                <repositoryRef>remote-repos</repositoryRef>
            </repositories>
            <pomRepositoryReferencesCleanupPolicy>discard_active_reference</pomRepositoryReferencesCleanupPolicy>
        </virtualRepository>
        <virtualRepository>
            <key>plugins-snapshots</key>
            <type>maven2</type>
            <includesPattern>**/*</includesPattern>
            <artifactoryRequestsCanRetrieveRemoteArtifacts>false</artifactoryRequestsCanRetrieveRemoteArtifacts>
            <repositories>
                <repositoryRef>plugins-snapshots-local</repositoryRef>
                <repositoryRef>ext-snapshots-local</repositoryRef>
                <repositoryRef>remote-repos</repositoryRef>
            </repositories>
            <pomRepositoryReferencesCleanupPolicy>discard_active_reference</pomRepositoryReferencesCleanupPolicy>
        </virtualRepository>
    </virtualRepositories>
    <proxies>
        <proxy>
            <key>default-proxy</key>
            <host>proxy...</host>
            <port>3128</port>
            <username>***</username>
            <password>***</password>
            <defaultProxy>true</defaultProxy>
        </proxy>
    </proxies>
    <propertySets/>
</config>