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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
|
<!-- -*- Mode: SGML; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- -->
<!-- ========================================================================= -->
<!-- Copyright (c) 2002 Palo Alto Research Center, Incorporated (PARC). -->
<!-- All rights reserved. -->
<!-- This program and the accompanying materials are made available -->
<!-- under the terms of the Common Public License v1.0 -->
<!-- which accompanies this distribution and is available at -->
<!-- http://www.eclipse.org/legal/cpl-v10.html -->
<!-- -->
<!-- Contributors: -->
<!-- Xerox/PARC initial implementation -->
<!-- ========================================================================= -->
<!-- include as common entity for module build scripts -->
<!-- should only need to edit version properties -->
<target name="init-properties"
unless="aspectj.modules.build.dir">
<!--
Changing version:
- base should always be 1.1 (used for manifests, other version-parsing code)
- Others should be DEVELOPMENT unless testing/doing release builds, when
they should be (e.g.,) 1.1b3 or 1.1beta3
- Changing version here causes org/aspectj/bridge/Version.java to be updated
- also change org.aspectj.ajdt.core/src/org/aspectj/ajdt/ajc/messages.properties
-->
<property name="build.version" value="1.1.0"/>
<property name="build.version.base" value="1.1"/>
<property name="build.version.long" value="1.1.0 Release"/>
<property name="build.version.short" value="1.1.0"/>
<!-- formats comply with SimpleDateFormat -->
<property name="build.time.format" value="MM/dd/yy 'at' hh:mm:ss z"/>
<property name="build.date.format" value="EEEE MMM d, yyyy"/>
<tstamp>
<format property="build.date"
pattern="${build.date.format}"
timezone="PST"/>
<format property="build.time"
pattern="${build.time.format}"
timezone="PST"/>
</tstamp>
<property name="company.name" value="aspectj.org"/>
<property name="copyright.allRights.from1998"
value="Copyright (c) 1998-2001 Xerox Corporation, 2002 Palo Alto Research Center, Incorporated, 2003 Contributors. All rights reserved." />
<!-- callers define basedir as dir of build file? -->
<property name="aspectj.modules.dir"
location="${basedir}/.."/>
<!-- aj... names are generated, can be mutated/cleaned -->
<property name="aj.results.dir"
location="${aspectj.modules.dir}/aj-build-results"/>
<!-- these names are known to BuildModule.java and common to all -->
<property name="aj.build.dir"
location="${aspectj.modules.dir}/aj-build"/>
<property name="aj.temp.dir"
location="${aj.build.dir}/temp"/>
<property name="aj.jar.dir"
location="${aj.build.dir}/jars"/>
<property name="aj.dist.dir"
location="${aj.build.dir}/dist"/>
<property name="aj.webDeploy.dir"
location="${aj.build.dir}/webDeploy"/>
<!-- aspectj... names are sources, not to be mutated -->
<property name="aspectj.modules.lib.dir"
location="${aspectj.modules.dir}/lib"/>
<property name="aspectj.modules.build.dir"
location="${aspectj.modules.dir}/build"/>
<property name="aspectj.modules.docs.dir"
location="${aspectj.modules.dir}/docs"/>
<property name="aspectj.modules.tests.dir"
location="${aspectj.modules.dir}/tests"/>
<!-- BuildModule.java assumes products are here -->
<property name="aspectj.products.dir"
location="${aspectj.modules.build.dir}/products"/>
<property name="aspectj.modules.tests.dir"
location="${aspectj.modules.dir}/tests"/>
<property name="aspectj.build.jar"
location="${aspectj.modules.lib.dir}/build/build.jar"/>
<available file="${aspectj.build.jar}"
property="aspectj.build.jar.available"
value="${aspectj.build.jar}"/>
</target>
<target name="init-taskdefs"
depends="init-properties"
unless="init-taskdefs.done" >
<fail unless="aspectj.build.jar.available"
message="unable to find aspectj.build.jar: ${aspectj.build.jar}"/>
<taskdef resource="org/aspectj/internal/tools/ant/taskdefs/taskdefs.properties"
classpath="${aspectj.build.jar}"/>
<!-- run directly from classes in bin when debugging.
<taskdef resource="org/aspectj/internal/tools/ant/taskdefs/taskdefs.properties"
classpath="${aspectj.modules.dir}/build/bin"/>
-->
<property name="init-taskdefs.done" value="done"/>
</target>
<target name="init-directories"
depends="init-properties"
unless="init-directories.done" >
<mkdir dir="${aj.results.dir}" />
<mkdir dir="${aj.build.dir}" />
<mkdir dir="${aj.temp.dir}" />
<mkdir dir="${aj.jar.dir}" />
<mkdir dir="${aj.dist.dir}" />
<property name="init-directories.done" value="done"/>
</target>
<target name="init-filters"
depends="init-properties"
unless="init-filters.done" >
<!-- build.version and build.date used in filters throughout, and
build.version.base used in filtering manifest, but
others used mainly for installer-resources/properties.txt -->
<filter token="build.version" value="${build.version}"/>
<filter token="build.version.base" value="${build.version.base}"/>
<filter token="build.version.long" value="${build.version.long}"/>
<filter token="build.version.short" value="${build.version.short}"/>
<filter token="build.time.format" value="${build.time.format}"/>
<filter token="build.date.format" value="${build.date.format}"/>
<filter token="build.date" value="${build.date}"/>
<filter token="build.time" value="${build.time}"/>
<filter token="company.name" value="${company.name}"/>
<filter token="copyright.allRights.from1998"
value="${copyright.allRights.from1998}" />
<property name="init-filters.done" value="done"/>
</target>
<target name="clean-directories"
depends="init-directories"
unless="clean-directories.done" >
<property name="clean-directories.done" value="done"/>
<delete quiet="on" dir="${aj.build.dir}" /> <!-- warning if not deleted? -->
<antcall target="init-directories"/>
<!-- aj.results.dir is not cleaned -->
</target>
<target name="clean-jars"
depends="init-directories"
unless="clean-jars.done" >
<delete quiet="on">
<fileset dir="${aj.jar.dir}" includes="*"/>
</delete>
<property name="clean-jars.done" value="done"/>
</target>
<target name="echo-properties" depends="init-properties">
<echo>
Build Properties
build.date = ${build.date}
build.time = ${build.time}
build.version = ${build.version}
build.version.long = ${build.version.long}
build.version.short = ${build.version.short}
aspectj.modules.dir = ${aspectj.modules.dir}
aj.build.dir = ${aj.build.dir}
aj.results.dir = ${aj.results.dir}
ant.home = ${ant.home}
java.home = ${java.home}
</echo>
</target>
|