]> git.argeo.org Git - gpl/argeo-tp.git/blob - META-INF/spring/eclipse.equinox.xml
0eae902cb9808887016b28fb290287cefc3c002d
[gpl/argeo-tp.git] / META-INF / spring / eclipse.equinox.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 <flow:flow name="eclipse/org.argeo.tp.equinox" parent="template.importEquinox">
11 <flow:arg name="equinoxRelease" value="Mars.2" />
12 <flow:arg name="equinoxTimestamp" value="201602121500" />
13 </flow:flow>
14
15 <!-- Equinox specs and templates -->
16 <flow:spec id="equinoxVersion.spec">
17 <flow:primitive name="equinoxRelease" isParameter="true" />
18 <flow:primitive name="equinoxTimestamp" isParameter="true" />
19 </flow:spec>
20
21 <flow:flow id="template.importEquinox" spec="equinoxVersion.spec"
22 abstract="true">
23 <bean class="org.argeo.slc.repo.osgi.ArchiveWrapper">
24 <property name="uri"
25 value="http://www.eclipse.org/downloads/equinox/drops/R-@{equinoxRelease}-@{equinoxTimestamp}/equinox-SDK-@{equinoxRelease}.zip" />
26 <property name="includes">
27 <map>
28 <!-- Core OSGi framework -->
29 <entry key="plugins/org.eclipse.osgi_*.jar" value="org.argeo.tp.equinox" />
30 <entry key="plugins/org.eclipse.osgi.source_*.jar" value="org.argeo.tp.equinox" />
31 <entry key="plugins/org.eclipse.osgi.util*.jar" value="org.argeo.tp.equinox" />
32 <entry key="plugins/org.eclipse.osgi.services*.jar" value="org.argeo.tp.equinox" />
33
34 <!-- Javax -->
35 <entry key="plugins/javax.servlet_*.jar" value="org.argeo.tp.javax" />
36 <entry key="plugins/javax.servlet.source_*.jar" value="org.argeo.tp.javax" />
37 <entry key="plugins/javax.el*.jar" value="org.argeo.tp.javax" />
38
39 <!-- Felix console -->
40 <entry key="plugins/org.apache.felix.gogo.*.jar" value="org.argeo.tp.apache.felix" />
41
42 <!-- Required by RAP -->
43 <entry key="plugins/org.eclipse.equinox.app*.jar" value="org.argeo.tp.equinox" />
44 <entry key="plugins/org.eclipse.equinox.cm*.jar" value="org.argeo.tp.equinox" />
45 <entry key="plugins/org.eclipse.equinox.common*.jar" value="org.argeo.tp.equinox" />
46 <entry key="plugins/org.eclipse.equinox.console_*.jar" value="org.argeo.tp.equinox" />
47 <entry key="plugins/org.eclipse.equinox.console.source_*.jar"
48 value="org.argeo.tp.equinox" />
49 <entry key="plugins/org.eclipse.equinox.ds*.jar" value="org.argeo.tp.equinox" />
50 <entry key="plugins/org.eclipse.equinox.metatype*.jar" value="org.argeo.tp.equinox" />
51 <entry key="plugins/org.eclipse.equinox.event*.jar" value="org.argeo.tp.equinox" />
52 <entry key="plugins/org.eclipse.equinox.http.jetty*.jar"
53 value="org.argeo.tp.equinox" />
54 <entry key="plugins/org.eclipse.equinox.http.registry*.jar"
55 value="org.argeo.tp.equinox" />
56 <entry key="plugins/org.eclipse.equinox.http.servlet*.jar"
57 value="org.argeo.tp.equinox" />
58 <entry key="plugins/org.eclipse.equinox.http.servletbridge*.jar"
59 value="org.argeo.tp.equinox" />
60 <entry key="plugins/org.eclipse.equinox.preferences*.jar"
61 value="org.argeo.tp.equinox" />
62 <entry key="plugins/org.eclipse.equinox.registry*.jar" value="org.argeo.tp.equinox" />
63 <entry key="plugins/org.eclipse.equinox.servletbridge*.jar"
64 value="org.argeo.tp.equinox" />
65 <entry key="plugins/org.eclipse.equinox.util*.jar" value="org.argeo.tp.equinox" />
66 </map>
67 </property>
68 <property name="osgiFactory" ref="osgiFactory" />
69 </bean>
70 </flow:flow>
71
72 <flow:flow name="eclipse/org.eclipse.jdt.core.compiler.batch"
73 spec="equinoxVersion.spec">
74 <flow:arg name="equinoxRelease" value="4.4.1" />
75 <flow:arg name="equinoxTimestamp" value="201409250400" />
76 <bean id="org.eclipse.jdt.core.compiler.batch" class="org.argeo.slc.repo.osgi.UriWrapper">
77 <!-- TODO URI wrapper should be able to read OSGi metadata -->
78 <property name="version" value="3.10.0.v20140902-0626" />
79 <property name="uri"
80 value="http://www.eclipse.org/downloads/eclipse/downloads/drops4/R-@{equinoxRelease}-@{equinoxTimestamp}/ecj-@{equinoxRelease}.jar" />
81 <property name="groupId" value="org.argeo.tp.equinox" />
82 <property name="doNotModify" value="true" />
83 <property name="license">
84 <util:constant static-field="org.argeo.slc.repo.FreeLicense.EPL" />
85 </property>
86 <property name="osgiFactory" ref="osgiFactory" />
87 <property name="sourcesProvider">
88 <bean class="org.argeo.slc.repo.osgi.ArchiveSourcesProvider">
89 <property name="uri"
90 value="http://www.eclipse.org/downloads/eclipse/downloads/drops4/R-@{equinoxRelease}-@{equinoxTimestamp}/ecjsrc-@{equinoxRelease}.jar" />
91 <property name="osgiFactory" ref="osgiFactory" />
92 </bean>
93 </property>
94 </bean>
95 </flow:flow>
96
97 </beans>