# To compile and deploy your Gazelle application using Eclipse and Ant, # please create your file "build.properties" with : # - jboss.as.home : correct JBoss AS homepath (here is an example below. Must be JBoss-4.2.2.GA or + ) # - jboss.seam.home : correct JBoss Seam homepath (here is an example below. Must be JBoss-seam-2.0.0.GA or + ) # Linux jboss.as.home = /usr/local/jboss-dev jboss.as.deploy.server=${jboss.as.home}/server/default jboss.seam.home = /usr/local/jboss-seam #-Note: 'gazelle.home' contains generated data files, templates and needed binaries (Check that you have rights to write on this path) gazelle.home = /opt/inriaHL7MessageProfileRepository_dev # Windows #(Note : use '/' and not '\' , as below) #jboss.as.home = C:/Program Files/jboss-5.1.0.GA #jboss.as.deploy.server=${jboss.as.home}/server/default #jboss.seam.home = C:/Program Files/jboss-seam-2.0.0.GA #-Note: 'gazelle.home' contains generated data files, templates and needed binaries (Check that you have rights to write on this path) #gazelle.home = C:/inriaHL7MessageProfileRepository_dev # ----------------------------------------------------------------------- # The following variables are used by all projects (in the build.xml files) - You don't need to modify them. ear.project = ${application}-ear ear.exploded.dir = ../${ear.project}/exploded-archives/${ear.project}.ear ear.dist.dir = ../${ear.project}/dist/ ear.dist.file = ${ear.dist.dir}/${ear.project}.ear ear.earcontent.dir = ../${ear.project}/EarContent/ ear.lib.dir = ${ear.earcontent.dir}/lib ear.application.file = ${ear.lib.dir}/META-INF/application.xml ear.sql.data.dir = ../${ear.project}/sql/data-${profile}/ ear.sql.dir = ../${ear.project}/sql/ check.properties = true # Directories in which are stored the files (profiles and tables) to store in database. # Those files are usually stored in the gazelle/branches/Modules/HL7-Parser project of SVN # Use absolute or relative to base dir (..) path import.script = ./HL7-Parser/import.py profiles.repository = ./HL7-Parser/Profiles profiletables.repository = ./HL7-Parser/ProfileTables # Testng variables - You don't need to modify them. test.src.dir = ejbModule/ testng.lib = ${ear.lib.dir}/testng.jar javac.debug = on javac.verbose = off javac.deprecation = on javac.optimize = on stop.tests.onfailure = false testng.report.dir = test-output testng.xml.dir = . # Variables used to get the SVN version (it helps to reference the generated EAR) - You don't need to modify them. svnversion.lib = ${ear.lib.dir}/andariel-1.2.3.jar common.versioning.build.src = ../Common-ejb/ejbModule/net/ihe/gazelle/common/versioning # - - - - - - - - - - - - - - - - - - - # Properties used by this application # Application url basename : Name of the application used to reach the application in the URL address within the browser (also called 'context root', eg : http://sumo.irisa.fr:8080/APPLICATION.URL.BASENAME ). application.url.basename= InriaHL7MessageProfileRepository # Application url : do not use localhost for production server, for instance this property is inserted in the registration email, if you click on a link with localhost, it won't work. Example of right URL : http://yoko.irisa.fr:8080/${application.url.basename} #server.url = http://sumo-test.irisa.fr server.url = http://localhost server.port = 8080 application.url = ${server.url}:${server.port}/${application.url.basename} #application.url = http://sumo.irisa.fr:8080/${application.url.basename} # Name of the application (will be rendered in the web pages) application.name = Inria HL7 Message Profile Repository (Development version) # Name of the application administrator (will be rendered in the web pages) application.admin.name = Anne-Gaelle Berge # Email address of the application administrator (will be rendered in the web pages) application.admin.email = aberge@irisa.Fr # Email address used for sent emails history (all emails sent by the application are also sent as BCC to this account for history/checking in) application.email.account.for.history = net.gazelle.dev@gmail.com # Issues Tracker website URL - Used by some links in the application to report a problem (eg. of value = 'http://sumo.irisa.fr:8080/jira/' ) application.issue.tracker.url = http://sumo.irisa.fr:8080/jira/ # Gazelle Release Notes URL - Used by some links in the application to detail each Gazelle Release : list of improvements, bug fixed (eg. of value = http://sumo.irisa.fr/europe2009/gazelle_release_notes.html) application.gazelle.release.notes.url = http://sumo.irisa.fr/europe2009/gazelle_release_notes.html # Application time zone - (possible values : 'UTC+01' (Paris), 'UTC-06' (Chicago), 'UTC-15' (Tokyo) ...) application.time.zone = UTC+01 # Application Zone - (possible values : 'EUROPE', 'NA' , 'JAPAN') - Rendered pages depend on the zone (homepage, contacts, informations... ) application.zone = EUROPE