blob: b1ab93565a8309a7af6a0c3a5a460822a5d1bf1f [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 Savage5f964d02009-07-28 18:58:32 +000020<project name="sigil" default="build"
21 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}">
24 <exclude name="ivy/**/${build_xml}"/>
25 <exclude name="bldcommon/**/${build_xml}" />
26 <include name="**/${build_xml}"/>
27 </fileset>
David Morgan Spencer Savage5f964d02009-07-28 18:58:32 +000028
David Morgan Spencer Savageb9544092009-07-22 19:16:31 +000029 <target name="init">
30 <subant buildpath="bldcommon/prepare" target="resolve" />
31 </target>
32
David Morgan Spencer Savage5f964d02009-07-28 18:58:32 +000033 <target name="clean" depends="clean-list, clean-site" />
David Morgan Spencer Savageb9544092009-07-22 19:16:31 +000034 <target name="build" depends="build-list" />
David Morgan Spencer Savage5f964d02009-07-28 18:58:32 +000035
36 <target name="site" depends="common-init">
37 <ivy:retrieve organisation="org.apache" module="felix.sigil.common.core" revision="latest.integration" inline="true" pattern="${site.dir}/plugins/[artifact].[ext]" transitive="false"/>
38 <ivy:retrieve organisation="org.apache" module="felix.sigil.common.junit" revision="latest.integration" inline="true" pattern="${site.dir}/plugins/[artifact].[ext]" transitive="false"/>
39 <ivy:retrieve organisation="org.apache" module="felix.sigil.common.obr" revision="latest.integration" inline="true" pattern="${site.dir}/plugins/[artifact].[ext]" transitive="false"/>
40 <ivy:retrieve organisation="org.apache" module="felix.sigil.eclipse.core" revision="latest.integration" inline="true" pattern="${site.dir}/plugins/[artifact].[ext]" transitive="false"/>
41 <ivy:retrieve organisation="org.apache" module="felix.sigil.eclipse.help" revision="latest.integration" inline="true" pattern="${site.dir}/plugins/[artifact].[ext]" transitive="false"/>
42 <ivy:retrieve organisation="org.apache" module="felix.sigil.eclipse.obr" revision="latest.integration" inline="true" pattern="${site.dir}/plugins/[artifact].[ext]" transitive="false"/>
43 <ivy:retrieve organisation="org.apache" module="felix.sigil.eclipse.search" revision="latest.integration" inline="true" pattern="${site.dir}/plugins/[artifact].[ext]" transitive="false"/>
44 <ivy:retrieve organisation="org.apache" module="felix.sigil.eclipse.ui" revision="latest.integration" inline="true" pattern="${site.dir}/plugins/[artifact].[ext]" transitive="false"/>
45 <ivy:retrieve organisation="org.apache" module="felix.sigil.eclipse.utils" revision="latest.integration" inline="true" pattern="${site.dir}/plugins/[artifact].[ext]" transitive="false"/>
46 <ivy:retrieve organisation="biz.aQute" module="bndlib" revision="0.0.312" inline="true" pattern="${site.dir}/plugins/[artifact].[ext]" transitive="false"/>
47 </target>
48
49 <target name="clean-site">
50 <delete dir="${site.dir}" />
51 </target>
Richard S. Hall85bafab2009-07-13 13:25:46 +000052</project>