]> git.argeo.org Git - gpl/argeo-tp.git/blob - META-INF/spring/templates.xml
Upgrade to rap 2.3.2 service release
[gpl/argeo-tp.git] / META-INF / spring / templates.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <beans xmlns="http://www.springframework.org/schema/beans"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
4 xmlns:util="http://www.springframework.org/schema/util" xmlns:flow="http://www.argeo.org/schema/slc-flow"
5 xsi:schemaLocation="
6 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
7 http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.5.xsd
8 http://www.argeo.org/schema/slc-flow http://www.argeo.org/schema/slc-flow-1.2.xsd">
9
10 <!-- Specs and templates -->
11 <flow:spec id="spec.version">
12 <flow:primitive name="version" isParameter="true" />
13 </flow:spec>
14
15 <bean id="template.archiveWrapper" class="org.argeo.slc.repo.osgi.ArchiveWrapper"
16 init-method="init" destroy-method="destroy" abstract="true">
17 <property name="version" value="@{version}" />
18 <property name="osgiFactory" ref="osgiFactory" />
19 </bean>
20
21 <bean id="template.bndWrapper" class="org.argeo.slc.repo.osgi.BndWrapper"
22 abstract="true">
23 <property name="groupId" value="org.argeo.tp.misc" />
24 <property name="bndProperties">
25 <props>
26 <prop key="Export-Package">*</prop>
27 </props>
28 </property>
29 </bean>
30 <bean id="template.mavenWrapper" class="org.argeo.slc.repo.osgi.MavenWrapper"
31 abstract="true">
32 <property name="groupId" value="org.argeo.tp.misc" />
33 <property name="bndProperties">
34 <props>
35 <prop key="Export-Package">*</prop>
36 </props>
37 </property>
38 <property name="osgiFactory" ref="osgiFactory" />
39 </bean>
40
41 </beans>