[jboss-user] [jBPM] - Re: Install JBPM on Mysql without ANT

Thomas Setiabudi do-not-reply at jboss.com
Mon Aug 6 12:09:13 EDT 2012


Thomas Setiabudi [https://community.jboss.org/people/thomas.setiabudi] created the discussion

"Re: Install JBPM on Mysql without ANT"

To view the discussion, visit: https://community.jboss.org/message/752243#752243

--------------------------------------------------------------
Hi Sadiroveski,

to install the demo without running the ant script, you can refer to the build.xml provided with the jbpm full installer package.

look for this line in build.xml
<target name="install.demo" depends="install.jboss,install.guvnor.into.jboss,install.designer.into.jboss,install.jBPM-gwt-console.into.jboss,install.jBPM-ht.into.jboss,install.form.builder.into.jboss,install.eclipse,install.jBPM.runtime,install.droolsjbpm-eclipse.into.eclipse" />

there you get what the ant install.demo command do. when you execute ant install.demo, it will execute the dependencies, so the next thing you should look is the install.jboss
<target name="install.jboss" depends="download.jboss">
    <unzip src="${install.home}/lib/jboss-as-${jboss.server.version}.zip" dest="${install.home}" />
    <chmod perm="a+x" file="${jboss.home}/bin/run.sh" />
    <chmod perm="a+x" file="${jboss.home}/bin/shutdown.sh" />
    <chmod perm="a+x" file="${jboss.home}/bin/standalone.sh" />
      <chmod perm="a+x" file="${jboss.home}/bin/jboss-admin.sh" />
  </target>

it unzip the jboss AS from the lib directory to the install home directory.
So, by replicating what the build.xml do manually, you should be able to achieve the same result like running the ANT install.demo command.


Regards,
Thomas Setiabudi
--------------------------------------------------------------

Reply to this message by going to Community
[https://community.jboss.org/message/752243#752243]

Start a new discussion in jBPM at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2034]

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.jboss.org/pipermail/jboss-user/attachments/20120806/3c80ab33/attachment.html 


More information about the jboss-user mailing list