]> source.dussan.org Git - archiva.git/blob
e73c0f41f0f7f708ee3f620e7f44c7ecc023ed1a
[archiva.git] /
1 <?xml version="1.0" encoding="ISO-8859-1"?>
2 <!--
3   ~ Licensed to the Apache Software Foundation (ASF) under one
4   ~ or more contributor license agreements.  See the NOTICE file
5   ~ distributed with this work for additional information
6   ~ regarding copyright ownership.  The ASF licenses this file
7   ~ to you under the Apache License, Version 2.0 (the
8   ~ "License"); you may not use this file except in compliance
9   ~ with the License.  You may obtain a copy of the License at
10   ~
11   ~  http://www.apache.org/licenses/LICENSE-2.0
12   ~
13   ~ Unless required by applicable law or agreed to in writing,
14   ~ software distributed under the License is distributed on an
15   ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16   ~ KIND, either express or implied.  See the License for the
17   ~ specific language governing permissions and limitations
18   ~ under the License.
19   -->
20
21 <plexus>
22   <components>
23     <!--
24      | Configuration
25      -->
26     <component>
27       <role>org.apache.maven.archiva.configuration.ArchivaConfiguration</role>
28       <implementation>org.apache.maven.archiva.configuration.DefaultArchivaConfiguration</implementation>
29       <requirements>
30         <requirement>
31           <role>org.codehaus.plexus.registry.Registry</role>
32           <role-hint>configured</role-hint>
33         </requirement>
34         <requirement>
35           <role>org.apache.maven.archiva.policies.PreDownloadPolicy</role>
36           <field-name>prePolicies</field-name>
37         </requirement>
38         <requirement>
39           <role>org.apache.maven.archiva.policies.PostDownloadPolicy</role>
40           <field-name>postPolicies</field-name>
41         </requirement>
42       </requirements>
43     </component>
44     <component>
45       <role>org.codehaus.plexus.registry.Registry</role>
46       <role-hint>configured</role-hint>
47       <implementation>org.codehaus.plexus.registry.commons.CommonsConfigurationRegistry</implementation>
48       <configuration>
49         <properties>
50           <system/>
51           <xml fileName="${appserver.base}/conf/archiva.xml"
52                config-name="org.apache.maven.archiva.base" config-at="org.apache.maven.archiva"/>
53         </properties>
54       </configuration>
55     </component>
56     
57     <component>
58       <role>org.apache.maven.archiva.webdav.DavServerManager</role>
59       <role-hint>default</role-hint>
60       <implementation>org.apache.maven.archiva.webdav.DefaultDavServerManager</implementation>
61       <description>DefaultDavServerManager</description>
62       <requirements>
63         <requirement>
64           <role>org.apache.maven.archiva.webdav.DavServerComponent</role>
65           <role-hint>proxied</role-hint>
66         </requirement>
67       </requirements>
68     </component>
69     
70     <component>
71       <role>org.codehaus.plexus.cache.Cache</role>
72       <role-hint>url-failures-cache</role-hint>
73       <implementation>org.codehaus.plexus.cache.ehcache.EhcacheCache</implementation>
74       <description>URL Failure Cache</description>
75       <configuration>
76         <disk-expiry-thread-interval-seconds>600</disk-expiry-thread-interval-seconds>
77         <disk-persistent>false</disk-persistent> <!--disabling disk persistence for unit testing. -->
78         <disk-store-path>${java.io.tmpdir}/archiva/urlcache</disk-store-path>
79         <eternal>false</eternal>
80         <max-elements-in-memory>1000</max-elements-in-memory>
81         <memory-eviction-policy>LRU</memory-eviction-policy>
82         <name>url-failures-cache</name>
83         <overflow-to-disk>false</overflow-to-disk>
84         <!-- 45 minutes = 2700 seconds -->
85         <time-to-idle-seconds>2700</time-to-idle-seconds>
86         <!-- 30 minutes = 1800 seconds  -->
87         <time-to-live-seconds>1800</time-to-live-seconds>
88       </configuration>
89     </component>
90     
91     <component>
92       <role>org.codehaus.plexus.redback.system.SecuritySystem</role>
93       <role-hint>default</role-hint>
94       <implementation>org.apache.maven.archiva.webdav.BypassSecuritySystem</implementation>
95     </component>
96         
97         <component>
98       <role>org.apache.maven.archiva.webdav.ArchivaDavResourceFactory</role>
99       <implementation>org.apache.maven.archiva.webdav.UnauthenticatedDavResourceFactory</implementation>
100       <requirements>
101         <requirement>
102           <role>org.apache.maven.archiva.configuration.ArchivaConfiguration</role>
103           <field-name>archivaConfiguration</field-name>
104         </requirement>
105         <requirement>
106           <role>org.apache.maven.archiva.repository.RepositoryContentFactory</role>
107           <field-name>repositoryFactory</field-name>
108         </requirement>        
109         <requirement>
110           <role>org.apache.maven.archiva.repository.content.RepositoryRequest</role>
111           <field-name>repositoryRequest</field-name>
112         </requirement>
113         <requirement>
114           <role>org.apache.maven.archiva.proxy.RepositoryProxyConnectors</role>
115           <field-name>connectors</field-name>
116         </requirement>
117         <requirement>
118           <role>org.apache.maven.archiva.repository.metadata.MetadataTools</role>
119           <field-name>metadataTools</field-name>
120         </requirement>
121         <requirement>
122           <role>org.apache.maven.archiva.security.ServletAuthenticator</role>
123           <field-name>servletAuth</field-name>
124         </requirement>
125         <requirement>
126           <role>org.apache.maven.archiva.webdav.util.MimeTypes</role>
127           <field-name>mimeTypes</field-name>
128         </requirement>
129         <requirement>
130           <role>org.codehaus.plexus.redback.struts2.filter.authentication.HttpAuthenticator</role>
131           <role-hint>basic</role-hint>
132           <field-name>httpAuth</field-name>
133         </requirement>
134         <requirement>
135           <role>org.apache.maven.archiva.repository.scanner.RepositoryContentConsumers</role>
136           <role-hint>default</role-hint>
137         </requirement>
138         <requirement>
139           <role>org.codehaus.plexus.digest.ChecksumFile</role>
140           <field-name>checksum</field-name>
141         </requirement>
142         <requirement>
143           <role>org.codehaus.plexus.digest.Digester</role>
144           <role-hint>sha1</role-hint>
145           <field-name>digestSha1</field-name>
146         </requirement>
147         <requirement>
148           <role>org.codehaus.plexus.digest.Digester</role>
149           <role-hint>md5</role-hint>
150           <field-name>digestMd5</field-name>
151         </requirement>
152       </requirements>
153     </component>
154   </components>
155 </plexus>