]> git.argeo.org Git - gpl/argeo-tp.git/blob - META-INF/spring/eclipse.equinox.xml
Make javax.transaction a framework extension
[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="LunaSR1" />
12 <flow:arg name="equinoxTimestamp" value="201409250400" />
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.event*.jar" value="org.argeo.tp.equinox" />
51 <entry key="plugins/org.eclipse.equinox.http.jetty*.jar"
52 value="org.argeo.tp.equinox" />
53 <entry key="plugins/org.eclipse.equinox.http.registry*.jar"
54 value="org.argeo.tp.equinox" />
55 <entry key="plugins/org.eclipse.equinox.http.servlet*.jar"
56 value="org.argeo.tp.equinox" />
57 <entry key="plugins/org.eclipse.equinox.http.servletbridge*.jar"
58 value="org.argeo.tp.equinox" />
59 <entry key="plugins/org.eclipse.equinox.preferences*.jar"
60 value="org.argeo.tp.equinox" />
61 <entry key="plugins/org.eclipse.equinox.registry*.jar" value="org.argeo.tp.equinox" />
62 <entry key="plugins/org.eclipse.equinox.servletbridge*.jar"
63 value="org.argeo.tp.equinox" />
64 <entry key="plugins/org.eclipse.equinox.util*.jar" value="org.argeo.tp.equinox" />
65 </map>
66 </property>
67 <property name="osgiFactory" ref="osgiFactory" />
68 </bean>
69 </flow:flow>
70
71 <flow:flow name="eclipse/org.eclipse.jdt.core.compiler.batch"
72 spec="equinoxVersion.spec">
73 <flow:arg name="equinoxRelease" value="4.4.1" />
74 <flow:arg name="equinoxTimestamp" value="201409250400" />
75 <bean id="org.eclipse.jdt.core.compiler.batch" class="org.argeo.slc.repo.osgi.UriWrapper">
76 <!-- TODO URI wrapper should be able to read OSGi metadata -->
77 <property name="version" value="3.10.0.v20140902-0626" />
78 <property name="uri"
79 value="http://www.eclipse.org/downloads/eclipse/downloads/drops4/R-@{equinoxRelease}-@{equinoxTimestamp}/ecj-@{equinoxRelease}.jar" />
80 <property name="groupId" value="org.argeo.tp.equinox" />
81 <property name="doNotModify" value="true" />
82 <property name="license">
83 <util:constant static-field="org.argeo.slc.repo.FreeLicense.EPL" />
84 </property>
85 <property name="osgiFactory" ref="osgiFactory" />
86 <property name="sourcesProvider">
87 <bean class="org.argeo.slc.repo.osgi.ArchiveSourcesProvider">
88 <property name="uri"
89 value="http://www.eclipse.org/downloads/eclipse/downloads/drops4/R-@{equinoxRelease}-@{equinoxTimestamp}/ecjsrc-@{equinoxRelease}.jar" />
90 <property name="osgiFactory" ref="osgiFactory" />
91 </bean>
92 </property>
93 </bean>
94 </flow:flow>
95
96 </beans>