This procedure is for those building [fleXive] from the source code.
build.properties.sample
file located in the root directory of the
[fleXive] source code
to
build.properties.
jboss.home=/path/to/jboss
# path to deploy the ear
deploy.ear.path=${jboss.home}/server/all/deploy
# path to deploy needed runtime libs like emma.jar
deploy.lib.path=${jboss.home}/server/all/lib
# path to the embedded jboss ejb3 container neededfor unit testing
jboss.embedded.path=${jboss.home}/jboss-embeddable/
# (...)
ant db.update
before
ant all
in the root directory of the
[fleXive] source code,
where the
build.xml
file
resides.
This will recreate all configured databases and destroy existing data.
To deploy the ear execute
ant deploy
Don't forget to set your
${jboss.home}
variable in the
build.properties
file properly!
JDK_HOME
and
JAVA_HOME
variables accordingly as explained in section
Prerequisites.