blob: 3aafad06880449dc2d75a3a65f0ec0420eb2cc60 [file] [log] [blame]
David Morgan Spencer Savage28e1d342009-07-21 20:47:15 +00001<?xml version="1.0"?>
2<!--
3 Licensed to the Apache Software Foundation (ASF) under one
4 or more contributor license agreements. See the NOTICE file
5 distributed with this work for additional information
6 regarding copyright ownership. The ASF licenses this file
7 to you under the Apache License, Version 2.0 (the
8 "License"); you may not use this file except in compliance
9 with the License. You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing,
14 software distributed under the License is distributed on an
15 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 KIND, either express or implied. See the License for the
17 specific language governing permissions and limitations
18 under the License.
19-->
David Morgan Spencer Savagef5fc83a2009-08-02 13:44:42 +000020<project name="sigil" default="dist"
David Morgan Spencer Savage5f964d02009-07-28 18:58:32 +000021 xmlns:ivy="antlib:org.apache.ivy.ant">
David Morgan Spencer Savagef977a8d2009-07-20 21:01:49 +000022 <import file="bldcommon/common.xml"/>
23 <fileset id="my.projects" dir="${basedir}">
David Morgan Spencer Savage0deea922009-08-03 16:38:40 +000024 <exclude name="ivy/resolver/test/**/${build_xml}"/>
25 <exclude name="ivy/resolver/example/**/${build_xml}"/>
David Morgan Spencer Savagef977a8d2009-07-20 21:01:49 +000026 <exclude name="bldcommon/**/${build_xml}" />
27 <include name="**/${build_xml}"/>
28 </fileset>
David Morgan Spencer Savage5f964d02009-07-28 18:58:32 +000029
David Morgan Spencer Savageb9544092009-07-22 19:16:31 +000030 <target name="init">
31 <subant buildpath="bldcommon/prepare" target="resolve" />
32 </target>
33
David Morgan Spencer Savagef5fc83a2009-08-02 13:44:42 +000034 <target name="dist" depends="build, site" />
35
David Morgan Spencer Savage927fdac2009-08-03 16:39:58 +000036 <target name="clean" depends="clean-list, clean-site" />
David Morgan Spencer Savagef5fc83a2009-08-02 13:44:42 +000037
David Morgan Spencer Savageec2b5f52009-08-03 10:34:59 +000038 <target name="build" depends="build-list" />
David Morgan Spencer Savagef5fc83a2009-08-02 13:44:42 +000039
David Morgan Spencer Savage5f964d02009-07-28 18:58:32 +000040 <target name="site" depends="common-init">
David Morgan Spencer Savage0deea922009-08-03 16:38:40 +000041 <!-- eclipse -->
David Morgan Spencer Savage5f964d02009-07-28 18:58:32 +000042 <ivy:retrieve organisation="org.apache" module="felix.sigil.common.core" revision="latest.integration" inline="true" pattern="${site.dir}/plugins/[artifact].[ext]" transitive="false"/>
43 <ivy:retrieve organisation="org.apache" module="felix.sigil.common.junit" revision="latest.integration" inline="true" pattern="${site.dir}/plugins/[artifact].[ext]" transitive="false"/>
44 <ivy:retrieve organisation="org.apache" module="felix.sigil.common.obr" revision="latest.integration" inline="true" pattern="${site.dir}/plugins/[artifact].[ext]" transitive="false"/>
45 <ivy:retrieve organisation="org.apache" module="felix.sigil.eclipse.core" revision="latest.integration" inline="true" pattern="${site.dir}/plugins/[artifact].[ext]" transitive="false"/>
46 <ivy:retrieve organisation="org.apache" module="felix.sigil.eclipse.help" revision="latest.integration" inline="true" pattern="${site.dir}/plugins/[artifact].[ext]" transitive="false"/>
47 <ivy:retrieve organisation="org.apache" module="felix.sigil.eclipse.obr" revision="latest.integration" inline="true" pattern="${site.dir}/plugins/[artifact].[ext]" transitive="false"/>
48 <ivy:retrieve organisation="org.apache" module="felix.sigil.eclipse.search" revision="latest.integration" inline="true" pattern="${site.dir}/plugins/[artifact].[ext]" transitive="false"/>
49 <ivy:retrieve organisation="org.apache" module="felix.sigil.eclipse.ui" revision="latest.integration" inline="true" pattern="${site.dir}/plugins/[artifact].[ext]" transitive="false"/>
50 <ivy:retrieve organisation="org.apache" module="felix.sigil.eclipse.utils" revision="latest.integration" inline="true" pattern="${site.dir}/plugins/[artifact].[ext]" transitive="false"/>
51 <ivy:retrieve organisation="biz.aQute" module="bndlib" revision="0.0.312" inline="true" pattern="${site.dir}/plugins/[artifact].[ext]" transitive="false"/>
David Morgan Spencer Savage86be7492009-08-02 10:48:00 +000052 <ivy:retrieve organisation="sigil" module="com.springsource.org.apache.commons.lang" revision="2.4.0" inline="true" pattern="${site.dir}/plugins/[artifact].[ext]" transitive="false"/>
David Morgan Spencer Savage0deea922009-08-03 16:38:40 +000053
54 <!-- ivy -->
55 <ivy:retrieve organisation="org.apache" module="felix.sigil.ivy.resolver" revision="latest.integration" inline="true" pattern="${site.dir}/ivy/[artifact].[ext]" transitive="false"/>
David Morgan Spencer Savage5f964d02009-07-28 18:58:32 +000056 </target>
57
58 <target name="clean-site">
59 <delete dir="${site.dir}" />
60 </target>
Richard S. Hall85bafab2009-07-13 13:25:46 +000061</project>