]> source.dussan.org Git - archiva.git/blob
9f38b827d6fff943bcf1b346b391660ecad59346
[archiva.git] /
1 <?xml version="1.0"?>
2
3 <!--
4   ~ Licensed to the Apache Software Foundation (ASF) under one
5   ~ or more contributor license agreements.  See the NOTICE file
6   ~ distributed with this work for additional information
7   ~ regarding copyright ownership.  The ASF licenses this file
8   ~ to you under the Apache License, Version 2.0 (the
9   ~ "License"); you may not use this file except in compliance
10   ~ with the License.  You may obtain a copy of the License at
11   ~
12   ~   http://www.apache.org/licenses/LICENSE-2.0
13   ~
14   ~ Unless required by applicable law or agreed to in writing,
15   ~ software distributed under the License is distributed on an
16   ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   ~ KIND, either express or implied.  See the License for the
18   ~ specific language governing permissions and limitations
19   ~ under the License.
20   -->
21 <beans xmlns="http://www.springframework.org/schema/beans"
22        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23        xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
24        xsi:schemaLocation="http://www.springframework.org/schema/beans
25            http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
26            http://www.springframework.org/schema/context 
27            http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd"
28        default-lazy-init="true">
29
30   <context:property-placeholder system-properties-mode="OVERRIDE"/>
31
32   <context:annotation-config/>
33   <context:component-scan
34       base-package="org.apache.archiva.redback.keys,org.apache.archiva.webdav,org.apache.archiva.metadata.repository,org.apache.archiva.webdav.util,org.apache.archiva.common.plexusbridge"/>
35
36   <bean name="scheduler" class="org.apache.archiva.redback.components.scheduler.DefaultScheduler">
37     <property name="properties">
38       <props>
39         <prop key="org.quartz.scheduler.instanceName">scheduler1</prop>
40         <prop key="org.quartz.threadPool.class">org.quartz.simpl.SimpleThreadPool</prop>
41         <prop key="org.quartz.threadPool.threadCount">1</prop>
42         <prop key="org.quartz.threadPool.threadPriority">4</prop>
43         <prop key="org.quartz.jobStore.class">org.quartz.simpl.RAMJobStore</prop>
44       </props>
45     </property>
46   </bean>
47
48   <bean name="servletAuthenticator" class="org.apache.archiva.webdav.MockServletAuthenticator"/>
49
50   <bean name="archivaConfiguration#default" class="org.apache.archiva.configuration.DefaultArchivaConfiguration">
51     <property name="registry" ref="registry#default"/>
52   </bean>
53
54   <alias name="archivaConfiguration#default" alias="archivaConfiguration"/>
55
56   <bean name="registry#default" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
57     <property name="properties">
58       <value>
59         <![CDATA[
60         <configuration>
61           <system/>
62           <xml fileName="${test.resources.path}/repository-archiva.xml" config-forceCreate="true"
63                config-optional="true"
64                config-name="org.apache.archiva.base" config-at="org.apache.archiva"/>
65         </configuration>
66         ]]>
67       </value>
68     </property>
69   </bean>
70   <!--
71   <bean name="davResourceFactory#archiva" class="org.apache.archiva.webdav.UnauthenticatedDavResourceFactory">
72     <property name="servletAuth" ref="servletAuthenticator"/>
73   </bean>
74   -->
75   <alias name="userConfiguration#redback" alias="userConfiguration#default"/>
76   <alias name="authorizer#rbac" alias="authorizer#default"/>
77   <alias name="userManager#configurable" alias="userManager#default"/>
78
79   <!-- ***
80    JPA settings
81    *** -->
82   <bean name="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
83     <property name="jpaVendorAdapter" >
84       <bean class="org.springframework.orm.jpa.vendor.OpenJpaVendorAdapter" />
85     </property>
86     <property name="persistenceXmlLocation" value="classpath:META-INF/persistence-hsqldb.xml" />
87     <property name="jpaPropertyMap">
88       <map>
89         <entry key="openjpa.ConnectionURL" value="jdbc:hsqldb:mem:redback_database" />
90         <entry key="openjpa.ConnectionDriverName" value="org.hsqldb.jdbcDriver" />
91         <entry key="openjpa.ConnectionUserName" value="sa" />
92         <entry key="openjpa.ConnectionPassword" value="" />
93         <entry key="openjpa.Log" value="${openjpa.Log:DefaultLevel=INFO,Runtime=ERROR,Tool=ERROR,SQL=ERROR,Schema=ERROR,MetaData=ERROR}" />
94         <entry key="openjpa.jdbc.SynchronizeMappings" value="buildSchema(ForeignKeys=true)" />
95         <entry key="openjpa.jdbc.MappingDefaults"
96                value="ForeignKeyDeleteAction=restrict,JoinForeignKeyDeleteAction=restrict"/>
97       </map>
98     </property>
99
100   </bean>
101
102   <bean name="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager" >
103     <property name="entityManagerFactory" ref="entityManagerFactory" />
104   </bean>
105
106   <tx:annotation-driven />
107   <!-- ***
108      End of JPA settings
109      *** -->
110 </beans>