]> git.argeo.org Git - gpl/argeo-tp.git/blob - META-INF/spring/eclipse.jetty.xml
Prepare 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="9.4.12.v20180830" />
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://repo1.maven.org/maven2/org/eclipse/jetty/jetty-distribution/@{jettyVersion}/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
33 key="jetty-distribution-@{jettyVersion}/lib/jetty-http-@{jettyVersion}.jar"
34 value="org.argeo.tp.jetty" />
35 <entry
36 key="jetty-distribution-@{jettyVersion}/lib/jetty-io-@{jettyVersion}.jar"
37 value="org.argeo.tp.jetty" />
38 <entry
39 key="jetty-distribution-@{jettyVersion}/lib/jetty-jmx-@{jettyVersion}.jar"
40 value="org.argeo.tp.jetty" />
41 <entry
42 key="jetty-distribution-@{jettyVersion}/lib/jetty-security-@{jettyVersion}.jar"
43 value="org.argeo.tp.jetty" />
44 <entry
45 key="jetty-distribution-@{jettyVersion}/lib/jetty-server-@{jettyVersion}.jar"
46 value="org.argeo.tp.jetty" />
47 <entry
48 key="jetty-distribution-@{jettyVersion}/lib/jetty-servlet-@{jettyVersion}.jar"
49 value="org.argeo.tp.jetty" />
50 <entry
51 key="jetty-distribution-@{jettyVersion}/lib/jetty-servlets-@{jettyVersion}.jar"
52 value="org.argeo.tp.jetty" />
53 <entry
54 key="jetty-distribution-@{jettyVersion}/lib/jetty-util-@{jettyVersion}.jar"
55 value="org.argeo.tp.jetty" />
56 <entry
57 key="jetty-distribution-@{jettyVersion}/lib/jetty-client-@{jettyVersion}.jar"
58 value="org.argeo.tp.jetty" />
59 </map>
60 </property>
61 <property name="excludes">
62 <list>
63 <value><![CDATA[jetty-distribution-@{jettyVersion}/lib/jetty-overlay-deployer-*.jar]]></value>
64 </list>
65 </property>
66 <!-- <property name="sourcesProvider"> -->
67 <!-- <bean class="org.argeo.slc.repo.osgi.ArchiveSourcesProvider"> -->
68 <!-- <property name="uri" -->
69 <!-- value="https://github.com/eclipse/jetty.project/archive/jetty-@{jettyVersion}.zip" /> -->
70 <!-- <property name="osgiFactory" ref="osgiFactory" /> -->
71 <!-- </bean> -->
72 <!-- </property> -->
73 <property name="osgiFactory" ref="osgiFactory" />
74 </bean>
75 </flow:flow>
76
77 </beans>