# 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 + ) # - svn.bin : correct SVN binary filepath (here is an example below) # - database connection configuration variables # - - - - - - - - - - - - - - - - - - - # Linux jboss.as.home = /usr/local/jboss jboss.as.deploy.server=${jboss.as.home}/server/default jboss.seam.home = /usr/local/jboss-seam svn.bin = svn gazelle.home = /opt/gazelleMasterModel_dev # - - - - - - - - - - - - - - - - - - - # Mac #jboss.as.home = /Applications/jboss-4.2.2.GA/ #jboss.seam.home = /opt/jboss-seam/ #svn.bin = svn # - - - - - - - - - - - - - - - - - - - # Windows #(Note : use '/' and not '\' , as below) #jboss.as.home = C\:/jboss-4.2.2.GA/ #jboss.seam.home = C\:/temp/jboss-seam-2.0.0.GA #- For win32 systems (download svn from http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91) #svn.bin = C:/Program Files/Subversion/bin/svn.exe #gazelle.home = C:/gazelle # - - - - - - - - - - - - - - - - - - - # Database connection configuration database.connection.url=localhost/gazelle-master-model-prod database.connection.username=gazelle database.connection.password=gazelle # - - - - - - - - - - - - - - - - - - - # 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= GMM-prod # 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.irisa.fr server.port = 8080 application.url = ${server.url}:${server.port}/${application.url.basename} # The following is the path (need to terminate with "/") where to store the screen captured during the execution of the testng build testng-screenshot = /var/www/img/tm/ # Name of the application (will be rendered in the web pages) application.name = IHE Gazelle Model # Name of the application administrator (will be rendered in the web pages) application.admin.name = IHE Admin # Email address of the application administrator (will be rendered in the web pages) application.admin.email = eric.poiseau@inria.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@gmail.com # Application time zone - Not used for now (possible values : ...) application.time.zone = UTC+0200 # SMTP configuration : Port is normally 25 or 2525, username/password is normally not used (may stay as test/test) application.smtp.port = 25 application.smtp.hostname = localhost application.smtp.username = test application.smtp.password = test # Default language used by the application (possible values : en, fr, de, ru, ja, zh, bg) application.language.default = en # Do you want to drop your DB and reimport all SQL data during deployment (only for Dev) ? (possible values : 'true' or 'false') db.drop.and.import = false # Do you want to log SQL request in your Seam logs ? (possible values : 'true' or 'false') db.show.sql.log = false # Do you want to load Drools at startup (homepage) ? (possible values : 'true' or 'false') drools.loaded.at.startup = true # ----------------------------------------------------------------------- # The following variables are used by all projects (in the build.xml files) - You don't need to modify them. application = ${application} ear.project.name = ${application}-ear war.project.name = ${application}-ui ear.dir = ../${ear.project.name}/ ear.exploded.dir = ../${ear.project.name}/exploded-archives/${ear.project.name}.ear war.exploded.dir = ../${war.project.name}/exploded-archives/${war.project.name}.war ear.dist.dir = ../${ear.project.name}/dist/ war.dist.dir = ../${war.project.name}/dist/ ear.dist.file = ${ear.dist.dir}/${application.url.basename}-${profile}.ear war.dist.file = ${war.dist.dir}/${war.project.name}.war ear.earcontent.dir = ../${ear.project.name}/EarContent/ ear.lib.dir = ${ear.earcontent.dir}/lib ear.application.file = ${ear.lib.dir}/META-INF/application.xml ear.sql.data.dir = ../${ear.project.name}/sql/data-${profile}/ ear.sql.dir = ../${ear.project.name}/sql/ check.properties = true # 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