File: common-ant-replace.ant-inc.xml

package info (click to toggle)
libgroboutils-java 5-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 7,996 kB
  • ctags: 9,436
  • sloc: java: 59,880; xml: 12,732; sh: 377; perl: 104; makefile: 20
file content (58 lines) | stat: -rw-r--r-- 3,318 bytes parent folder | download | duplicates (3)
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
<!-- Common properties/tasks that are shared by all projects

Example of how to replace all defined common properties and tasks for a
project.  This can be directly included if the project does not need
any specialization.  Of course, any specialization could be done before the
inclusion of this as an element...

 @version: $Date: 2003/05/04 06:40:07 $
 -->
    <!-- Directory Structure -->
    <property name="dirs.sources" value="${_shared.common.dirs.sources}" />
    <property name="dirs.sources.dev" value="${_shared.common.dirs.sources.dev}" />
    <property name="dirs.sources.eut" value="${_shared.common.dirs.sources.eut}" />
    <property name="dirs.sources.ut" value="${_shared.common.dirs.sources.ut}" />
    <property name="dirs.sources.iut" value="${_shared.common.dirs.sources.iut}" />
    <property name="dirs.sources.ait" value="${_shared.common.dirs.sources.ait}" />
    
    <property name="dirs.classes" value="${_shared.common.dirs.classes}" />
    <property name="dirs.classes.dev" value="${_shared.common.dirs.classes.dev}" />
    <property name="dirs.classes.eut" value="${_shared.common.dirs.classes.eut}" />
    <property name="dirs.classes.ut" value="${_shared.common.dirs.classes.ut}" />
    <property name="dirs.classes.iut" value="${_shared.common.dirs.classes.iut}" />
    <property name="dirs.classes.ait" value="${_shared.common.dirs.classes.ait}" />
    
    <property name="dirs.xdocs" value="${_shared.common.dirs.xdocs}" />
    
    <property name="dirs.test-output" value="${_shared.common.dirs.test-output}" />

    <property name="dirs.manifests" value="${_shared.common.dirs.manifests}" />
    
    <property name="dirs.deploy-base" value="${_shared.common.dirs.deploy-base}" />
    <property name="dirs.deploy" value="${_shared.common.dirs.deploy}" />
    <property name="dirs.deploy.lib" value="${_shared.common.dirs.deploy.lib}" />
    <property name="dirs.deploy.docs" value="${_shared.common.dirs.deploy.docs}" />
    <property name="dirs.deploy.api-docs" value="${_shared.common.dirs.deploy.api-docs}" />

    <property name="dirs.work" value="${_shared.common.dirs.work}" />
    <property name="dirs.coverage" value="${_shared.common.dirs.coverage}" />
    
    
    <!-- output files -->
    <property name="output.jar-name.dev.root" value="${_shared.common.output.jar-name.dev.root}" />
    <property name="output.jar-name.dev" value="${_shared.common.output.jar-name.dev}" />
    <property name="output.jar-name.eut" value="${_shared.common.output.jar-name.eut}" />
    <property name="output.jar-name.ut" value="${_shared.common.output.jar-name.ut}" />
    <property name="output.jar-name.iut" value="${_shared.common.output.jar-name.iut}" />
    <property name="output.jar-name.ait" value="${_shared.common.output.jar-name.ait}" />
    
    <property name="output.doc-zip" value="${_shared.common.output.doc-zip}" />
    <property name="output.src-zip" value="${_shared.common.output.src-zip}" />
    <property name="output.deploy-zip" value="${_shared.common.output.deploy-zip}" />
    <property name="output.deploy-tgz" value="${_shared.common.output.deploy-tgz}" />
    <property name="output.deploy-tbz2" value="${_shared.common.output.deploy-tbz2}" />
    <property name="output.deploy-tar" value="${_shared.common.output.deploy-tar}" />