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" 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">
30 <context:property-placeholder system-properties-mode="OVERRIDE"/>
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"/>
36 <bean name="scheduler" class="org.apache.archiva.redback.components.scheduler.DefaultScheduler">
37 <property name="properties">
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>
48 <bean name="servletAuthenticator" class="org.apache.archiva.webdav.MockServletAuthenticator"/>
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="${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"/>
71 <bean name="davResourceFactory#archiva" class="org.apache.archiva.webdav.UnauthenticatedDavResourceFactory">
72 <property name="servletAuth" ref="servletAuthenticator"/>
75 <alias name="userConfiguration#redback" alias="userConfiguration#default"/>
76 <alias name="authorizer#rbac" alias="authorizer#default"/>
77 <alias name="userManager#configurable" alias="userManager#default"/>
82 <bean name="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
83 <property name="jpaVendorAdapter" >
84 <bean class="org.springframework.orm.jpa.vendor.OpenJpaVendorAdapter" />
86 <property name="persistenceXmlLocation" value="classpath:META-INF/persistence-hsqldb.xml" />
87 <property name="jpaPropertyMap">
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"/>
102 <bean name="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager" >
103 <property name="entityManagerFactory" ref="entityManagerFactory" />
106 <tx:annotation-driven />