annotate ivy-ant.xml @ 7:361f0d420ad4

TL-32: Attempt to handle working off-line
author smith@nwoca.org
date Sat, 18 Dec 2010 11:54:16 -0500
parents be1051bf262f
children 26a4d8410fdf
rev   line source
4
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
1 <?xml version="1.0" encoding="UTF-8"?>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
2 <project name="ivy-ant" basedir="." xmlns:ivy="antlib:fr.jayasoft.ivy.ant" >
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
3
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
4 <dirname property="ivy.home" file="${ant.file.ivy-ant}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
5 <property name="ivy-ant.location" location="${ant.file.ivy-ant}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
6 <dirname property="ivy-ant.base" file="${ivy-ant.location}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
7
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
8 <property name="ivy.default.cache.dir"
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
9 value="${user.home}/.ivy2/cache"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
10 <property name="ivy.default.ivy.user.dir"
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
11 value="${user.home}/.ivy2"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
12 <property name="ivy.local.default.root"
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
13 value="${user.home}/.ivy2/local"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
14
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
15 <target name="ivy-report" depends="init">
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
16 <mkdir dir="${build.dir}/ivy"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
17 <ivy:resolve log="quiet" file="ivy.xml"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
18 <ivy:report todir="${build.dir}/ivy" conf="*"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
19 </target>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
20
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
21 <target name="ivy-info" depends="init">
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
22 <ivy:info file="ivy.xml" property="ivy.project"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
23 <echoproperties prefix="ivy.project"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
24 </target>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
25
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
26 <target name="ivy-clean" description="cleans ssdt caches and local builds" depends="init">
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
27 <delete failonerror="false" includeemptydirs="true">
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
28 <fileset dir="${user.home}/.ivy2/cache">
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
29 <include name="org.ssdt_ohio/**"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
30 <include name="org.nwoca.ssdt/**"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
31 <include name="*org*.ssdt*.*"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
32 </fileset>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
33 </delete>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
34 <delete dir="${user.home}/.ivy2/ssdt-cache" failonerror="false"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
35 <delete dir="${user.home}/.ivy2/local" failonerror="false"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
36 </target>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
37
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
38 <target name="-ivy-retrieve-custom" depends="-ivy-define-classpaths,-ivy-retrieve-web-jars">
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
39 </target>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
40
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
41 <target name="-ivy-copy-webjars" if="build.web.dir">
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
42 <ivy:resolve log="quiet" file="ivy.xml"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
43 <ivy:retrieve pattern="${basedir}/${build.web.dir}/WEB-INF/lib/[artifact]-[revision].[ext]" type="jar"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
44 </target>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
45
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
46 <target name="-ivy-retrieve-web-jars" if="build.web.dir">
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
47 <ivy:retrieve pattern="${basedir}/${build.web.dir}/WEB-INF/lib/[artifact]-[revision].[ext]" type="jar"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
48 </target>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
49
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
50 <target name="-ivy-define-classpaths">
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
51 <!-- Custom SSDT retrieve target to replaced IvyBean's default -ivy-retrieve.
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
52 Builds a separate classpath for javac, javac.test, run, run.test, etc based
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
53 on the ivy configurations similer to how NetBeans would build them.
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
54 Uses "ivy:cachepath" instead of "ivy:retrieve". Although is is contrary
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
55 to "best practice" it avoids transfering all jars to build directory and
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
56 avoids problem with 'clean'. NetBeans and ant don't care where the files
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
57 are on disk and the builds are dependent on Ivy anyway. But the "runtime" jars
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
58 are still placed in dist/libs based on the correct run.classpath built by this
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
59 target.
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
60 -->
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
61 <ivy:settings file="ivysettings.xml"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
62 <ivy:resolve log="download-only" file="ivy.xml"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
63
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
64 <ivy:cachepath pathid="ivy.javac.classpath.id" conf="compile" type="jar"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
65 <pathconvert dirsep="/" pathsep="${path.separator}" property="ivy.javac.classpath">
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
66 <path refid="ivy.javac.classpath.id"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
67 <!--map from="${basedir}${file.separator}" to=""/-->
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
68 </pathconvert>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
69 <property name="old.javac.classpath" value="${javac.classpath}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
70 <var name="javac.classpath" unset="true"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
71 <if>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
72 <equals arg1="${old.javac.classpath}" arg2=""/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
73 <then>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
74 <property name="javac.classpath" value="${ivy.javac.classpath}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
75 </then>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
76 <else>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
77 <property name="javac.classpath" value="${old.javac.classpath}${path.separator}${ivy.javac.classpath}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
78 </else>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
79 </if>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
80 <echo level="debug" message="$${javac.classpath} : ${javac.classpath}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
81
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
82 <ivy:cachepath pathid="ivy.javac.test.classpath.id" conf="compile,compile-test" type="jar"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
83 <pathconvert dirsep="/" pathsep="${path.separator}" property="ivy.javac.test.classpath">
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
84 <path refid="ivy.javac.test.classpath.id"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
85 <!--map from="${basedir}${file.separator}" to=""/-->
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
86 </pathconvert>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
87 <property name="old.javac.test.classpath" value="${javac.test.classpath}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
88 <var name="javac.test.classpath" unset="true"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
89 <if>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
90 <equals arg1="${old.javac.test.classpath}" arg2=""/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
91 <then>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
92 <property name="javac.test.classpath" value="${ivy.javac.test.classpath}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
93 </then>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
94 <else>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
95 <property name="javac.test.classpath" value="${old.javac.test.classpath}${path.separator}${ivy.javac.test.classpath}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
96 </else>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
97 </if>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
98 <echo level="debug" message="$${javac.test.classpath} : ${javac.test.classpath}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
99
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
100 <ivy:cachepath pathid="ivy.run.classpath.id" conf="compile,runtime" type="jar"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
101 <pathconvert dirsep="/" pathsep="${path.separator}" property="ivy.run.classpath">
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
102 <path refid="ivy.run.classpath.id"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
103 <!--map from="${basedir}${file.separator}" to=""/-->
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
104 </pathconvert>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
105 <property name="old.run.classpath" value="${run.classpath}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
106 <var name="run.classpath" unset="true"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
107 <if>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
108 <equals arg1="${old.run.classpath}" arg2="$${run.classpath}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
109 <then>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
110 <property name="run.classpath" value="${ivy.run.classpath}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
111 </then>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
112 <else>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
113 <property name="run.classpath" value="${old.run.classpath}${path.separator}${ivy.run.classpath}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
114 </else>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
115 </if>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
116 <echo level="debug" message="$${run.classpath} : ${run.classpath}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
117
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
118
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
119 <ivy:cachepath pathid="ivy.run.test.classpath.id" conf="compile,compile-test,runtime,runtime-test" type="jar"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
120 <pathconvert dirsep="/" pathsep="${path.separator}" property="ivy.run.test.classpath">
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
121 <path refid="ivy.run.test.classpath.id"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
122 <!--map from="${basedir}${file.separator}" to=""/-->
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
123 </pathconvert>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
124
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
125 <property name="old.run.test.classpath" value="${run.test.classpath}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
126 <var name="run.test.classpath" unset="true"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
127 <if>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
128 <equals arg1="${old.run.test.classpath}" arg2="$${run.test.classpath}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
129 <then>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
130 <property name="run.test.classpath" value="${ivy.run.test.classpath}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
131 </then>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
132 <else>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
133 <property name="run.test.classpath" value="${old.run.test.classpath}${path.separator}${ivy.run.test.classpath}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
134 </else>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
135 </if>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
136 <echo level="debug" message="$${run.test.classpath} : ${run.test.classpath}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
137
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
138 <ivy:cachepath pathid="ivy.debug.classpath.id" conf="compile,runtime" type="jar"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
139 <pathconvert dirsep="/" pathsep="${path.separator}" property="ivy.debug.classpath">
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
140 <path refid="ivy.debug.classpath.id"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
141 <!--map from="${basedir}${file.separator}" to=""/-->
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
142 </pathconvert>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
143 <property name="old.debug.classpath" value="${debug.classpath}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
144 <var name="debug.classpath" unset="true"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
145 <if>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
146 <equals arg1="${old.debug.classpath}" arg2="$${debug.classpath}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
147 <then>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
148 <property name="debug.classpath" value="${ivy.debug.classpath}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
149 </then>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
150 <else>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
151 <property name="debug.classpath" value="${old.debug.classpath}${path.separator}${ivy.debug.classpath}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
152 </else>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
153 </if>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
154 <echo level="debug" message="$${debug.classpath} : ${debug.classpath}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
155
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
156 <ivy:cachepath pathid="ivy.debug.test.classpath.id" conf="compile,compile-test,runtime,runtime-test" type="jar"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
157 <pathconvert dirsep="/" pathsep="${path.separator}" property="ivy.debug.test.classpath">
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
158 <path refid="ivy.debug.test.classpath.id"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
159 <!--map from="${basedir}${file.separator}" to=""/-->
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
160 </pathconvert>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
161 <property name="old.debug.test.classpath" value="${debug.test.classpath}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
162 <var name="debug.test.classpath" unset="true"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
163 <if>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
164 <equals arg1="${old.debug.test.classpath}" arg2="$${debug.test.classpath}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
165 <then>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
166 <property name="debug.test.classpath" value="${ivy.debug.test.classpath}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
167 </then>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
168 <else>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
169 <property name="debug.test.classpath" value="${old.debug.test.classpath}${path.separator}${ivy.debug.test.classpath}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
170 </else>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
171 </if>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
172 <echo level="debug" message="$${debug.test.classpath} : ${debug.test.classpath}"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
173 </target>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
174
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
175
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
176 <target name="-ivy-javaagent" description="Retrieves load time weaver java agent">
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
177 <property name="java.agent.org" value="org.springframework"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
178 <property name="java.agent.module" value="org.springframework.instrument"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
179 <property name="java.agent.revision" value="3.0.1.RELEASE-A"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
180 <ivy:resolve resolveId="javaagentid"
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
181 organisation="${java.agent.org}"
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
182 module="${java.agent.module}"
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
183 revision="${java.agent.revision}"
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
184 type="jar"
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
185 inline="true"
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
186 keep="true"
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
187 log="quiet"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
188 <ivy:retrieve
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
189 resolveid="javaagentid"
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
190 pattern="${basedir}/${build.dir}/${lib.dir}/java-agent.[ext]"
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
191 type="jar"
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
192 log="quiet"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
193 <property name="java.agent.jar"
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
194 value="build/jar/java-agent.jar"/>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
195 </target>
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
196
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
197
be1051bf262f add globally common ant scripts
smith@nwoca.org
parents:
diff changeset
198 </project>