]> source.dussan.org Git - archiva.git/blob
4ed2e8a6104058eccb7a257d63d16ed5902c6860
[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: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
30             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,org.apache.archiva.repository.content.maven2"/>
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.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   <!--
79   <bean id="repository" class="org.apache.jackrabbit.core.RepositoryImpl" destroy-method="shutdown">
80     <constructor-arg ref="config"/>
81   </bean>
82
83   <bean id="config" class="org.apache.jackrabbit.core.config.RepositoryConfig" factory-method="create">
84     <constructor-arg value="${basedir}/src/test/repository.xml"/>
85     <constructor-arg value="${appserver.base}/jcr"/>
86   </bean>
87   -->
88
89   <bean name="commons-configuration" class="org.apache.archiva.components.registry.commons.CommonsConfigurationRegistry"
90         init-method="initialize">
91     <property name="properties">
92       <value>
93         <![CDATA[
94         <configuration>
95           <system/>
96           <properties fileName="${basedir}/src/test/resources/security.properties" config-optional="true"
97                       config-at="org.apache.archiva.redback"/>
98         </configuration>
99         ]]>
100       </value>
101     </property>
102   </bean>
103
104   <alias name="userConfiguration#redback" alias="userConfiguration#default"/>
105
106   <alias name="authorizer#rbac" alias="authorizer#default"/>
107
108   <alias name="userManager#configurable" alias="userManager#default"/>
109
110   <!-- ***
111  JPA settings
112  *** -->
113   <bean name="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
114     <property name="jpaVendorAdapter" >
115       <bean class="org.springframework.orm.jpa.vendor.OpenJpaVendorAdapter" />
116     </property>
117     <property name="persistenceXmlLocation" value="classpath:META-INF/persistence-hsqldb.xml" />
118     <property name="jpaPropertyMap">
119       <map>
120         <entry key="openjpa.ConnectionURL" value="jdbc:hsqldb:mem:redback_database" />
121         <entry key="openjpa.ConnectionDriverName" value="org.hsqldb.jdbcDriver" />
122         <entry key="openjpa.ConnectionUserName" value="sa" />
123         <entry key="openjpa.ConnectionPassword" value="" />
124         <entry key="openjpa.Log" value="${openjpa.Log:DefaultLevel=INFO,Runtime=ERROR,Tool=ERROR,SQL=ERROR,Schema=ERROR,MetaData=ERROR}" />
125         <entry key="openjpa.jdbc.SynchronizeMappings" value="buildSchema(ForeignKeys=true)" />
126         <entry key="openjpa.jdbc.MappingDefaults"
127                value="ForeignKeyDeleteAction=restrict,JoinForeignKeyDeleteAction=restrict"/>
128       </map>
129     </property>
130
131   </bean>
132
133   <bean name="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager" >
134     <property name="entityManagerFactory" ref="entityManagerFactory" />
135   </bean>
136
137   <tx:annotation-driven />
138   <!-- ***
139      End of JPA settings
140      *** -->
141 </beans>