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
12 ~ http://www.apache.org/licenses/LICENSE-2.0
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
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">
33 <context:annotation-config/>
34 <context:component-scan
35 base-package="org.apache.archiva.redback.keys,org.apache.archiva.rest.services.utils"/>
37 <bean name="scheduler" class="org.apache.archiva.redback.components.scheduler.DefaultScheduler">
38 <property name="properties">
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>
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"/>
54 <alias name="archivaConfiguration#default" alias="archivaConfiguration"/>
56 <bean name="registry#default" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry">
57 <property name="properties">
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"/>
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"/>
78 <bean id="repository" class="org.apache.jackrabbit.core.RepositoryImpl" destroy-method="shutdown">
79 <constructor-arg ref="config"/>
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"/>
87 <bean name="commons-configuration" class="org.apache.archiva.redback.components.registry.commons.CommonsConfigurationRegistry"
88 init-method="initialize">
89 <property name="properties">
94 <properties fileName="${basedir}/src/test/resources/security.properties" config-optional="true"
95 config-at="org.apache.archiva.redback"/>
102 <alias name="userConfiguration#redback" alias="userConfiguration#default"/>
104 <alias name="authorizer#rbac" alias="authorizer#default"/>
106 <alias name="userManager#configurable" alias="userManager#default"/>
111 <bean name="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
112 <property name="jpaVendorAdapter" >
113 <bean class="org.springframework.orm.jpa.vendor.OpenJpaVendorAdapter" />
115 <property name="persistenceXmlLocation" value="classpath:META-INF/persistence-hsqldb.xml" />
116 <property name="jpaPropertyMap">
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"/>
131 <bean name="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager" >
132 <property name="entityManagerFactory" ref="entityManagerFactory" />
135 <tx:annotation-driven />