1 |
#------------------------------------------------------------------------------ |
2 |
# build.properties |
3 |
# control file for ant project targets |
4 |
# + specifies areas to be processed |
5 |
# + provides important external information for the various targets. |
6 |
# |
7 |
# TODO licensing??? |
8 |
# |
9 |
# BE CAREFUL WITH TRAILING SPACES, SHOULD BE TRIMMED HERE!!! |
10 |
#------------------------------------------------------------------------------ |
11 |
# |
12 |
# Defines one or more (comma separated) folders containing a vo-dml.properties |
13 |
# file. If multiple models are defined, there must be no trailing or internal |
14 |
# whitespaces! Having multiple models requires existence of ant.contrib.jar, |
15 |
# which is added under ./xslt/libs/ |
16 |
# |
17 |
#models=./models/ivoa,./models/source,./models/ds |
18 |
models=./models/provenancedm |
19 |
#models=./models/provenancedm-test |
20 |
#../provenance/vo-dml |
21 |
# |
22 |
#-------------------------------------- |
23 |
# when generating html: run_vo-dml2html |
24 |
#-------------------------------------- |
25 |
# If GraphViz is installed on the system, define the location of the 'dot' |
26 |
# executable here. This allows the HTML generator script to generate a |
27 |
# diagram of the model, with links from the boxes to the description in |
28 |
# the HTML documentation. |
29 |
# User MUST provide the full path to the executable |
30 |
graphviz.path = /usr/bin/dot |
31 |
#graphviz.path = "C:/Program Files (x86)/Graphviz2.38/bin/dot.exe" |
32 |
|
33 |
#-------------------------------------- |
34 |
# when generating schemas: run_vo-dml2xsd |
35 |
#-------------------------------------- |
36 |
schemalocation_root=https://volute.googlecode.com/svn/trunk/projects/dm/vo-dml/models-xsd/ |
37 |
|
38 |
#------------------------------------------------------------- |
39 |
# when generating java: run_vo-dml2pojo |
40 |
# uncomment the include of build_java.xml at end of build.xml! |
41 |
#------------------------------------------------------------- |
42 |
# File defining which models should be translated to Java, including custom |
43 |
# mapping declarations |
44 |
mapping.file=./java/gen/mapping_file.xml |
45 |
|
46 |
# Defines the root package with vodml base classes |
47 |
# SHOULD NOT BE CHANGED! |
48 |
vodml.package=org.ivoa.vodml.model |
49 |
|
50 |
# Location of jaxb .jar files |
51 |
# required for xjc generation from XML schemas, and paths generation |
52 |
# (needs to parse VO-DML docs using JAXB) |
53 |
# see http://jaxb.kava.net |
54 |
jaxb.dir=C:/software/java/jaxb-ri-2.2.11/lib |
55 |
|