]> source.dussan.org Git - archiva.git/blob
6830d1ee46c4fd5935d50e29a30370a0eb88094f
[archiva.git] /
1 <!--
2   ~ Licensed to the Apache Software Foundation (ASF) under one
3   ~ or more contributor license agreements.  See the NOTICE file
4   ~ distributed with this work for additional information
5   ~ regarding copyright ownership.  The ASF licenses this file
6   ~ to you under the Apache License, Version 2.0 (the
7   ~ "License"); you may not use this file except in compliance
8   ~ with the License.  You may obtain a copy of the License at
9   ~
10   ~   http://www.apache.org/licenses/LICENSE-2.0
11   ~
12   ~ Unless required by applicable law or agreed to in writing,
13   ~ software distributed under the License is distributed on an
14   ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   ~ KIND, either express or implied.  See the License for the
16   ~ specific language governing permissions and limitations
17   ~ under the License.
18   -->
19
20 <component-set>
21   <components>
22     <component>
23       <role>org.apache.maven.wagon.Wagon</role>
24       <role-hint>test</role-hint>
25       <implementation>org.apache.maven.archiva.proxy.WagonDelegate</implementation>
26     </component>
27     <component>
28       <role>org.apache.maven.archiva.configuration.ArchivaConfiguration</role>
29       <role-hint>mock</role-hint>
30       <implementation>org.apache.maven.archiva.proxy.MockConfiguration</implementation>
31     </component>
32
33     <component>
34       <role>org.apache.maven.archiva.repository.RepositoryContentFactory</role>
35       <role-hint>mocked</role-hint>
36       <implementation>org.apache.maven.archiva.repository.RepositoryContentFactory</implementation>
37       <description>RepositoryContentRequest</description>
38       <requirements>
39         <requirement>
40           <role>org.apache.maven.archiva.configuration.ArchivaConfiguration</role>
41           <role-hint>mock</role-hint>
42           <field-name>archivaConfiguration</field-name>
43         </requirement>
44       </requirements>
45     </component>
46
47
48     <component>
49       <role>org.apache.maven.archiva.repository.metadata.MetadataTools</role>
50       <implementation>org.apache.maven.archiva.repository.metadata.MetadataTools</implementation>
51       <description>MetadataTools</description>
52       <requirements>
53         <requirement>
54           <role>org.apache.maven.archiva.configuration.FileTypes</role>
55           <field-name>filetypes</field-name>
56         </requirement>
57         <requirement>
58           <role>org.apache.maven.archiva.configuration.ArchivaConfiguration</role>
59           <role-hint>mock</role-hint>
60           <field-name>configuration</field-name>
61         </requirement>
62       </requirements>
63     </component>
64
65     <component>
66       <role>org.apache.maven.archiva.proxy.RepositoryProxyConnectors</role>
67       <role-hint>default</role-hint>
68       <implementation>org.apache.maven.archiva.proxy.DefaultRepositoryProxyConnectors</implementation>
69       <description>DefaultRepositoryProxyConnectors</description>
70       <requirements>
71         <requirement>
72           <role>org.apache.maven.archiva.configuration.ArchivaConfiguration</role>
73           <role-hint>mock</role-hint>
74           <field-name>archivaConfiguration</field-name>
75         </requirement>
76         <requirement>
77           <role>org.apache.maven.archiva.proxy.WagonFactory</role>
78         </requirement>
79         <requirement>
80           <role>org.apache.maven.archiva.repository.RepositoryContentFactory</role>
81           <role-hint>mocked</role-hint>
82         </requirement>
83         <requirement>
84           <role>org.apache.maven.archiva.repository.metadata.MetadataTools</role>
85         </requirement>
86         <requirement>
87           <role>org.apache.maven.archiva.policies.PreDownloadPolicy</role>
88           <field-name>preDownloadPolicies</field-name>
89         </requirement>
90         <requirement>
91           <role>org.apache.maven.archiva.policies.PostDownloadPolicy</role>
92           <field-name>postDownloadPolicies</field-name>
93         </requirement>
94         <requirement>
95           <role>org.apache.maven.archiva.policies.urlcache.UrlFailureCache</role>
96           <field-name>urlFailureCache</field-name>
97         </requirement>
98         <requirement>
99           <role>org.apache.archiva.scheduler.ArchivaTaskScheduler</role>
100           <role-hint>repository</role-hint>
101           <field-name>scheduler</field-name>
102         </requirement>
103       </requirements>
104     </component>
105
106     <component>
107       <role>org.codehaus.plexus.cache.Cache</role>
108       <role-hint>url-failures-cache</role-hint>
109       <implementation>org.codehaus.plexus.cache.ehcache.EhcacheCache</implementation>
110       <description>URL Failure Cache</description>
111       <configuration>
112         <disk-expiry-thread-interval-seconds>600</disk-expiry-thread-interval-seconds>
113         <disk-persistent>false</disk-persistent> <!--disabling disk persistence for unit testing. -->
114         <disk-store-path>${java.io.tmpdir}/archiva/urlcache</disk-store-path>
115         <eternal>false</eternal>
116         <max-elements-in-memory>1000</max-elements-in-memory>
117         <memory-eviction-policy>LRU</memory-eviction-policy>
118         <name>url-failures-cache</name>
119         <overflow-to-disk>false</overflow-to-disk>
120         <!-- 45 minutes = 2700 seconds -->
121         <time-to-idle-seconds>2700</time-to-idle-seconds>
122         <!-- 30 minutes = 1800 seconds  -->
123         <time-to-live-seconds>1800</time-to-live-seconds>
124       </configuration>
125     </component>
126
127     <component>
128       <role>org.apache.archiva.metadata.repository.MetadataRepository</role>
129       <implementation>org.apache.archiva.metadata.repository.TestMetadataRepository</implementation>
130     </component>
131   </components>
132 </component-set>