]> git.argeo.org Git - gpl/argeo-tp.git/blob - templates.xml
0b6214736569fce6878762041b1898f512767994
[gpl/argeo-tp.git] / 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 <bean id="template.bndWrapper" class="org.argeo.slc.spring.repo.osgi.BndWrapper"
21 abstract="true">
22 <property name="groupId" value="org.argeo.tp.extras" />
23 <property name="bndProperties">
24 <props>
25 <prop key="Export-Package">*</prop>
26 </props>
27 </property>
28 </bean>
29 <bean id="template.mavenWrapper" class="org.argeo.slc.spring.repo.osgi.MavenWrapper"
30 abstract="true">
31 <property name="groupId" value="org.argeo.tp.extras" />
32 <property name="bndProperties">
33 <props>
34 <prop key="Export-Package">*</prop>
35 </props>
36 </property>
37 <property name="osgiFactory" ref="osgiFactory" />
38 </bean>
39 </beans>