]> git.argeo.org Git - gpl/argeo-tp.git/blob - spring/aether.xml
Prepare next development cycle
[gpl/argeo-tp.git] / spring / aether.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-1.2.xsd">
9
10 <!-- Aether -->
11 <flow:flow name="eclipse/org.eclipse.aether" spec="spec.version">
12 <flow:arg name="version" value="1.0.1" />
13 <bean parent="template.archiveWrapper">
14 <property name="uri"
15 value="http://www.eclipse.org/downloads/aether/aether-core/@{version}/dist/aether-@{version}-bin.zip" />
16 <property name="license">
17 <util:constant static-field="org.argeo.slc.repo.FreeLicense.EPL" />
18 </property>
19 <property name="includes">
20 <map>
21 <entry key="aether-*/aether-*.jar" value="org.argeo.tp.aether" />
22 </map>
23 </property>
24 <property name="excludes">
25 <list>
26 <!-- Needs Apache Http Components -->
27 <value>aether-*/aether-transport-http-*.jar</value>
28 <!-- Needs Maven -->
29 <value>aether-*/aether-transport-wagon-*.jar</value>
30 </list>
31 </property>
32 <property name="sourcesProvider">
33 <!-- TODO make it more generic and include other sources -->
34 <bean class="org.argeo.slc.repo.osgi.ArchiveSourcesProvider">
35 <property name="base"
36 value="/aether-1.0.1.v20141111/aether-api/src/main/java" />
37 <property name="uri"
38 value="http://www.eclipse.org/downloads/aether/aether-core/@{version}/dist/aether-@{version}-src.zip" />
39 <property name="osgiFactory" ref="osgiFactory" />
40 </bean>
41 </property>
42 </bean>
43 </flow:flow>
44 </beans>