forked from highcharts/highcharts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
484 lines (429 loc) · 24.4 KB
/
build.xml
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
<?xml version="1.0" encoding="utf-8"?>
<!-- Highcharts build file -->
<project name="build" default="Usage">
<!-- Describes the usage of the build file by invoking -projecthelp. -->
<target name="Usage">
<java classname="org.apache.tools.ant.Main">
<arg value="-projecthelp"/>
<arg value="-quiet"/>
</java>
</target>
<!-- Sets various properties needed during the build. -->
<target name="set.properties">
<!-- Read the release names and versions for our products. -->
<property file="build.properties"/>
<filterset id="highcharts.filter">
<filter token="product.name" value="${highcharts.product.name}"/>
<filter token="product.version" value="${highcharts.product.version}"/>
<filter token="product.date" value="${highcharts.product.date}"/>
</filterset>
<filterset id="highstock.filter">
<filter token="product.name" value="${highstock.product.name}"/>
<filter token="product.version" value="${highstock.product.version}"/>
<filter token="product.date" value="${highstock.product.date}"/>
</filterset>
<!-- folder names -->
<property name="tools.dir" value="${basedir}/tools"/>
<property name="build.dir" value="${basedir}/build"/>
<property name="dist.dir" value="${build.dir}/dist"/>
<property name="testoutput.dir" value="${build.dir}/tests"/>
<property name="coveragereport.dir" value="${build.dir}/coverage-report"/>
<property name="themes.dir" value="${basedir}/js/themes"/>
<property name="package.dir" value="${basedir}/../highcharts.com.site/downloads/package"/>
<!-- highcharts/highstock src -->
<property name="highcharts.parts.dir" location="${basedir}/js/parts"/>
<property name="highcharts.src.name" value="highcharts.src.js"/>
<property name="highcharts.src.file" value="${basedir}/js/${highcharts.src.name}"/>
<property name="highcharts.minified.name" value="highcharts.js"/>
<property name="highstock.src.name" value="highstock.src.js"/>
<property name="highstock.src.file" value="${basedir}/js/${highstock.src.name}"/>
<property name="highstock.minified.name" value="highstock.js"/>
<property name="mootools.src.name" value="mootools-adapter.src.js"/>
<property name="prototype.src.name" value="prototype-adapter.src.js"/>
<property name="exporting.src.name" value="exporting.src.js"/>
<property name="mootools.minified.name" value="mootools-adapter.js"/>
<property name="prototype.minified.name" value="prototype-adapter.js"/>
<property name="exporting.minified.name" value="exporting.js"/>
<property name="mootools.src.file" value="${basedir}/js/adapters/${mootools.src.name}"/>
<property name="prototype.src.file" value="${basedir}/js/adapters/${prototype.src.name}"/>
<property name="exporting.src.file" value="${basedir}/js/modules/${exporting.src.name}"/>
<!-- jsLint -->
<property name="jslint4java.dir" value="${tools.dir}/jslint4java"/>
<property name="jslint4java.jar" value="${jslint4java.dir}/jslint4java-2.0.0.jar"/>
<taskdef name="jslint"
classname="com.googlecode.jslint4java.ant.JSLintTask"
classpath="${jslint4java.jar}"/>
<!-- google closure compiler -->
<property name="gcc.dir" value="${tools.dir}/google-closure-compiler"/>
<property name="gcc.jar" location="${gcc.dir}/compiler.jar"/>
<!-- YUI compressor -->
<property name="yuicomp.dir" value="${tools.dir}/yui-compressor"/>
<property name="yuicomp.jar" location="${yuicomp.dir}/yuicompressor-2.4.6.jar"/>
<property name="yuicomp.output.name" value="highcharts.min-yui.js"/>
<!-- google js-test-driver -->
<property name="jstestdriver.dir" value="${tools.dir}/js-test-driver"/>
<property name="jstestdriver.jar" location="${jstestdriver.dir}/JsTestDriver-1.3.2.jar"/>
<!-- This is the list of files for highcharts -->
<filelist id="highcharts.files" dir="${highcharts.parts.dir}">
<file name="Intro.js"/>
<file name="Globals.js"/>
<file name="Utilities.js"/>
<file name="Adapters.js"/>
<file name="PathAnimation.js"/>
<file name="Options.js"/>
<file name="Color.js"/>
<file name="SvgRenderer.js"/>
<file name="VmlRenderer.js"/>
<file name="Chart.js"/>
<file name="Series.js"/>
<file name="LineSeries.js"/>
<file name="AreaSeries.js"/>
<file name="SplineSeries.js"/>
<file name="AreaSplineSeries.js"/>
<file name="ColumnSeries.js"/>
<file name="BarSeries.js"/>
<file name="ScatterSeries.js"/>
<file name="PieSeries.js"/>
<file name="Outro.js"/>
</filelist>
<!-- This is the list of files for highstock -->
<filelist id="highstock.files" dir="${highcharts.parts.dir}">
<file name="Intro.js"/>
<file name="Globals.js"/>
<file name="Utilities.js"/>
<file name="Adapters.js"/>
<file name="PathAnimation.js"/>
<file name="Options.js"/>
<file name="Color.js"/>
<file name="SvgRenderer.js"/>
<file name="VmlRenderer.js"/>
<file name="Chart.js"/>
<file name="Series.js"/>
<file name="LineSeries.js"/>
<file name="AreaSeries.js"/>
<file name="SplineSeries.js"/>
<file name="AreaSplineSeries.js"/>
<file name="ColumnSeries.js"/>
<file name="BarSeries.js"/>
<file name="Outro.js"/>
</filelist>
</target>
<!-- Set up a clean build folder. -->
<target name="clean" depends="set.properties">
<mkdir dir="${build.dir}"/>
<delete includeemptydirs="true">
<fileset dir="${build.dir}" includes="**/*"/>
</delete>
<mkdir dir="${dist.dir}/js/adapters"/>
<mkdir dir="${dist.dir}/js/modules"/>
<mkdir dir="${dist.dir}/highcharts/js/adapters"/>
<mkdir dir="${dist.dir}/highcharts/js/modules"/>
<mkdir dir="${dist.dir}/highstock/js/adapters"/>
<mkdir dir="${dist.dir}/highstock/js/modules"/>
<mkdir dir="${testoutput.dir}"/>
<mkdir dir="${coveragereport.dir}"/>
<delete file="${basedir}/jsTestDriver.conf" failonerror="false"/>
<delete file="${basedir}/jsTestDriverCoverage.conf" failonerror="false"/>
</target>
<!-- Assembles the source parts into one file. -->
<target name="assemble" depends="clean">
<!-- Concat highcharts src and replace the product name and version -->
<concat destfile="${highcharts.src.file}">
<filelist refid="highcharts.files"/>
<filterchain>
<replacetokens>
<token key="product.name" value="${highcharts.product.name}"/>
<token key="product.version" value="${highcharts.product.version}"/>
<token key="product.date" value="${highcharts.product.date}"/>
</replacetokens>
</filterchain>
</concat>
<!-- Concat highstock src and replace the product name and version -->
<concat destfile="${highstock.src.file}">
<filelist refid="highstock.files"/>
<filterchain>
<replacetokens>
<token key="product.name" value="${highstock.product.name}"/>
<token key="product.version" value="${highstock.product.version}"/>
<token key="product.date" value="${highstock.product.date}"/>
</replacetokens>
</filterchain>
</concat>
</target>
<!-- Runs jslint on source code. -->
<target name="lint" depends="assemble">
<jslint haltOnFailure="false" options="sloppy, forin, confusion, plusplus, nomen, vars, regexp, newcap, browser, undef">
<formatter type="plain"/>
<!-- TODO: Replace the line below with highstock.src.file when the branch is merged. -->
<fileset file="${highcharts.src.file}"/>
<fileset file="${mootools.src.file}"/>
<fileset file="${prototype.src.file}"/>
<fileset file="${exporting.src.file}"/>
<fileset dir="${themes.dir}"/>
</jslint>
</target>
<!-- Runs google closure compiler and yui compressor on src. -->
<target name="compile">
<echo message="Minifying ${param.src}"/>
<java jar="${gcc.jar}" fork="true">
<arg value="--compilation_level"/>
<arg value="SIMPLE_OPTIMIZATIONS"/>
<arg value="--js"/>
<arg value="${param.src}"/>
<arg value="--js_output_file"/>
<arg value="${param.out}"/>
</java>
<java jar="${yuicomp.jar}" fork="true">
<arg value="--type"/>
<arg value="js"/>
<arg value="-o"/>
<arg value="${param.out}.yui-min.js"/>
<arg value="${param.src}"/>
</java>
<length file="${param.src}" property="input.length"/>
<length file="${param.out}" property="gcc.output.length"/>
<length file="${param.out}.yui-min.js" property="yuicomp.output.length"/>
<!-- We are not distributing this file, its only used to make sure compilation works. -->
<delete file="${param.out}.yui-min.js" quiet="true"/>
<echo message="Google Closure compiler: ${input.length} bytes -> ${gcc.output.length} bytes."/>
<echo message="Yahoo YUI Compressor: ${input.length} bytes -> ${yuicomp.output.length} bytes."/>
</target>
<!-- Runs minifiers on source code. -->
<target name="minify" depends="assemble">
<antcall target="compile">
<param name="param.src" value="${highcharts.src.file}"/>
<param name="param.out" value="${dist.dir}/highcharts/js/${highcharts.minified.name}"/>
</antcall>
<antcall target="compile">
<param name="param.src" value="${highstock.src.file}"/>
<param name="param.out" value="${dist.dir}/highstock/js/${highstock.minified.name}"/>
</antcall>
<antcall target="compile">
<param name="param.src" value="${mootools.src.file}"/>
<param name="param.out" value="${dist.dir}/js/adapters/${mootools.minified.name}"/>
</antcall>
<antcall target="compile">
<param name="param.src" value="${prototype.src.file}"/>
<param name="param.out" value="${dist.dir}/js/adapters/${prototype.minified.name}"/>
</antcall>
<antcall target="compile">
<param name="param.src" value="${exporting.src.file}"/>
<param name="param.out" value="${dist.dir}/js/modules/${exporting.minified.name}"/>
</antcall>
</target>
<!-- Builds the source and runts lint and minify. -->
<target name="build" depends="lint, minify" description="Builds the source and runs jsLint and minify.">
</target>
<!-- Builds the source and assembles a distribution package. -->
<target name="dist" depends="build" description="Builds the source and assembles distribution packages.">
<echo message=""/>
<echo message="--- Building distribution packages for ---"/>
<echo message=""/>
<echo message=" ${highcharts.product.name} - ${highcharts.product.version} (${highcharts.product.date})"/>
<echo message=" ${highstock.product.name} - ${highstock.product.version} (${highstock.product.date})"/>
<echo message=""/>
<!-- 1. Check for any console statements -->
<fail message="Source contains console or alert statements">
<condition>
<or>
<resourcecontains resource="${highcharts.src.file}" substring="console."/>
<resourcecontains resource="${highstock.src.file}" substring="console."/>
<resourcecontains resource="${mootools.src.file}" substring="console."/>
<resourcecontains resource="${prototype.src.file}" substring="console."/>
<resourcecontains resource="${exporting.src.file}" substring="console."/>
<resourcecontains resource="${highcharts.src.file}" substring="alert("/>
<resourcecontains resource="${highstock.src.file}" substring="alert("/>
<resourcecontains resource="${mootools.src.file}" substring="alert("/>
<resourcecontains resource="${prototype.src.file}" substring="alert("/>
<resourcecontains resource="${exporting.src.file}" substring="alert("/>
</or>
</condition>
</fail>
<!-- 2. Copy highcharts source and minified versions, adapters, modules, themes. Replace product and version at the same time -->
<copy file="${highcharts.src.file}" todir="${dist.dir}/highcharts/js"><filterset refid="highcharts.filter"/></copy>
<copy file="${highstock.src.file}" todir="${dist.dir}/highstock/js"><filterset refid="highstock.filter"/></copy>
<copy file="${mootools.src.file}" todir="${dist.dir}/highcharts/js/adapters"><filterset refid="highcharts.filter"/></copy>
<copy file="${dist.dir}/js/adapters/${mootools.minified.name}" todir="${dist.dir}/highcharts/js/adapters"><filterset refid="highcharts.filter"/></copy>
<copy file="${mootools.src.file}" todir="${dist.dir}/highstock/js/adapters"><filterset refid="highstock.filter"/></copy>
<copy file="${dist.dir}/js/adapters/${mootools.minified.name}" todir="${dist.dir}/highstock/js/adapters"><filterset refid="highstock.filter"/></copy>
<copy file="${prototype.src.file}" todir="${dist.dir}/highcharts/js/adapters"><filterset refid="highcharts.filter"/></copy>
<copy file="${dist.dir}/js/adapters/${prototype.minified.name}" todir="${dist.dir}/highcharts/js/adapters"><filterset refid="highcharts.filter"/></copy>
<copy file="${prototype.src.file}" todir="${dist.dir}/highstock/js/adapters"><filterset refid="highstock.filter"/></copy>
<copy file="${dist.dir}/js/adapters/${prototype.minified.name}" todir="${dist.dir}/highstock/js/adapters"><filterset refid="highstock.filter"/></copy>
<copy file="${exporting.src.file}" todir="${dist.dir}/highcharts/js/modules"><filterset refid="highcharts.filter"/></copy>
<copy file="${dist.dir}/js/modules/${exporting.minified.name}" todir="${dist.dir}/highcharts/js/modules"><filterset refid="highcharts.filter"/></copy>
<copy file="${exporting.src.file}" todir="${dist.dir}/highstock/js/modules"><filterset refid="highstock.filter"/></copy>
<copy file="${dist.dir}/js/modules/${exporting.minified.name}" todir="${dist.dir}/highstock/js/modules"><filterset refid="highstock.filter"/></copy>
<copy todir="${dist.dir}/highcharts/js/themes">
<fileset dir="${themes.dir}"/>
</copy>
<copy todir="${dist.dir}/highstock/js/themes">
<fileset dir="${themes.dir}"/>
</copy>
<!-- 3. Copy examples -->
<copy todir="${dist.dir}/highcharts/examples">
<fileset dir="${package.dir}/examples"/>
</copy>
<copy file="${package.dir}/index.htm" todir="${dist.dir}/highcharts"/>
<copy todir="${dist.dir}/highstock/examples">
<fileset dir="${package.dir}/examples"/>
</copy>
<copy file="${package.dir}/index.htm" todir="${dist.dir}/highstock"/>
<!-- 4. Copy graphics -->
<copy todir="${dist.dir}/highcharts/graphics">
<fileset dir="${package.dir}/graphics"/>
</copy>
<copy todir="${dist.dir}/highstock/graphics">
<fileset dir="${package.dir}/graphics"/>
</copy>
<!-- 5. Copy php export server -->
<copy todir="${dist.dir}/highcharts/exporting-server">
<fileset dir="${package.dir}/exporting-server"/>
</copy>
<copy todir="${dist.dir}/highstock/exporting-server">
<fileset dir="${package.dir}/exporting-server"/>
</copy>
<!-- 6. Create a zip files -->
<zip destfile="${dist.dir}/${highcharts.product.name}-${highcharts.product.version}.zip" basedir="${dist.dir}/highcharts"/>
<zip destfile="${dist.dir}/${highstock.product.name}-${highstock.product.version}.zip" basedir="${dist.dir}/highstock"/>
</target>
<!-- Starts the test driver server. -->
<target name="server" depends="set.properties" description="Starts the unit test server on localhost:4224.">
<exec executable="cmd" dir="${basedir}" >
<arg value="/k start java -jar ${jstestdriver.jar} --port 4224"/>
</exec>
<echo message="Test server started at localhost:4224"/>
<echo message="Before running tests, remember to capture one or more browsers."/>
<echo message="Exit the server by pressing Control-C in the java window."/>
</target>
<target name="test-all" description="Runs the unit tests on all adapters. The server must be running (i.e. 'server').">
<!-- Param "testrun.name" used in echo output and to build a folder name where test result goes. -->
<!-- Param "required.lib" specifies wich third-party lib is used while testing. -->
<!-- Param "required.adapter" specifies the corresponding adapter that matches the lib. Leave unset for the built-in jquery support. -->
<!-- jquery versions -->
<antcall target="test-specific-lib">
<param name="testrun.name" value="jquery-1.6.2"/>
<param name="required.lib" value="jquery-1.6.2.js"/>
</antcall>
<antcall target="test-specific-lib">
<param name="testrun.name" value="jquery-1.5.2"/>
<param name="required.lib" value="jquery-1.5.2.js"/>
</antcall>
<antcall target="test-specific-lib">
<param name="testrun.name" value="jquery-1.4.4"/>
<param name="required.lib" value="jquery-1.4.4.js"/>
</antcall>
<antcall target="test-specific-lib">
<param name="testrun.name" value="jquery-1.3.2"/>
<param name="required.lib" value="jquery-1.3.2.js"/>
</antcall>
<!-- mootools versions -->
<antcall target="test-specific-lib">
<param name="testrun.name" value="mootools-1.3.2"/>
<param name="required.lib" value="mootools-core-1.3.2-full-compat.js"/>
<param name="required.adapter" value="js/adapters/mootools-adapter.src.js"/>
</antcall>
<antcall target="test-specific-lib">
<param name="testrun.name" value="mootools-1.2.5"/>
<param name="required.lib" value="mootools-1.2.5-core-nc.js"/>
<param name="required.adapter" value="js/adapters/mootools-adapter.src.js"/>
</antcall>
<!-- prototype versions -->
<antcall target="test-specific-lib">
<param name="testrun.name" value="prototype-1.7.0.0"/>
<param name="required.lib" value="prototype-1.7.0.0.js"/>
<param name="required.adapter" value="js/adapters/prototype-adapter.src.js"/>
</antcall>
</target>
<target name="test" description="Runs the unit tests latest jquery. The server must be running (i.e. 'server').">
<antcall target="test-specific-lib">
<param name="testrun.name" value="jquery-1.6.2"/>
<param name="required.lib" value="jquery-1.6.2.js"/>
</antcall>
</target>
<!-- Replace the lib with the specified ones, if set. -->
<target name="replace-lib" if="required.lib">
<replace file="jsTestDriver.conf" token="#required.lib" value=" - lib/${required.lib}"/>
</target>
<!-- Replace the adapter with the specified ones, if set. -->
<target name="replace-adapter" if="required.adapter">
<replace file="jsTestDriver.conf" token="#required.adapter" value=" - ${required.adapter}"/>
</target>
<target name="test-specific-lib" depends="set.properties">
<!-- Copy the templated jsTestDriver configuration to root. -->
<copy file="test/jsTestDriver.conf" todir="${basedir}" overwrite="true"/>
<!-- Expand the tokens to valid js files. -->
<antcall target="replace-lib"/>
<antcall target="replace-adapter"/>
<!-- Create the folder where the report is stored. -->
<mkdir dir="${testoutput.dir}/${testrun.name}"/>
<!-- Run the tests -->
<antcall target="run-test"/>
</target>
<!-- Runs the tests without coverage. This is much faster than with coverage enabled. -->
<target name="run-test" depends="set.properties">
<echo message="/------------------------------------------------------------"/>
<echo message=" Running tests using: ${testrun.name}"/>
<echo message=""/>
<echo message=""/>
<java jar="${jstestdriver.jar}" fork="true">
<arg value="--config"/>
<arg value="jsTestDriver.conf"/>
<arg value="--testOutput"/>
<arg value="${testoutput.dir}/${testrun.name}"/>
<arg value="--tests"/>
<arg value="all"/>
<arg value="--reset"/>
</java>
<echo message=""/>
<echo message=""/>
<echo message="\------------------------------------------------------------"/>
</target>
<!-- Starts the test driver server with coverage enabled. -->
<!-- This must be done on a separate port to the test-server. -->
<target name="server-coverage" depends="set.properties" description="Starts the unit test server with coverage enabled on localhost:5225.">
<!-- Copy the jsTestDriverCoverage configuration to root. -->
<copy file="test/jsTestDriverCoverage.conf" todir="${basedir}" overwrite="true"/>
<exec executable="cmd" dir="${basedir}" >
<arg value="/k start java -jar ${jstestdriver.jar} --config jsTestDriverCoverage.conf --port 5225"/>
</exec>
<echo message="Coverage test server started at localhost:5225"/>
<echo message="Before running tests, remember to capture one or more browsers."/>
<echo message="Exit the server by pressing Control-C in the java window."/>
</target>
<!-- Runs coverage analysis for the tests. -->
<target name="test-coverage" depends="set.properties" description="Runs the unit tests together with code coverage. The server must be running (i.e. 'server-coverage')">
<!-- Copy the jsTestDriverCoverage configuration to root. -->
<copy file="test/jsTestDriverCoverage.conf" todir="${basedir}" overwrite="true"/>
<!-- Run the tests with coverage enabled. -->
<java jar="${jstestdriver.jar}" fork="true">
<arg value="--config"/>
<arg value="jsTestDriverCoverage.conf"/>
<arg value="--testOutput"/>
<arg value="${testoutput.dir}"/>
<arg value="--tests"/>
<arg value="all"/>
<arg value="--verbose"/>
</java>
</target>
<!-- Generates a code-coverage report based on the output from the 'test-coverage' task. -->
<target name="test-report" depends="set.properties" description="Generates a code-coverage report based on the output from the 'test-coverage' task.">
<!-- When running on windows, the output from coverage is windows-style, but the report requires unix-style paths. -->
<!-- Replace dos-drive 'C:' with unix style '/C'. -->
<replace file="${testoutput.dir}/jsTestDriver.conf-coverage.dat" token="SF:C:" value="SF:/C" summary="true"/>
<!-- Replace dos-paths '\' with unix style '/'. -->
<replace file="${testoutput.dir}/jsTestDriver.conf-coverage.dat" token="\" value="/" summary="true"/>
<!-- Run perl and the genhtml script to create the report. -->
<exec executable="perl" dir="${basedir}">
<arg value="-w"/>
<arg value="tools/lcov-1.9/bin/genhtml"/>
<arg line="-o ${coveragereport.dir} --no-branch-coverage --no-function-coverage --legend --title 'Highcharts test coverage' build/tests/jsTestDriver.conf-coverage.dat"/>
</exec>
<!-- Point the browser to the report. -->
<property name="browser" location="C:/Program Files (x86)/Mozilla Firefox/firefox.exe"/>
<property name="file" location="${coveragereport.dir}/index.html"/>
<exec executable="${browser}" spawn="true">
<arg value="${file}"/>
</exec>
</target>
</project>