-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
executable file
·620 lines (535 loc) · 20 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
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
<?xml version="1.0" encoding="UTF-8"?>
<!-- author: jpanico -->
<project name="diffkit">
<property name="root.dir" location="." />
<property name="src.dir" location="${root.dir}/src" />
<property name="tst.dir" location="${root.dir}/tst" />
<property name="contrib.dir" location="${root.dir}/contrib" />
<property name="lib.dir" location="${root.dir}/lib" />
<property name="conf.dir" location="${root.dir}/conf" />
<property name="doc.dir" location="${root.dir}/doc" />
<property name="web.dir" location="${root.dir}/web" />
<property name="build.dir" location="${root.dir}/build" />
<property name="unit.build.dir" location="${root.dir}/unit.build" />
<property name="contrib.build.dir" location="${root.dir}/contrib.build" />
<property name="run.dir" location="${root.dir}/run" />
<property name="tstscratch.dir" location="${root.dir}/tstscratch" />
<property name="dist.dir" location="${root.dir}/dist" />
<property name="web-dist.dir" location="${root.dir}/web_dist" />
<property name="dist.properties.file" location="${conf.dir}/dist.properties" />
<patternset id="build.resources">
<include name="**/*.xml" />
<include name="**/*.txt" />
<include name="**/*.csv" />
<include name="**/*.xls" />
<include name="**/*.xlsx" />
<include name="**/*.diff" />
<include name="**/*.exception" />
</patternset>
<patternset id="executables">
<include name="**/*.class" />
</patternset>
<fileset id="libs" dir="${lib.dir}">
<include name="*.jar" />
<include name="*.zip" />
</fileset>
<path id="lib.classpath">
<fileset refid="libs" />
</path>
<taskdef name="groovyc" classname="org.codehaus.groovy.ant.Groovyc" classpathref="lib.classpath" />
<!-- why doesn't this work ?? -->
<defaultexcludes echo="false" add="**/*.__hold__" />
<target name="find-revision" description="Sets property 'svn.info.lastRev' to head svn revision">
<taskdef resource="org/tigris/subversion/svnant/svnantlib.xml">
<!-- these came from svnant-1.3.0.zip, the only version that will work-->
<classpath>
<pathelement location="${lib.dir}/svnant.jar" />
<pathelement location="${lib.dir}/svnClientAdapter.jar" />
<pathelement location="${lib.dir}/svnjavahl.jar" />
<pathelement location="${lib.dir}/svnkit.jar" />
</classpath>
</taskdef>
<property name="svn.revision" value="HEAD" />
<svn>
<info target="${basedir}" />
</svn>
<echo>svn.revision-->${svn.info.lastRev}</echo>
</target>
<target name="dist-properties">
<propertyfile file="${dist.properties.file}">
<entry key="version.date" type="date" value="now" pattern="MM/dd/yyyy" />
</propertyfile>
<property file="${dist.properties.file}" />
<property name="version" value="${version.major}.${version.minor}.${version.micro}" />
<property name="bin-distzip" value="${ant.project.name}-${version}.zip" />
<property name="src-distzip" value="${ant.project.name}-src-${version}.zip" />
</target>
<target name="ssh-init">
<fail unless="server">Set the "server" property!</fail>
<property name="ssh.propfile" location="${root.dir}/../${server}.ssh.properties" />
<loadproperties srcfile="${ssh.propfile}" />
</target>
<target name="info">
<echo>basedir--> ${basedir}</echo>
<echo>ant.file--> ${ant.file}</echo>
<echo>ant.version--> ${ant.version}</echo>
<echo>ant.project.name--> ${ant.project.name}</echo>
<echo>ant.java.version--> ${ant.java.version}</echo>
</target>
<target name="build" depends="dist-properties">
<mkdir dir="${build.dir}" />
<mkdir dir="${unit.build.dir}" />
<javac destdir="${build.dir}" classpathref="lib.classpath" verbose="off" target="1.5" source="1.5" debug="on" deprecation="off">
<compilerarg value="-Xlint" />
<src path="${src.dir}" />
</javac>
<!-- build the TestCases -->
<groovyc destdir="${build.dir}" classpathref="lib.classpath" verbose="on">
<src path="${tst.dir}" />
<include name="**/testcase/**" />
<include name="**/DBTestSetup*" />
<javac target="1.5" source="1.5" debug="on" deprecation="off" />
</groovyc>
<copy todir="${build.dir}">
<fileset dir="${src.dir}">
<patternset refid="build.resources" />
</fileset>
<fileset dir="${tst.dir}">
<include name="**/testcase/**" />
<exclude name="**/*.groovy" />
</fileset>
</copy>
<!-- build the JUnit test -->
<groovyc destdir="${unit.build.dir}" verbose="on">
<classpath>
<path refid="lib.classpath" />
<pathelement location="${build.dir}" />
</classpath>
<src path="${tst.dir}" />
<include name="**/tst/*" />
<javac target="1.5" source="1.5" debug="on" deprecation="off" />
</groovyc>
<copy todir="${unit.build.dir}">
<fileset dir="${tst.dir}">
<include name="**/*.jar" />
<include name="**/*.csv" />
<include name="**/*.diff" />
<include name="**/*.xml" />
<include name="**/*.txt" />
<include name="**/*.xls" />
<include name="**/*.xlsx" />
</fileset>
</copy>
</target>
<!-- run JUnit tests -->
<target name="unit" depends="build">
<junit printsummary="yes" haltonfailure="yes" showoutput="no">
<classpath>
<path refid="lib.classpath" />
<pathelement location="${build.dir}" />
<pathelement location="${unit.build.dir}" />
</classpath>
<batchtest fork="yes">
<fileset dir="${unit.build.dir}">
<include name="**/Test*" />
<!-- a '$' in the filename means it's an inner class -->
<exclude name="**/*$*" />
<exclude name="**/TestDBConnection*" />
</fileset>
</batchtest>
</junit>
</target>
<!-- run functional TestCase suite -->
<target name="testcases" depends="build">
<java classname="org.diffkit.diff.testcase.TestCaseRunner" failonerror="yes">
<classpath>
<pathelement location="${conf.dir}" />
<path refid="lib.classpath" />
<pathelement location="${build.dir}" />
</classpath>
<sysproperty key="isTest" value="true" />
</java>
</target>
<target name="bin-dist" depends="clean,build">
<property name="testcasedatajar" value="testcasedata.jar" />
<property name="libjar" value="${ant.project.name}-${version}.jar" />
<property name="appjar" value="${ant.project.name}-app.jar" />
<mkdir dir="${dist.dir}" />
<copy todir="${dist.dir}">
<fileset dir="${build.dir}">
<include name="org/diffkit/**/*.class" />
<exclude name="**/DKLauncher**" />
</fileset>
</copy>
<mkdir dir="${dist.dir}/testcasedata" />
<copy todir="${dist.dir}/testcasedata" flatten="true">
<fileset dir="${build.dir}/org/diffkit/diff/testcase/">
<patternset refid="build.resources" />
</fileset>
</copy>
<!-- jar up TestCase resources -->
<jar destfile="${dist.dir}/org/diffkit/diff/testcase/${testcasedatajar}">
<fileset dir="${dist.dir}/testcasedata/" />
</jar>
<!-- create the diffkit library as jar -->
<jar destfile="${dist.dir}/${libjar}" basedir="${dist.dir}" excludes="testcasedata/" />
<!-- cleanup -->
<delete includeemptydirs="true">
<fileset dir="${dist.dir}" excludes="${libjar}" />
</delete>
<copy todir="${dist.dir}">
<fileset dir="${build.dir}">
<include name="com/jdotsoft/**/**" />
<include name="org/diffkit/**/DKLauncher*" />
</fileset>
</copy>
<copy todir="${dist.dir}/lib">
<fileset dir="${lib.dir}">
<exclude name="svnant.jar" />
<exclude name="svnClientAdapter.jar" />
<exclude name="svnjavahl.jar" />
<exclude name="svnkit.jar" />
</fileset>
</copy>
<copy file="${conf.dir}/logback.prod.xml" tofile="${dist.dir}/conf/logback.xml" />
<copy file="${conf.dir}/dist.properties" todir="${dist.dir}/conf/" />
<!-- create the diffkit standalone application that includes diffkit library
and all its dependencies -->
<jar destfile="${dist.dir}/${appjar}" basedir="${dist.dir}">
<manifest>
<attribute name="Main-Class" value="org.diffkit.diff.conf.DKLauncher" />
</manifest>
</jar>
<!-- cleanup -->
<delete includeemptydirs="true">
<fileset dir="${dist.dir}" excludes="${appjar},${testcasedatajar}" />
</delete>
<copy file="${conf.dir}/logback.prod.xml" tofile="${dist.dir}/conf/logback.xml" />
<copy todir="${dist.dir}/conf">
<fileset dir="${conf.dir}">
<include name="*dbConnectionInfo*" />
</fileset>
</copy>
<mkdir dir="${dist.dir}/dropin/" />
<antcall target="doc-dist" />
<antcall target="eg-dist" />
<touch file="${dist.dir}/VERSION-${version}" />
<zip destfile="${dist.dir}/${bin-distzip}" basedir="${dist.dir}" />
<!-- cleanup -->
<delete includeemptydirs="true">
<fileset dir="${dist.dir}" excludes="${bin-distzip}" />
</delete>
</target>
<target name="src-dist" depends="clean,dist-properties">
<mkdir dir="${dist.dir}" />
<copy todir="${dist.dir}">
<fileset dir="${root.dir}">
<include name=".classpath" />
<include name=".project" />
<include name=".settings" />
<include name="build.xml" />
<include name="conf/**" />
<include name="doc/**" />
<include name="lib/**" />
<include name="src/**" />
<include name="tst/**" />
</fileset>
</copy>
<zip destfile="${dist.dir}/${src-distzip}" basedir="${dist.dir}" />
<!-- cleanup -->
<delete includeemptydirs="true">
<fileset dir="${dist.dir}" excludes="*.zip" />
</delete>
</target>
<target name="dist" depends="dist-properties,unit,testcases">
<antcall target="bin-dist" />
<move file="${dist.dir}/${bin-distzip}" tofile="${dist.dir}/${bin-distzip}.__hold__" />
<antcall target="src-dist" />
<move file="${dist.dir}/${bin-distzip}.__hold__" tofile="${dist.dir}/${bin-distzip}" />
</target>
<target name="doc-dist" depends="find-revision,dist-properties">
<copy todir="${dist.dir}/doc" overwrite="true">
<fileset dir="${doc.dir}">
<patternset>
<include name="**/*.txt" />
<include name="**/*.css" />
<include name="**/*.js" />
</patternset>
</fileset>
<filterset>
<filter token="AUTHOR" value="${author}" />
<filter token="VERSION" value="${version}" />
<filter token="BUILDDATE" value="${version.date}" />
<filter token="REVISION" value="${svn.info.lastRev}" />
</filterset>
</copy>
<copy todir="${dist.dir}/doc" overwrite="true">
<fileset dir="${doc.dir}">
<patternset>
<include name="**/*.png" />
</patternset>
</fileset>
</copy>
<copy file="${tst.dir}/org/diffkit/diff/testcase/TestCases.txt" todir="${dist.dir}/doc" overwrite="true"/>
<antcall target="html-doc-dist" />
</target>
<target name="html-doc-dist" depends="dist-properties,probe_for_asciidoc" if="asciidoc.found">
<exec dir="${dist.dir}/doc" executable="asciidoc" failifexecutionfails="true" searchpath="true">
<arg line="-a linkcss" />
<arg line="-a theme=diffkit" />
<arg line="-a imagesdir=img" />
<arg line="-a scriptsdir=resources" />
<arg line="-a stylesdir=resources" />
<arg line="README.txt" />
</exec>
<exec dir="${dist.dir}/doc" executable="asciidoc" failifexecutionfails="true" searchpath="true">
<arg line="-a linkcss" />
<arg line="-a theme=diffkit" />
<arg line="-a imagesdir=img" />
<arg line="-a scriptsdir=resources" />
<arg line="-a stylesdir=resources" />
<arg line="quickstart.txt" />
</exec>
<exec dir="${dist.dir}/doc" executable="asciidoc" failifexecutionfails="true" searchpath="true">
<arg line="-a linkcss" />
<arg line="-a theme=diffkit" />
<arg line="-a imagesdir=img" />
<arg line="-a scriptsdir=resources" />
<arg line="-a stylesdir=resources" />
<arg line="-a toc" />
<arg line="faq.txt" />
</exec>
<exec dir="${dist.dir}/doc" executable="asciidoc" failifexecutionfails="true" searchpath="true">
<arg line="-a linkcss" />
<arg line="-a theme=diffkit" />
<arg line="-a imagesdir=img" />
<arg line="-a scriptsdir=resources" />
<arg line="-a stylesdir=resources" />
<arg line="-a toc" />
<arg line="userguide.txt" />
</exec>
<exec dir="${dist.dir}/doc" executable="asciidoc" failifexecutionfails="true" searchpath="true">
<arg line="-a linkcss" />
<arg line="-a theme=diffkit" />
<arg line="-a imagesdir=img" />
<arg line="-a scriptsdir=resources" />
<arg line="-a stylesdir=resources" />
<arg line="compatibility.txt" />
</exec>
<exec dir="${dist.dir}/doc" executable="asciidoc" failifexecutionfails="true" searchpath="true">
<arg line="-a linkcss" />
<arg line="-a theme=diffkit" />
<arg line="-a imagesdir=img" />
<arg line="-a scriptsdir=resources" />
<arg line="-a stylesdir=resources" />
<arg line="-a toc" />
<arg line="changelog.txt" />
</exec>
<exec dir="${dist.dir}/doc" executable="asciidoc" failifexecutionfails="true" searchpath="true">
<arg line="-a linkcss" />
<arg line="-a theme=diffkit" />
<arg line="-a imagesdir=img" />
<arg line="-a scriptsdir=resources" />
<arg line="-a stylesdir=resources" />
<arg line="TestCases.txt" />
</exec>
</target>
<target name="web-publish" depends="web-dist,ssh-init">
<echo>SCP target is ${ssh.server}</echo>
<property name="ssh.path" value="${ssh.user}@${ssh.server}:${ssh.dir}" />
<scp remoteToDir="${ssh.path}" password="${ssh.password}" verbose="${ssh.verbose}">
<fileset dir="${web-dist.dir}" />
</scp>
</target>
<target name="web-dist" depends="find-revision,dist-properties">
<copy todir="${web-dist.dir}" overwrite="true">
<fileset dir="${web.dir}">
<patternset>
<include name="**/*.txt" />
<include name="**/*.conf" />
</patternset>
</fileset>
<fileset dir="${doc.dir}">
<patternset>
<include name="**/*.txt" />
<include name="**/*.css" />
<include name="**/*.js" />
</patternset>
</fileset>
<filterset>
<filter token="AUTHOR" value="${author}" />
<filter token="VERSION" value="${version}" />
<filter token="BUILDDATE" value="${version.date}" />
<filter token="REVISION" value="${svn.info.lastRev}" />
</filterset>
</copy>
<copy todir="${web-dist.dir}" overwrite="true">
<fileset dir="${doc.dir}">
<patternset>
<include name="**/*.png" />
</patternset>
</fileset>
</copy>
<antcall target="html-web-dist" />
<delete>
<fileset dir="${web-dist.dir}">
<include name="*.txt" />
<include name="*.conf" />
</fileset>
</delete>
</target>
<target name="html-web-dist" depends="dist-properties,probe_for_asciidoc" if="asciidoc.found">
<exec dir="${web-dist.dir}" executable="asciidoc" failifexecutionfails="true" searchpath="true">
<arg line="--conf-file=web_template.conf" />
<arg line="-a linkcss" />
<arg line="-a theme=diffkit" />
<arg line="-a imagesdir=img" />
<arg line="-a scriptsdir=resources" />
<arg line="-a stylesdir=resources" />
<arg line="-a index-only" />
<arg line="index.txt" />
</exec>
<exec dir="${web-dist.dir}" executable="asciidoc" failifexecutionfails="true" searchpath="true">
<arg line="--conf-file=web_template.conf" />
<arg line="-a linkcss" />
<arg line="-a theme=diffkit" />
<arg line="-a imagesdir=img" />
<arg line="-a scriptsdir=resources" />
<arg line="-a stylesdir=resources" />
<arg line="README.txt" />
</exec>
<exec dir="${web-dist.dir}" executable="asciidoc" failifexecutionfails="true" searchpath="true">
<arg line="--conf-file=web_template.conf" />
<arg line="-a linkcss" />
<arg line="-a theme=diffkit" />
<arg line="-a imagesdir=img" />
<arg line="-a scriptsdir=resources" />
<arg line="-a stylesdir=resources" />
<arg line="quickstart.txt" />
</exec>
<exec dir="${web-dist.dir}" executable="asciidoc" failifexecutionfails="true" searchpath="true">
<arg line="--conf-file=web_template.conf" />
<arg line="-a linkcss" />
<arg line="-a theme=diffkit" />
<arg line="-a imagesdir=img" />
<arg line="-a scriptsdir=resources" />
<arg line="-a stylesdir=resources" />
<arg line="-a toc" />
<arg line="userguide.txt" />
</exec>
<exec dir="${web-dist.dir}" executable="asciidoc" failifexecutionfails="true" searchpath="true">
<arg line="--conf-file=web_template.conf" />
<arg line="-a linkcss" />
<arg line="-a theme=diffkit" />
<arg line="-a imagesdir=img" />
<arg line="-a scriptsdir=resources" />
<arg line="-a stylesdir=resources" />
<arg line="-a toc" />
<arg line="faq.txt" />
</exec>
<exec dir="${web-dist.dir}" executable="asciidoc" failifexecutionfails="true" searchpath="true">
<arg line="--conf-file=web_template.conf" />
<arg line="-a linkcss" />
<arg line="-a theme=diffkit" />
<arg line="-a imagesdir=img" />
<arg line="-a scriptsdir=resources" />
<arg line="-a stylesdir=resources" />
<arg line="compatibility.txt" />
</exec>
<exec dir="${web-dist.dir}" executable="asciidoc" failifexecutionfails="true" searchpath="true">
<arg line="--conf-file=web_template.conf" />
<arg line="-a linkcss" />
<arg line="-a theme=diffkit" />
<arg line="-a imagesdir=img" />
<arg line="-a scriptsdir=resources" />
<arg line="-a stylesdir=resources" />
<arg line="support.txt" />
</exec>
<exec dir="${web-dist.dir}" executable="asciidoc" failifexecutionfails="true" searchpath="true">
<arg line="--conf-file=web_template.conf" />
<arg line="-a linkcss" />
<arg line="-a theme=diffkit" />
<arg line="-a imagesdir=img" />
<arg line="-a scriptsdir=resources" />
<arg line="-a stylesdir=resources" />
<arg line="-a toc" />
<arg line="changelog.txt" />
</exec>
</target>
<target name="eg-dist" depends="dist-properties">
<copy todir="${dist.dir}/eg" overwrite="true">
<fileset dir="${tst.dir}">
<include name="**/testcase/*.h2.db" />
</fileset>
<flattenmapper />
</copy>
<copy todir="${dist.dir}/eg" overwrite="true">
<fileset dir="${tst.dir}/org/diffkit/diff/testcase">
<patternset refid="build.resources" />
</fileset>
<flattenmapper />
</copy>
<copy todir="${dist.dir}/eg" overwrite="true">
<fileset dir="${tst.dir}/org/diffkit/diff/testcase">
<patternset>
<include name="**/*.xml" />
</patternset>
</fileset>
<filterset>
<filter token="TargetDatabase" value="${demodb.name}" />
<filter token="Test18LHSTargetDatabase" value="file:./test18_lhs_demo" />
<filter token="Test18RHSTargetDatabase" value="file:./test18_rhs_demo" />
</filterset>
<flattenmapper />
</copy>
</target>
<target name="build-contrib-jar" depends="build">
<mkdir dir="${contrib.build.dir}" />
<mkdir dir="${dist.dir}" />
<javac destdir="${contrib.build.dir}" verbose="off" target="1.5" source="1.5" debug="on" deprecation="off">
<compilerarg value="-Xlint" />
<classpath>
<path refid="lib.classpath" />
<pathelement location="${build.dir}" />
</classpath>
<src path="${contrib.dir}" />
</javac>
<jar destfile="${dist.dir}/diffkit-contrib.jar" basedir="${contrib.build.dir}" />
</target>
<target name="probe_for_asciidoc">
<property environment="env" />
<echo>env.PATH--> ${env.PATH}</echo>
<condition property="asciidoc.found">
<or>
<available file="asciidoc" filepath="${env.PATH}" />
<available file="asciidoc.exe" filepath="${env.Path}" />
</or>
</condition>
<echo>asciidoc.found = ${asciidoc.found}</echo>
</target>
<target name="clean">
<delete dir="${build.dir}" includeEmptyDirs="true" failonerror="false" />
<delete dir="${unit.build.dir}" includeEmptyDirs="true" failonerror="false" />
<delete dir="${contrib.build.dir}" includeEmptyDirs="true" failonerror="false" />
<delete dir="${run.dir}" includeEmptyDirs="true" failonerror="false" />
<delete dir="${dist.dir}" includeEmptyDirs="true" failonerror="false">
<exclude name="*.__hold__" />
</delete>
<delete dir="${web-dist.dir}" includeEmptyDirs="true" failonerror="false" />
<!-- clean up scratch files created by Unit tests and TCR -->
<delete>
<fileset dir="${root.dir}">
<include name="*.diff" />
<include name="*.txt" />
<include name="*.tst" />
<include name="*.class" />
</fileset>
</delete>
<delete includeemptydirs="true">
<fileset dir="${root.dir}" includes="tcr*/**" />
</delete>
<delete includeemptydirs="true" failonerror="false">
<fileset dir="${tstscratch.dir}" />
</delete>
</target>
</project>