forked from eclipse-mylyn/mylyn-website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
34 lines (31 loc) · 1018 Bytes
/
Copy pathbuild.xml
File metadata and controls
34 lines (31 loc) · 1018 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" ?>
<!-- writen for Ant 1.5.1 -->
<project name="mylar" default="copy-web">
<target name="copy-web" description="Doc Web Update">
<copy todir="doc">
<fileset file="../org.eclipse.mylyn.doc/doc/*.html" />
<!--
<fileset file="../org.eclipse.mylyn.doc/doc/faq.html" />
<fileset file="../org.eclipse.mylyn.doc/doc/new-0.4.0.html" />
<fileset file="../org.eclipse.mylyn.doc/doc/contributing.html" />
<fileset file="../org.eclipse.mylyn.doc/doc/integrating.html" />
-->
</copy>
<!--
<copy todir="doc/dev">
<fileset file="../org.eclipse.mylyn.doc/doc/dev/plan.html" />
</copy>
<copy todir="doc/images/dev">
<fileset dir="../org.eclipse.mylyn.doc/doc/images/dev" />
</copy>
<copy todir="doc/images">
<fileset dir="../org.eclipse.mylyn.doc/doc/images" />
</copy>
-->
</target>
<target name="copy-release" description="Doc Release Update">
<copy todir="doc">
<fileset file="../org.eclipse.mylyn.doc/doc/new.html" />
</copy>
</target>
</project>