]> source.dussan.org Git - archiva.git/blob
d77b8453a5505df27ba8e250018d097c2b114352
[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   <alias name="managedRepositoryContent#maven" alias="managedRepositoryContent#default" />
38   <alias name="remoteRepositoryContent#maven" alias="remoteRepositoryContent#default" />
39
40   <bean name="scheduler" class="org.apache.archiva.redback.components.scheduler.DefaultScheduler">
41     <property name="properties">
42       <props>
43         <prop key="org.quartz.scheduler.instanceName">scheduler1</prop>
44         <prop key="org.quartz.threadPool.class">org.quartz.simpl.SimpleThreadPool</prop>
45         <prop key="org.quartz.threadPool.threadCount">2</prop>
46         <prop key="org.quartz.threadPool.threadPriority">4</prop>
47         <prop key="org.quartz.jobStore.class">org.quartz.simpl.RAMJobStore</prop>
48       </props>
49     </property>
50   </bean>
51
52   <!-- wire up more basic configuration so it doesn't overwrite any config files -->
53   <bean name="archivaConfiguration#default" class="org.apache.archiva.configuration.DefaultArchivaConfiguration">
54     <property name="registry" ref="registry#default"/>
55   </bean>
56
57   <alias name="archivaConfiguration#default" alias="archivaConfiguration"/>
58
59   <bean name="registry#default" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
60     <property name="properties">
61       <value>
62         <![CDATA[
63         <configuration>
64           <system/>
65           <xml fileName="${appserver.base}/conf/archiva.xml" config-forceCreate="true"
66                config-optional="true"
67                config-name="org.apache.archiva.base" config-at="org.apache.archiva"/>
68         </configuration>
69         ]]>
70       </value>
71     </property>
72   </bean>
73
74   <bean name="taskQueueExecutor#repository-scanning"
75         class="org.apache.archiva.redback.components.taskqueue.execution.ThreadedTaskQueueExecutor" lazy-init="false">
76     <property name="name" value="repository-scanning"/>
77     <property name="executor" ref="taskExecutor#repository-scanning"/>
78     <property name="queue" ref="taskQueue#repository-scanning"/>
79   </bean>
80
81   <!--
82   <bean id="repository" class="org.apache.jackrabbit.core.RepositoryImpl" destroy-method="shutdown">
83     <constructor-arg ref="config"/>
84   </bean>
85
86   <bean id="config" class="org.apache.jackrabbit.core.config.RepositoryConfig" factory-method="create">
87     <constructor-arg value="${basedir}/src/test/repository.xml"/>
88     <constructor-arg value="${appserver.base}/jcr"/>
89   </bean>
90   -->
91
92   <bean name="commons-configuration" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry"
93         init-method="initialize">
94     <property name="properties">
95       <value>
96         <![CDATA[
97         <configuration>
98           <system/>
99           <properties fileName="${basedir}/src/test/resources/security.properties" config-optional="true"
100                       config-at="org.apache.archiva.redback"/>
101         </configuration>
102         ]]>
103       </value>
104     </property>
105   </bean>
106
107   <alias name="userConfiguration#redback" alias="userConfiguration#default"/>
108
109   <alias name="authorizer#rbac" alias="authorizer#default"/>
110
111   <alias name="userManager#configurable" alias="userManager#default"/>
112
113   <!-- ***
114  JPA settings
115  *** -->
116   <bean name="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
117     <property name="jpaVendorAdapter" >
118       <bean class="org.springframework.orm.jpa.vendor.OpenJpaVendorAdapter" />
119     </property>
120     <property name="persistenceXmlLocation" value="classpath:META-INF/persistence-hsqldb.xml" />
121     <property name="jpaPropertyMap">
122       <map>
123         <entry key="openjpa.ConnectionURL" value="jdbc:hsqldb:mem:redback_database" />
124         <entry key="openjpa.ConnectionDriverName" value="org.hsqldb.jdbcDriver" />
125         <entry key="openjpa.ConnectionUserName" value="sa" />
126         <entry key="openjpa.ConnectionPassword" value="" />
127         <entry key="openjpa.Log" value="${openjpa.Log:DefaultLevel=INFO,Runtime=ERROR,Tool=ERROR,SQL=ERROR,Schema=ERROR,MetaData=ERROR}" />
128         <entry key="openjpa.jdbc.SynchronizeMappings" value="buildSchema(ForeignKeys=true)" />
129         <entry key="openjpa.jdbc.MappingDefaults"
130                value="ForeignKeyDeleteAction=restrict,JoinForeignKeyDeleteAction=restrict"/>
131       </map>
132     </property>
133
134   </bean>
135
136   <bean name="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager" >
137     <property name="entityManagerFactory" ref="entityManagerFactory" />
138   </bean>
139
140   <tx:annotation-driven />
141   <!-- ***
142      End of JPA settings
143      *** -->
144 </beans>