]> git.argeo.org Git - gpl/argeo-tp.git/blob - META-INF/spring/eclipse.rap.xml
Argeo TP v2.1.12
[gpl/argeo-tp.git] / META-INF / spring / eclipse.rap.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-0.12.xsd">
9
10 <!-- Eclipse rap platform -->
11 <flow:flow name="eclipse/org.argeo.tp.rap.platform" parent="template.importRap">
12 <flow:arg name="rapRelease" value="2.3" />
13 <flow:arg name="rapTimestamp" value="2.3.2-SR2-20150128-1013" />
14 </flow:flow>
15
16 <!-- Rap specs and templates -->
17 <flow:spec id="rapVersion.spec">
18 <flow:primitive name="rapRelease" isParameter="true" />
19 <flow:primitive name="rapTimestamp" isParameter="true" />
20 </flow:spec>
21
22 <flow:flow id="template.importRap" spec="rapVersion.spec"
23 abstract="true">
24 <bean class="org.argeo.slc.repo.osgi.ArchiveWrapper">
25 <property name="uri"
26 value="http://www.eclipse.org/downloads/rt/rap/@{rapRelease}/rap-@{rapTimestamp}.zip" />
27 <property name="includes">
28 <map>
29 <!-- Eclipse core -->
30 <entry key="plugins/org.eclipse.core.*.jar" value="org.argeo.tp.rap.platform" />
31
32 <!-- RWT -->
33 <entry key="plugins/org.eclipse.rap.rwt_*.jar" value="org.argeo.tp.rap.platform" />
34 <entry key="plugins/org.eclipse.rap.rwt.source_*.jar" value="org.argeo.tp.rap.platform" />
35 <entry key="plugins/org.eclipse.rap.rwt.osgi_*.jar" value="org.argeo.tp.rap.platform" />
36 <entry key="plugins/org.eclipse.rap.rwt.osgi.source_*.jar" value="org.argeo.tp.rap.platform" />
37
38 <!-- RAP UI with the workbench -->
39 <entry key="plugins/org.eclipse.rap.ui.workbench*.jar" value="org.argeo.tp.rap.platform" />
40 <entry key="plugins/org.eclipse.rap.ui_*.jar" value="org.argeo.tp.rap.platform" />
41 <entry key="plugins/org.eclipse.rap.ui.source_*.jar" value="org.argeo.tp.rap.platform" />
42 <entry key="plugins/org.eclipse.rap.ui.views*.jar" value="org.argeo.tp.rap.platform" />
43 <entry key="plugins/org.eclipse.rap.jface*.jar" value="org.argeo.tp.rap.platform" />
44 <entry key="plugins/org.eclipse.rap.ui.forms*.jar" value="org.argeo.tp.rap.platform" />
45 <entry key="plugins/org.eclipse.help*.jar" value="org.argeo.tp.rap.platform" />
46
47 <!-- Misc -->
48 <entry key="plugins/com.ibm.icu.base*.jar" value="org.argeo.tp.rap.platform" />
49 </map>
50 </property>
51 <property name="osgiFactory" ref="osgiFactory" />
52 </bean>
53 </flow:flow>
54
55 <!-- Addons -->
56
57 <!-- The corresponding zip must be manually imported in the dist repo at
58 path org/eclipse/www/downloads/rt/rap/addons/@{rapRelease}/ -->
59
60 <flow:flow name="eclipse/org.argeo.tp.rap.addons" parent="template.importRapAddons">
61 <flow:arg name="rapRelease" value="0.6" />
62 <flow:arg name="rapTimestamp" value="0.6.0.v20150207" />
63 </flow:flow>
64
65 <flow:flow id="template.importRapAddons" spec="rapVersion.spec"
66 abstract="true">
67 <bean class="org.argeo.slc.repo.osgi.ArchiveWrapper">
68 <property name="uri"
69 value="http://www.eclipse.org/downloads/rt/rap/addons/@{rapRelease}/addons-@{rapTimestamp}.zip" />
70 <property name="includes">
71 <map>
72 <entry key="plugins/org.eclipse.rap.addons.*.jar" value="org.argeo.tp.rap" />
73 </map>
74 </property>
75 <property name="osgiFactory" ref="osgiFactory" />
76 </bean>
77 </flow:flow>
78 </beans>