blob: 0c7d15435becdc9afcf04d5131c4699c6b719411 (
plain)
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
<?xml version="1.0" encoding="UTF-8"?>
<!--
* Copyright (c) 2005-2006 The Apache Software Foundation or its licensors, as applicable.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
-->
<project name="project" default="createDistribution">
<condition property="isSample">
<and>
<contains string="${project.groupId}" substring=".samples" />
<or>
<equals arg1="${project.packaging}" arg2="jar" />
<equals arg1="${project.packaging}" arg2="war" />
</or>
</and>
</condition>
<condition property="isJar">
<and>
<not>
<contains string="${project.groupId}" substring=".samples" />
</not>
<equals arg1="${project.packaging}" arg2="jar" />
</and>
</condition>
<condition property="isFirstTime">
<and>
<equals arg1="${project.groupId}" arg2="org.osoa" />
<equals arg1="${project.artifactId}" arg2="spec" />
</and>
</condition>
<target name="createDistribution" depends="copyJavadoc" />
<target name="copySample" if="isSample" description="Copy the sample code to the Tuscany distribution folder">
<property name="target.folder" value="${dist.folder}/samples/${project.artifactId}" />
<delete dir="${target.folder}" />
<copy todir="${target.folder}">
<fileset dir="${project.basedir}" includes="readme.htm, pom.xml">
<include name="src/main/**" />
<include name="target/${project.artifactId}-${project.version}.${project.packaging}" />
</fileset>
</copy>
</target>
<target name="copyJavadoc" if="isJar" description="Copy the javadoc to the Tuscany distribution folder">
<copy todir="${dist.folder}/javadoc/${project.artifactId}">
<fileset dir="${project.basedir}/target/site/apidocs">
<include name="**/*" />
</fileset>
</copy>
</target>
<target name="cleanDistribution" depends="cleanJavadoc, cleanBuild" />
<target name="cleanJavadoc" if="isJar">
<delete file="${dist.folder}/lib/${project.artifactId}-${project.version}.${project.packaging}" quiet="true" />
<delete file="${dist.folder}/javadoc/${project.artifactId}-${project.version}-javadoc.${project.packaging}" quiet="true" />
<delete dir="${dist.folder}/javadoc/${project.artifactId}" quiet="true" />
</target>
<target name="cleanSample" if="isSample">
<delete dir="${dist.folder}/samples/${project.artifactId}" quiet="true" />
</target>
<target name="cleanBuild" if="isFirstTime">
<delete dir="${dist.folder}" quiet="true" />
</target>
</project>
|