]> git.argeo.org Git - gpl/argeo-slc.git/blob - lib/org.argeo.slc.lib.repo/META-INF/spring/importZip.xml
Replace alias by cn
[gpl/argeo-slc.git] / lib / org.argeo.slc.lib.repo / META-INF / spring / importZip.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <beans xmlns:flow="http://www.argeo.org/schema/slc-flow" 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 xsi:schemaLocation="
5 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
6 http://www.argeo.org/schema/slc-flow http://www.argeo.org/schema/slc-flow-1.2.xsd">
7
8 <!-- Import a zip to a local repository -->
9 <flow:flow name="importZip">
10 <flow:spec>
11 <flow:primitive name="workspace" value="org.argeo.tp-2.1.x" />
12 <flow:primitive name="groupId" value="org.argeo.tp" />
13 <flow:primitive name="zipFile" value="File:///home/user/dev/libs/extLibrary-1.3.8.zip" />
14 </flow:spec>
15 <bean class="org.argeo.slc.repo.osgi.ImportBundlesZip">
16 <flow:variable proxy-target-class="false" />
17 <property name="workspace" value="@{workspace}" />
18 <property name="groupId" value="@{groupId}" />
19 <property name="zipFile" value="@{zipFile}" />
20 <property name="repository" ref="javaRepository" />
21 </bean>
22 </flow:flow>
23 </beans>