]> source.dussan.org Git - archiva.git/blob
49c0748e1e5c6020e6216ce838fd208260897e6c
[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"
24        xmlns:jaxrs="http://cxf.apache.org/jaxrs" xmlns:tx="http://www.springframework.org/schema/tx"
25        xsi:schemaLocation="http://www.springframework.org/schema/beans
26            http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
27            http://www.springframework.org/schema/context
28            http://www.springframework.org/schema/context/spring-context-3.0.xsd
29            http://cxf.apache.org/jaxrs
30            http://cxf.apache.org/schemas/jaxrs.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd"
31        default-lazy-init="true">
32
33   <context:annotation-config/>
34   <context:component-scan
35       base-package="org.apache.archiva.redback.keys,org.apache.archiva.rest.services.utils"/>
36
37   <bean name="scheduler" class="org.apache.archiva.redback.components.scheduler.DefaultScheduler">
38     <property name="properties">
39       <props>
40         <prop key="org.quartz.scheduler.instanceName">scheduler1</prop>
41         <prop key="org.quartz.threadPool.class">org.quartz.simpl.SimpleThreadPool</prop>
42         <prop key="org.quartz.threadPool.threadCount">2</prop>
43         <prop key="org.quartz.threadPool.threadPriority">4</prop>
44         <prop key="org.quartz.jobStore.class">org.quartz.simpl.RAMJobStore</prop>
45       </props>
46     </property>
47   </bean>
48
49   <!-- wire up more basic configuration so it doesn't overwrite any config files -->
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="${appserver.base}/conf/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="taskQueueExecutor#repository-scanning"
72         class="org.apache.archiva.redback.components.taskqueue.execution.ThreadedTaskQueueExecutor" lazy-init="false">
73     <property name="name" value="repository-scanning"/>
74     <property name="executor" ref="taskExecutor#repository-scanning"/>
75     <property name="queue" ref="taskQueue#repository-scanning"/>
76   </bean>
77
78   <bean id="repository" class="org.apache.jackrabbit.core.RepositoryImpl" destroy-method="shutdown">
79     <constructor-arg ref="config"/>
80   </bean>
81
82   <bean id="config" class="org.apache.jackrabbit.core.config.RepositoryConfig" factory-method="create">
83     <constructor-arg value="${basedir}/src/test/repository.xml"/>
84     <constructor-arg value="${appserver.base}/jcr"/>
85   </bean>
86
87   <bean name="commons-configuration" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry"
88         init-method="initialize">
89     <property name="properties">
90       <value>
91         <![CDATA[
92         <configuration>
93           <system/>
94           <properties fileName="${basedir}/src/test/resources/security.properties" config-optional="true"
95                       config-at="org.apache.archiva.redback"/>
96         </configuration>
97         ]]>
98       </value>
99     </property>
100   </bean>
101
102   <alias name="userConfiguration#redback" alias="userConfiguration#default"/>
103
104   <alias name="authorizer#rbac" alias="authorizer#default"/>
105
106   <alias name="userManager#configurable" alias="userManager#default"/>
107
108   <!-- ***
109  JPA settings
110  *** -->
111   <bean name="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
112     <property name="jpaVendorAdapter" >
113       <bean class="org.springframework.orm.jpa.vendor.OpenJpaVendorAdapter" />
114     </property>
115     <property name="persistenceXmlLocation" value="classpath:META-INF/persistence-hsqldb.xml" />
116     <property name="jpaPropertyMap">
117       <map>
118         <entry key="openjpa.ConnectionURL" value="jdbc:hsqldb:mem:redback_database" />
119         <entry key="openjpa.ConnectionDriverName" value="org.hsqldb.jdbcDriver" />
120         <entry key="openjpa.ConnectionUserName" value="sa" />
121         <entry key="openjpa.ConnectionPassword" value="" />
122         <entry key="openjpa.Log" value="${openjpa.Log:DefaultLevel=INFO,Runtime=ERROR,Tool=ERROR,SQL=ERROR,Schema=ERROR,MetaData=ERROR}" />
123         <entry key="openjpa.jdbc.SynchronizeMappings" value="buildSchema(ForeignKeys=true)" />
124         <entry key="openjpa.jdbc.MappingDefaults"
125                value="ForeignKeyDeleteAction=restrict,JoinForeignKeyDeleteAction=restrict"/>
126       </map>
127     </property>
128
129   </bean>
130
131   <bean name="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager" >
132     <property name="entityManagerFactory" ref="entityManagerFactory" />
133   </bean>
134
135   <tx:annotation-driven />
136   <!-- ***
137      End of JPA settings
138      *** -->
139 </beans>