]> git.argeo.org Git - gpl/argeo-tp.git/blob - META-INF/spring/eclipse.jetty.xml
Upgrade to rap 2.3.2 service release
[gpl/argeo-tp.git] / META-INF / spring / eclipse.jetty.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.jetty" parent="template.importJettyZip">
11 <flow:arg name="jettyVersion" value="8.1.16.v20140903" />
12 </flow:flow>
13
14 <!-- Jetty specs and templates -->
15 <flow:spec id="jettyVersion.spec">
16 <flow:primitive name="jettyVersion" isParameter="true" />
17 </flow:spec>
18
19 <flow:flow id="template.importJettyZip" spec="jettyVersion.spec"
20 abstract="true">
21 <bean class="org.argeo.slc.repo.osgi.ArchiveWrapper">
22 <property name="uri"
23 value="http://www.eclipse.org/downloads/jetty/@{jettyVersion}/dist/jetty-distribution-@{jettyVersion}.zip" />
24 <property name="license">
25 <util:constant static-field="org.argeo.slc.repo.FreeLicense.APACHE" />
26 </property>
27 <property name="includes">
28 <map>
29 <entry
30 key="jetty-distribution-@{jettyVersion}/lib/jetty-continuation-@{jettyVersion}.jar"
31 value="org.argeo.tp.jetty" />
32 <entry key="jetty-distribution-@{jettyVersion}/lib/jetty-http-@{jettyVersion}.jar"
33 value="org.argeo.tp.jetty" />
34 <entry key="jetty-distribution-@{jettyVersion}/lib/jetty-io-@{jettyVersion}.jar"
35 value="org.argeo.tp.jetty" />
36 <entry key="jetty-distribution-@{jettyVersion}/lib/jetty-jmx-@{jettyVersion}.jar"
37 value="org.argeo.tp.jetty" />
38 <entry key="jetty-distribution-@{jettyVersion}/lib/jetty-security-@{jettyVersion}.jar"
39 value="org.argeo.tp.jetty" />
40 <entry key="jetty-distribution-@{jettyVersion}/lib/jetty-server-@{jettyVersion}.jar"
41 value="org.argeo.tp.jetty" />
42 <entry key="jetty-distribution-@{jettyVersion}/lib/jetty-servlet-@{jettyVersion}.jar"
43 value="org.argeo.tp.jetty" />
44 <entry key="jetty-distribution-@{jettyVersion}/lib/jetty-servlets-@{jettyVersion}.jar"
45 value="org.argeo.tp.jetty" />
46 <entry key="jetty-distribution-@{jettyVersion}/lib/jetty-util-@{jettyVersion}.jar"
47 value="org.argeo.tp.jetty" />
48 <entry key="jetty-distribution-@{jettyVersion}/lib/jetty-client-@{jettyVersion}.jar"
49 value="org.argeo.tp.jetty" />
50 </map>
51 </property>
52 <property name="excludes">
53 <list>
54 <value><![CDATA[jetty-distribution-@{jettyVersion}/lib/jetty-overlay-deployer-*.jar]]></value>
55 </list>
56 </property>
57 <property name="sourcesProvider">
58 <bean class="org.argeo.slc.repo.osgi.ArchiveSourcesProvider">
59 <property name="uri"
60 value="http://repo1.maven.org/maven2/org/eclipse/jetty/aggregate/jetty-all/@{jettyVersion}/jetty-all-@{jettyVersion}-sources.jar" />
61 <property name="osgiFactory" ref="osgiFactory" />
62 </bean>
63 </property>
64 <property name="osgiFactory" ref="osgiFactory" />
65 </bean>
66 </flow:flow>
67
68 </beans>