]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.launcher/src/main/resources/org/argeo/slc/cli/spring.xml
Restructure HTTP service client
[gpl/argeo-slc.git] / runtime / org.argeo.slc.launcher / src / main / resources / org / argeo / slc / cli / spring.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <beans xmlns="http://www.springframework.org/schema/beans"
3 xmlns:amq="http://activemq.apache.org/schema/core" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
5 http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd"
6 default-lazy-init="false">
7
8
9 <bean
10 class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"
11 lazy-init="false">
12 <property name="properties">
13 <props>
14 <prop key="org.apache.activemq.brokerURL">
15 tcp://localhost:61616
16 </prop>
17 </props>
18 </property>
19 <property name="systemPropertiesModeName" value="SYSTEM_PROPERTIES_MODE_OVERRIDE" />
20 <property name="ignoreUnresolvablePlaceholders" value="true" />
21 </bean>
22
23 <import resource="classpath:org/argeo/slc/activemq/spring-agent.xml" />
24
25 <bean id="slcDefault.cli.slcApplication" class="org.argeo.slc.ant.AntSlcApplication"
26 init-method="initFromSlcRootFile">
27 <property name="slcRootFile" value="${slc.rootFile}" />
28 </bean>
29
30 </beans>