Hi everyone out there! This is another post about the jBPM Console NG. After 6 months of heavy work I’m happy to be writing this post for the developers community to try it out. On this post I will be explaining how to build the application from the sources. The main idea behind this is to know how to set up your environment and modify the application while your testing it. You will basically learn all you need to know to contribute with the project.
Introduction
The jBPM Console NG aims to provide a Task & Process Management collaborative environment to facilitate the adoption of the BPM Suite in a company. Downloading the sources and compiling the application will allow you to try the application and modify it in the case that you want to extend it or fix bugs. The application is under the Apache License V2 so it can be used and modified according with this license.
Working with the Source Code
The first step in order to get everything running is to get the source code using GIT. This are the things that you need to have installed in your computer in order to proceed:
- JDK 6
- Maven 3.x
- Git
- Any IDE (Eclipse, IntelliJ, Netbeans) with the maven plugin installed
- JBoss Application Server 7.1.1 (optional)
Once you get all these tools installed we can proceed to get the source code from the github repository:
https://github.com/droolsjbpm/jbpm-console-ng/
In order to get a “Clone” of the repository to work you must from the terminal:
git clone https://github.com/droolsjbpm/jbpm-console-ng.git
Once it’s done, you can compile the source code, here you have two alternatives:
1) Compile the project for development purposes with:
mvn clean install
2) Compile the project to generate the distribution wars for JBoss and Tomcat + the documentation
mvn clean install -PfullProfile
Sit back and relax! The first time that you do this step Maven requires to download tons of libraries, so you will need to wait.
Running the application in Hosted Mode
Once the project is compiled, the jbpm-console-ng-showcase can be executed in what GWT calls “Hosted Mode” (also known as Developer Mode)
In order to start up the application in hosted mode you should do the following:
1) The jBPM Console NG Showcase contains the final application distribution code:
cd jbpm-console-ng-showcase/
2) Run in hosted mode using the GWT Maven Plugin
mvn gwt:run
This will start up a Jetty + the GWT Development Mode screen which will allow you to copy the URL where the application is hosted for you to try it:

Copying the URL (http://127.0.0.1:8888/org.jbpm.console.ng.jBPMShowcase/jBPM.html?gwt.codesvr=127.0.0.1:9997) into your browser (For hosted mode you need to have the GWT plugin installed in your browser, don’t worry it’s automatically installed if you don’t have it) will open the application. I strongly recommend to use Firefox for development mode or Chrome (usually slower), because for developing we scope the compilations to work on FF and Chrome (gecko browsers).
Running the application in JBoss AS 7
Now if you want to deploy the application on JBoss, you need to go the the second compilation option (-PfullProfile) which will take some extra time to compile the application for all the browsers and all the languages (English, Spanish, etc.). In order to deploy the application to your jboss as 7 instance you will need to move the war file generated inside the jbpm-console-ng/jbpm-console-ng-distribution-wars/target/jbpm-console-ng-jboss-as7.war into the <jboss-as>/standalone/deployments directory and then rename the war file to jbpm-console-ng.war. The name of the application will be used as the root context for the application.
For the JBoss you also need to do some configurations for the users and roles. Inside the jBPM Console NG you will need to have set up the users that will be available for your installation. Those are handle by JBoss Security Domains. In order to set up the security domains, you need to do the following:
1) Edit the <jboss_as>/configuration/standalone.xml and add a new security domain:
<security-domain name="jbpm-console-ng" cache-type="default"> <authentication> <login-module code="UsersRoles" flag="required"> <module-option name="usersProperties" value="${jboss.server.config.dir}/users.properties"/> <module-option name="rolesProperties" value="${jboss.server.config.dir}/roles.properties"/> </login-module> </authentication> </security-domain>
2) add the users.properties and roles.properties files
content of the user.properties file:
maciek=Merck salaboy=salaboy katy=katy john=john
content of the roles.properties file:
maciek=jbpm-console-user,kie-user,analyst,HR,PM,Reviewer salaboy=jbpm-console-user,user,analyst,PM,IT,Reviewer katy=jbpm-console-user,HR john=jbpm-console-user,Accounting
The only requirement for the roles file is to include the jbpm-console-user role for all the users.
Note that this is the simplest way of configuring a security domain, but you can go for more advanced options, like configuring the security domain to use an LDAP server or a Database to authenticate your users and roles. (https://docs.jboss.org/author/display/AS7/Security+subsystem+configuration)
Then you are ready to go, you can start jboss with:
1) Go into the bin directory:
cd <jboss-as>/bin/
2) Start the application server:
./standalone.sh
On Openshift
In order to deploy the application into openshift you need to obviously have an openshift account. Once you set up your account you will need to do almost the same configurations as in the JBoss Application. In the openshift git repository that you clone, you will have a specific dir to apply this configuration:
.openshift/config
There you will find the standalone.xml file and you can place the users.properties and roles.properties files.
So in the standalone.xml file you will need to configure the security domains as we did before and add the users.property and roles.properties files.
Besides this configuration you will need to set up a system property for storing the knowledge repository:
<system-properties> <property name='org.kie.nio.git.dir' value='~/jbossas-7/tmp/data'/>; </system-properties>
The Application
Now you are ready to use the application, so if you point your browser to the URL provided by the hosted mode or to http://localhost:8080/jbpm-console-ng/ you will be able to access the login form.
As you will see, before entering the application you will need to provide your credentials. Once you are in the application is divided in:

In the Authoring section you will be able to access to the Process Designer to model your business processes. The Process Management section will allow you to list the available Business Processes and Start new instances, and also monitor those instances. The Work Section will enable you to access the Task Lists (Calendar and Grid View) to work on the tasks assigned to you. In order to use the BAM section you will need to deploy the BAM dashboard application but I will describe that in a future post.
Feel free to try it out and write a comment back if you find something wrong.
Contributions
Your feedback means a lot, but if you want to contribute, you can fork the jbpm-console-ng repository in github: https://github.com/droolsjbpm/jbpm-console-ng/
I will appreciate if you can test the Task Lists and Process Management screens and write feedback in this post, so I can iteratively improve what we have. I will be writing another post to describe the screens and also to list a set of small tasks that you can contribute back.
;
That line needs to remove the ‘;’ in your post above.
LikeLike
[property name=’org.kie.nio.git.dir’ value=’~/jbossas-7/tmp/data’/];
same line but with square brackets to post here, need to remove ; or it won’t deploy.
LikeLike
You can also use the OPENSHIFT env vars here too in the line:
property name=”org.kie.nio.git.dir” value=”${env.OPENSHIFT_DATA_DIR}”
LikeLike
Thanks Eric! I will update the post with that information. I’m about to publish an updated version with some examples as well. Stay tuned!
LikeLike
Thanks for the great work. I am trying to compile to get a version to deploy on my tomcat 6 and i keep getting this error, kindly help.
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.5.1:compile (default-compile) on project jbpm-console-ng-process-runtime-api: Compilation failure
[ERROR] E:\JBPM NG\jbpm-console-ng\jbpm-console-ng-process-runtime\jbpm-console-ng-process-runtime-api\src\main\java\org\jbpm\console\ng\pr\model\DummyProcessPath.java:[24,7] error: DummyProcessPath is not abstract and does not override abstract method getFileNameWithoutExtension() in Path
LikeLike
Hi, yeah, that was fixed yesterday. If you pull all the changes from master you will be able to compile the application. Here is the commit that fixed it: https://github.com/droolsjbpm/jbpm-console-ng/commit/f1781d764eb894e52881952dcfb74f9b6dd35b41
LikeLike
Thanks for the update. What could be the cause of this error, could it be that the file is to heavy and my link is just slow in downloading.
Downloading: http://repository.jboss.org/nexus/content/groups/public/org/jbpm/jbpm-form-modeler-app/6.1.0-SNAPSHOT/jbpm-form-modeler-app-6.1.0-20130918.111653-88.war
[INFO] ————————————————————————
[INFO] Reactor Summary:
[INFO]
[INFO] jBPM Console NG …………………………….. SUCCESS [3.370s]
[INFO] jBPM Console NG – Module Archetype ……………. SUCCESS [3.106s]
[INFO] jBPM Console NG – Human Tasks Panels ………….. SUCCESS [0.425s]
[INFO] jBPM Console NG – Human Tasks API …………….. SUCCESS [5.362s]
[INFO] jBPM Console NG – Process Runtime Panels ………. SUCCESS [0.321s]
[INFO] jBPM Console NG – Process Runtime API …………. SUCCESS [7.023s]
[INFO] jBPM Console NG – Business Domain Panels ………. SUCCESS [1.176s]
[INFO] jBPM Console NG – Business Domain API …………. SUCCESS [5.679s]
[INFO] jBPM Console NG – Human Tasks Client ………….. SUCCESS [20.749s]
[INFO] jBPM Console NG – Human Tasks Backend …………. SUCCESS [11.315s]
[INFO] jBPM Console NG – Process Runtime Client ………. SUCCESS [13.894s]
[INFO] jBPM Console NG – Process Runtime Backend ……… SUCCESS [3.956s]
[INFO] jBPM Console NG – Business Domain Client ………. SUCCESS [7.472s]
[INFO] jBPM Console NG – Business Domain Backend ……… SUCCESS [5.877s]
[INFO] jBPM Console NG – Executor Service Panels ……… SUCCESS [0.217s]
[INFO] jBPM Console NG – Executor Service API ………… SUCCESS [3.436s]
[INFO] jBPM Console NG – Executor Service Client ……… SUCCESS [8.556s]
[INFO] jBPM Console NG – Executor Service Backend …….. SUCCESS [3.213s]
[INFO] jBPM Console NG – Dashboard ………………….. SUCCESS [0.391s]
[INFO] jBPM Console NG – Dashboard API ………………. SUCCESS [2.099s]
[INFO] jBPM Console NG – BPM Home Panels …………….. SUCCESS [0.343s]
[INFO] jBPM Console NG – BPM Home Client …………….. SUCCESS [4.067s]
[INFO] jBPM Console NG – Dashboard Backend …………… SUCCESS [1.760s]
[INFO] jBPM Console NG – Dashboard Client ……………. SUCCESS [4.321s]
[INFO] jBPM Console NG – Showcase …………………… FAILURE [2:56.088s]
[INFO] ————————————————————————
[INFO] BUILD FAILURE
[INFO] ————————————————————————
[INFO] Total time: 4:57.703s
[INFO] Finished at: Thu Sep 19 14:42:16 EAT 2013
[INFO] Final Memory: 93M/222M
[INFO] ————————————————————————
[ERROR] Failed to execute goal on project jbpm-console-ng-showcase: Could not resolve dependencies for project org.jbpm:jbpm-console-ng-showcase:war:6.1.0-SNAPSHOT: Could not transfer artifact org.jbpm:jbpm-form-modeler-app:war:6.1.0-20130918.111653-88 from/to jboss-public-repository-group (http://repository.jboss.org/nexus/content/groups/public/): GET request of: org/jbpm/jbpm-form-modeler-app/6.1.0-SNAPSHOT/jbpm-form-modeler-app-6.1.0-20130918.111653-88.war from jboss-public-repository-group failed: Premature end of Content-Length delimited message body (expected: 14728703; received: 1596113
LikeLike
Yeah that could be the problem, but the file is not than large only 14.7 MB.
Can you try again? You can also try to download the file manually to see that your links is not the problem:
http://repository.jboss.org/nexus/content/groups/public/org/jbpm/jbpm-form-modeler-app/6.1.0-SNAPSHOT/jbpm-form-modeler-app-6.1.0-20130918.111653-88.war
LikeLike
Hi,thanks for the assistance. How do i fix this error.
E:\JBPM NG\jbpm-console-ng\jbpm-console-ng-showcase\target\jbpm-console-ng-showcase-6.1.0-SNAPSHOT, -localWorkers, 2, -XfragmentCount, -1, -gen, E:\JBPM NG\jbpm-console-ng\jbpm-console-ng-showcase\target\.generated, org.jbpm.console.ng.jBPMShowcase]: Error while executing process. Cannot run program “C:\Program Files\Java\jdk1.7.0_07\jre\bin\java”: CreateProcess error=206, The filename or extension is too long
LikeLike
that sounds as a problem with maven in windows.. you can google about how to solve it but it seems that the maven command with all the parameters is too long for windows. Any ideas why do you have these arguments: -localWorkers, 2, -XfragmentCount, -1, -gen ??
LikeLike
Hi Mauricio,
I don’t know if this is the right place to make this kind of question, if don’t, could you please let me know where i should do this?
I’ve been working on a proof of concept on some open source BPM engines recently and i’ve read your jBPM5 book. In my opinion jBPM5/6 is the best one because of the strong integration with drools platform. Integration with a business rules engine is a main requirement for BPMS.
The main concern to me in adopting jBPM is on the BPMN diagrams: as far as i could test, even on jbpm6 CR2, the designers pallete don’t have elements like pools, boundary events, data storages, complex gateways and some other elements from the BPMN2 specification (i know it’s almost impossible to implement all of them). I’ve tried to discuss that on forums and one person told me i had to isolate the process diagrams from communication, collaboration and orchestration diagrams but it doesn’t make sense to me. Except for the communication diagrams, me and many business analysts i know used to model processes putting in the collaboration and process diagrams in the same diagram.
I just wanted to know if implementing those missing elements is in a roadmap for future implementations or if this something related to product conception.
Thanks for your support
LikeLike
Hi Paulo,
Question are usually asked to the jbpm forums. That’s where all the community interaction usually happens.
About your question, and regarding to the BPMN2 specification I’m not sure to understand what the problem is. The BPMN2 specification is divided into different profiles. With jbpm 6.0 we are planning to cover the (IIRC) Business Process Execution profile. Collaboration diagrams and execution can be achieved, and I know that we are covering some areas, but as you mention, there is no way to create a collaboration diagram just yet in the process designer.
Implementing all the other profiles in the BPMN2 specification is something that is in our Roadmap, but I think that first we will be providing a robust tool for the process executions.
Can you please share with us what exactly your requirements are? And what kind of use cases do you want to cover? Do you have a strong need for collaboration diagrams? Usually you need Collaboration Diagrams when you want to represent B2B interactions and you already covered all your business processes internally.
LikeLike
Maurício,
Sorry for the late response.
Today i had the opportunity to watch remotely your presentation on London Free Workshop. You guys are really doing great in creating a robust tool for process execution. Besides that it’s an integrated plataform for BPMS, BRMS, BAM and CEP implementations.
Going back to the question i did before, yes, i have a strong requirement on using collaboration diagrams.
For instance. The company i work for works for governmental organizations that have to publish a public specification when an opportunity for hiring an external service is opened. The company has to be able to detect the document was published, elaborate a proposal, send the proposal and monitor the participation in a public quotation process. As you can see, lots of external interaction is needed.
I have similar requirements for suppliers and other organizations processes that I need to orchestrate.
In my opinion one of the most critical factors for a BPM engine’s implementation wide adoption is the participation of business people on process design.
Some BPMN2 elements are critical. In my opinion, if jbpm cover boundary events, inline and expanded sub-processes, pools and message flows, it will cover most of the processes scenarios.
Thanks for your attention,
Paulo R.
LikeLike
As far as I know we are still working in pools and message flows but all the other elements are already covered.
You can check the jbpm-bpmn2 project for test cases that covers pools and message flows. If you can provide some example bpmn2 (xml) files that shows exactly what are you trying to achieve we can analyse them and see how to provide the features that you consider that are missing.
Cheers
PS: thanks for watching the workshop!
LikeLike
Hi there, for all time i used to check website posts here early in the morning, since i like to gain knowledge of more and more.
LikeLike
In jBPM5.4, you could access the form for a human/user task via the REST service. It doesn’t seem like you can do this from jBPM6.0 – can you? Or, at the very least, can you tell via REST what are the task input and output variables? Likewise, what about accessing the process diagram?
LikeLike
I’m afraid that’s not possible yet, but it is on the roadmap, here is the link with the current available methods.
Notice that you can access to the task contents which contains the task variables
https://github.com/mrietveld/droolsjbpm-integration/wiki/Rest-API
LikeLike
My experience with the task content is that the document content provides only the input keys/values that have been set, and the output content shows the output keys/values that have been set.
In the setting in which I am using user tasks, I need to know what output variables a task has so that I can display them to the user for data entry, and thus complete the task.
I can see the task variable mappings in the KIE workbench, so I thought it might be possible to obtain them via the REST interface. How about either a “withvars” URI for tasks like the one for processes, or a “task/{task-id}/variables” URI to get an XML description of just the task input and output variables?
LikeLike
Until the REST interface is updated, can I query task information using the API? I have jBPM 6.0.0.CR2 installed mostly out-of-the-box – how do I talk to it via the API? Do you have any simple code snippets?
LikeLike
Hi Geoff,
Have you able to access the Form via the rest api?
LikeLike
Accessing the forms and getting the html to render is a feature that is being worked on. It will be ready for the next release. So stay tuned!
LikeLike
Thanks Salaboy.
Can you please tell me whether is it possible to access the process diagram.In JBPM 5.4 we can able to access the process diagram from outside using rest api. Wondering if that is possible in JBPM 6.0 . Thanks.
LikeLike
I’m not sure about this one. You will need to ask in the forums. If it is not possible please report a Jira about that so it can be fixed for 6.1.
Regards
LikeLike
This is a new feature that is being developed as we speak, and it will be ready for 6.1.
LikeLike
Thanks. We are eagerly Waiting for 6.1 🙂
But we are trying now to get the form by ourself using rest api. but the problem now is whatever the ftl form generated by JBM 6 dont have a submit button or HTML tags. Any idea how they are going to address that issue?
LikeLike
Hi Jay,
the work that is being done is retrieving the forms generated with the form modeller and some javascript calls are provided to interact with the backend services, for example to start a task or to start a process instance. I’ve heard today that next week there will be a blog post about the progress on this front, stay tuned!
LikeLike
Ok Great. Thanks.
LikeLike
Hi Salaboy,
The blog whatever you have been mentioned that is available now?
LikeLike
Hi Salaboy,
Any update on the blog for accessing form using rest? Thanks
LikeLike
Did you check this: http://kverlaen.blogspot.be/2014/05/embedding-process-forms-in-your.html ??
LikeLike
Thanks Salaboy. Will check that .
LikeLike
Does anyone have any decent documentation for adjusting jBoss/jBPM to use SqlServer instead of H2? I’ve tried and failed in both 6.0.0.CR2 and CR5. I’m currently getting SQL-level errors about the inability to get Task objects. Any clues?
LikeLike
Hi Geoff,
Can you share in the forums what’s the issue that you are getting with SQL Server?
We have this job for mssql which is testing that it works for that version: https://hudson.jboss.org/hudson/view/Drools%20jBPM/job/drools-persistence-db-matrix/database=mssql2008R2,jdk=java15_default,label=RHEL_any/
Version -> mssql2008R2
LikeLike
Hi, I’m trying to run an out-of-the-box jBPM console server, except pointing to our mssql server instead of the h2 db. I’ve done the following steps:
1. Created db/sqlserver_module.xml:
– – –
2. Modified db/jbpm-persistence-JPA2.xml:
3. Modified build.properties:
#sqlserver
db.name=sqlserver
db.driver.module.prefix=net/sourceforge/jtds
db.driver.jar.name=jtds-1.3.1.jar
db.driver.download.url=http://central.maven.org/maven2/net/sourceforge/jtds/jtds/1.3.1/jtds-1.3.1.jar
4. Modified standalone-as-7.1.1.Final.xml (and -full-):
– – jdbc:jtds:sqlserver:mem:test;DB_CLOSE_DELAY=-1 jtds – sa sa – jdbc:jtds:sqlserver://aps-sql/test jtds – sa xxx – – net.sourceforge.jtds.jdbc.Driver
I can see the mssql server via some Java jdbc code, but on starting jBoss I get the following exception:
{“JBAS014653: Composite operation failed and was rolled back. Steps that failed:” => {“Operation step-2” => {“JBAS014671: Failed services” => {“jboss.deployment.unit.\”jbpm-console.war\”.WeldService” => “org.jboss.msc.service.StartException in service jboss.deployment.unit.\”jbpm-console.war\”.WeldService: org.jboss.weld.exceptions.DeploymentException: Exception List with 1 exceptions:
Exception 0 :
org.jboss.weld.exceptions.WeldException: WELD-000049 Unable to invoke [method] @PostConstruct public org.jbpm.services.task.impl.TaskDeadlinesServiceImpl.init() on org.jbpm.services.task.impl.TaskDeadlinesServiceImpl@201330dd
at org.jboss.weld.bean.AbstractClassBean.defaultPostConstruct(AbstractClassBean.java:518)
…
Caused by: java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
…
Caused by: java.lang.RuntimeException: Operation failed
at org.jbpm.shared.services.impl.JbpmServicesPersistenceManagerImpl.queryWithParametersInTransaction(JbpmServicesPersistenceManagerImpl.java:460)
…
Caused by: javax.persistence.PersistenceException: org.hibernate.exception.SQLGrammarException: Invalid object name ‘Task’.
at org.hibernate.ejb.AbstractEntityManagerImpl.convert(AbstractEntityManagerImpl.java:1361)
…
Caused by: org.hibernate.exception.SQLGrammarException: Invalid object name ‘Task’.
at org.hibernate.exception.internal.SQLStateConversionDelegate.convert(SQLStateConversionDelegate.java:122)
…
Caused by: java.sql.SQLException: Invalid object name ‘Task’.
at net.sourceforge.jtds.jdbc.SQLDiagnostic.addDiagnostic(SQLDiagnostic.java:372)
…
What am I doing wrong, or what step(s) am I missing?
Cheers, Geoff
LikeLike
Sorry, some of that didn’t come through. In sqlserver_module.xml I have: <module name=”net.sourceforge.jtds” …> and <resource-root path=”jtds-1.3.1.jar”/>
In standalone….xml I have:
<datasource use-java-context=”true” enabled=”true” pool-name=”H2DS” jndi-name=”java:jboss/datasources/jbpmDS” use-ccm=”true” jta=”true”> <connection-url>jdbc:jtds:sqlserver://aps-sql/test</connection-url> <driver>jtds</driver> <security> <user-name>sa</user-name> <password>xxx</password> </security> </datasource> <drivers> <driver module=”net.sourceforge.jtds” name=”jtds”> <xa-datasource-class>net.sourceforge.jtds.jdbc.Driver</xa-datasource-class> </driver> </drivers>
LikeLike
Sigh! And of course in jbpm-persistence-JPA2.xml I have:
<property name=”hibernate.dialect” value=”org.hibernate.dialect.SQLServerDialect”/>
LikeLike
Is it working now?
LikeLike
No, it still generates the exception about Task objects. I feel I must be missing a configuration step somewhere.
LikeLike
Can you take a look at the jtds driver documentation to see if they provide an XA driver? maybe you need to specify another class for the XA driver.
LikeLike
Just for info, we finally got it talking to an MS-SQL server, but we had to manually create the Task table from scratch (based on data from our H2 version). Our SQL server had issues with the table having 3 timestamp columns (so we used smalldatetime instead).
LikeLike
Good to know. As far as I know we are providing some DDLs for all the major vendors including MS-SQL, not sure where those DDL are but look at the docs for more information. We definitely need to check that the MS-SQL DDLs provided are taking your comment into account.
LikeLike
Hi,first of all thanks for your helpfull post.
I try to compile JBPM Console NG on netbeans 7.3 on ubuntu.all dependency downloaded on clean and build project but there is an error:
Reactor Summary:
jBPM Console NG …………………………….. SUCCESS [2.980s]
jBPM Console NG – Module Archetype ……………. SUCCESS [4.555s]
jBPM Console NG – Human Tasks Panels ………….. SUCCESS [0.563s]
jBPM Console NG – Human Tasks API …………….. SUCCESS [3.661s]
jBPM Console NG – Process Runtime Panels ………. SUCCESS [0.317s]
jBPM Console NG – Process Runtime API …………. SUCCESS [5.248s]
jBPM Console NG – Business Domain Panels ………. SUCCESS [0.321s]
jBPM Console NG – Business Domain API …………. SUCCESS [4.440s]
jBPM Console NG – Human Tasks Client ………….. SUCCESS [12.809s]
jBPM Console NG – Human Tasks Backend …………. FAILURE [45.138s]
jBPM Console NG – Process Runtime Client ………. SKIPPED
jBPM Console NG – Process Runtime Backend ……… SKIPPED
jBPM Console NG – Business Domain Client ………. SKIPPED
jBPM Console NG – Business Domain Backend ……… SKIPPED
jBPM Console NG – Executor Service Panels ……… SKIPPED
jBPM Console NG – Executor Service API ………… SKIPPED
jBPM Console NG – Executor Service Client ……… SKIPPED
jBPM Console NG – Executor Service Backend …….. SKIPPED
jBPM Console NG – Dashboard ………………….. SKIPPED
jBPM Console NG – Dashboard API ………………. SKIPPED
jBPM Console NG – BPM Home Panels …………….. SKIPPED
jBPM Console NG – BPM Home Client …………….. SKIPPED
jBPM Console NG – Dashboard Backend …………… SKIPPED
jBPM Console NG – Dashboard Client ……………. SKIPPED
jBPM Console NG – Showcase …………………… SKIPPED
————————————————————————
BUILD FAILURE
————————————————————————
Total time: 1:25.125s
Finished at: Sun Dec 29 11:53:33 IRST 2013
Final Memory: 63M/364M
————————————————————————
Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.15:test (default-test) on project jbpm-console-ng-human-tasks-backend: There are test failures.
Please refer to /home/mohebbi/projects/jbpm-console-ng-master/jbpm-console-ng-human-tasks/jbpm-console-ng-human-tasks-backend/target/surefire-reports for the individual test results.
May you help me to solve it.
thanks.
LikeLike
Hi Sahar,
But you are not showing the error. If you scroll up you will find the error lines just above the lines you paste. If you want my help you will need to use pastebin.com and paste there the whole console output resulting from mvn clean install.
Cheers
LikeLike
Thanks for your attention .
I tried pastebin.com but it had network error to post .
is there any way that I could send you a trace of mvn clean install?
LikeLike
OK.thats the full trace of mvn clean install
https://community.jboss.org/message/851039#851039
Thank You in Advance
LikeLike
Hi
I have received the same error in all 6.x.x branches include in master branch
I report it here https://github.com/droolsjbpm/jbpm-console-ng/issues/75
please check it out.
thanks
LikeLike
I will investigate the issue and report back in github
LikeLike
Hi, when I run “mvn clean install” I always end up getting the error below. If I try and import the Maven projects in Eclipse via m2e, I have an error again
gwt-maven-plugin:2.5.0:resources (No marketplace entries found to handle Execution gwt-compile, in jbpm-console-ng-showcase/pom.xml in Eclipse.)
Any idea? I am stuck…. Thank You!
[INFO] — gwt-maven-plugin:2.5.0:compile (gwt-compile) @ jbpm-console-ng-showcase —
[INFO] ————————————————————————
[INFO] Reactor Summary:
[INFO]
[INFO] jBPM Console NG …………………………….. SUCCESS [1.466s]
[INFO] jBPM Console NG – Module Archetype ……………. SUCCESS [1.380s]
[INFO] jBPM Console NG – Human Tasks Panels ………….. SUCCESS [0.093s]
[INFO] jBPM Console NG – Human Tasks API …………….. SUCCESS [1.907s]
[INFO] jBPM Console NG – Process Runtime Panels ………. SUCCESS [0.079s]
[INFO] jBPM Console NG – Process Runtime API …………. SUCCESS [2.243s]
[INFO] jBPM Console NG – Business Domain Panels ………. SUCCESS [0.069s]
[INFO] jBPM Console NG – Business Domain API …………. SUCCESS [1.692s]
[INFO] jBPM Console NG – Human Tasks Client ………….. SUCCESS [8.702s]
[INFO] jBPM Console NG – Human Tasks Backend …………. SUCCESS [4.265s]
[INFO] jBPM Console NG – Process Runtime Client ………. SUCCESS [4.900s]
[INFO] jBPM Console NG – Process Runtime Backend ……… SUCCESS [1.519s]
[INFO] jBPM Console NG – Business Domain Client ………. SUCCESS [3.711s]
[INFO] jBPM Console NG – Business Domain Backend ……… SUCCESS [3.983s]
[INFO] jBPM Console NG – Executor Service Panels ……… SUCCESS [0.058s]
[INFO] jBPM Console NG – Executor Service API ………… SUCCESS [1.353s]
[INFO] jBPM Console NG – Executor Service Client ……… SUCCESS [3.678s]
[INFO] jBPM Console NG – Executor Service Backend …….. SUCCESS [1.440s]
[INFO] jBPM Console NG – Dashboard ………………….. SUCCESS [0.049s]
[INFO] jBPM Console NG – Dashboard API ………………. SUCCESS [0.959s]
[INFO] jBPM Console NG – BPM Home Panels …………….. SUCCESS [0.066s]
[INFO] jBPM Console NG – BPM Home Client …………….. SUCCESS [2.018s]
[INFO] jBPM Console NG – Dashboard Backend …………… SUCCESS [0.913s]
[INFO] jBPM Console NG – Dashboard Client ……………. SUCCESS [2.338s]
[INFO] jBPM Console NG – Showcase …………………… FAILURE [17.462s]
[INFO] ————————————————————————
[INFO] BUILD FAILURE
[INFO] ————————————————————————
[INFO] Total time: 1:07.962s
[INFO] Finished at: Thu Jan 30 15:18:13 CET 2014
[INFO] Final Memory: 133M/445M
[INFO] ————————————————————————
[ERROR] Failed to execute goal org.codehaus.mojo:gwt-maven-plugin:2.5.0:compile (gwt-compile) on project jbpm-console-ng-showcase: Failed to execute command line :
[ERROR] [-Xmx2048m, -XX:MaxPermSize=256m, -Djetty.custom.sys.classes=bitronix;javax.transaction, -Dorg.kie.demo=true, -Dorg.kie.clean.onstartup=true, -classpath, D:\MavenLocalRepository\com\google\gwt\gwt-user\2.5.0\gwt-user-2.5.0.jar;D:\MavenLocalRepository\com\google\gwt\gwt-dev\2.5.0\gwt-dev-2.5.0.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-showcase\target\classes;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-showcase\src\main\java;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-showcase\src\main\resources;D:\MavenLocalRepository\org\kie\kie-ci\6.1.0-SNAPSHOT\kie-ci-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\drools\drools-core\6.1.0-SNAPSHOT\drools-core-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\drools\drools-compiler\6.1.0-SNAPSHOT\drools-compiler-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\antlr\antlr-runtime\3.5\antlr-runtime-3.5.jar;D:\MavenLocalRepository\org\eclipse\jdt\core\compiler\ecj\3.7.2\ecj-3.7.2.jar;D:\MavenLocalRepository\org\apache\maven\maven-core\3.0.5\maven-core-3.0.5.jar;D:\MavenLocalRepository\org\apache\maven\maven-settings\3.0.5\maven-settings-3.0.5.jar;D:\MavenLocalRepository\org\apache\maven\maven-settings-builder\3.0.5\maven-settings-builder-3.0.5.jar;D:\MavenLocalRepository\org\apache\maven\maven-repository-metadata\3.0.5\maven-repository-metadata-3.0.5.jar;D:\MavenLocalRepository\org\apache\maven\maven-artifact\3.0.5\maven-artifact-3.0.5.jar;D:\MavenLocalRepository\org\apache\maven\maven-plugin-api\3.0.5\maven-plugin-api-3.0.5.jar;D:\MavenLocalRepository\org\apache\maven\maven-model-builder\3.0.5\maven-model-builder-3.0.5.jar;D:\MavenLocalRepository\org\apache\maven\maven-aether-provider\3.0.5\maven-aether-provider-3.0.5.jar;D:\MavenLocalRepository\org\sonatype\sisu\sisu-inject-plexus\2.2.3\sisu-inject-plexus-2.2.3.jar;D:\MavenLocalRepository\org\sonatype\sisu\sisu-inject-bean\2.2.3\sisu-inject-bean-2.2.3.jar;D:\MavenLocalRepository\org\sonatype\sisu\sisu-guice\3.0.3\sisu-guice-3.0.3-no_aop.jar;D:\MavenLocalRepository\org\codehaus\plexus\plexus-interpolation\1.14\plexus-interpolation-1.14.jar;D:\MavenLocalRepository\org\codehaus\plexus\plexus-utils\3.0.7\plexus-utils-3.0.7.jar;D:\MavenLocalRepository\org\codehaus\plexus\plexus-classworlds\2.4\plexus-classworlds-2.4.jar;D:\MavenLocalRepository\org\codehaus\plexus\plexus-component-annotations\1.5.5\plexus-component-annotations-1.5.5.jar;D:\MavenLocalRepository\org\sonatype\plexus\plexus-sec-dispatcher\1.3\plexus-sec-dispatcher-1.3.jar;D:\MavenLocalRepository\org\sonatype\plexus\plexus-cipher\1.4\plexus-cipher-1.4.jar;D:\MavenLocalRepository\org\apache\maven\maven-model\3.0.5\maven-model-3.0.5.jar;D:\MavenLocalRepository\org\apache\maven\maven-compat\3.0.5\maven-compat-3.0.5.jar;D:\MavenLocalRepository\org\apache\maven\wagon\wagon-provider-api\1.0\wagon-provider-api-1.0.jar;D:\MavenLocalRepository\org\sonatype\aether\aether-api\1.13.1\aether-api-1.13.1.jar;D:\MavenLocalRepository\org\sonatype\aether\aether-util\1.13.1\aether-util-1.13.1.jar;D:\MavenLocalRepository\org\sonatype\aether\aether-impl\1.13.1\aether-impl-1.13.1.jar;D:\MavenLocalRepository\org\sonatype\aether\aether-spi\1.13.1\aether-spi-1.13.1.jar;D:\MavenLocalRepository\org\sonatype\aether\aether-connector-wagon\1.13.1\aether-connector-wagon-1.13.1.jar;D:\MavenLocalRepository\org\sonatype\aether\aether-connector-file\1.13.1\aether-connector-file-1.13.1.jar;D:\MavenLocalRepository\org\apache\maven\wagon\wagon-http\2.0\wagon-http-2.0.jar;D:\MavenLocalRepository\org\apache\maven\wagon\wagon-http-shared4\2.0\wagon-http-shared4-2.0.jar;D:\MavenLocalRepository\org\apache\httpcomponents\httpclient\4.2.1\httpclient-4.2.1.jar;D:\MavenLocalRepository\org\apache\httpcomponents\httpcore\4.2.1\httpcore-4.2.1.jar;D:\MavenLocalRepository\org\slf4j\slf4j-api\1.7.2\slf4j-api-1.7.2.jar;D:\MavenLocalRepository\org\drools\drools-wb-scorecard-xls-editor-client\6.1.0-SNAPSHOT\drools-wb-scorecard-xls-editor-client-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\drools\drools-wb-scorecard-xls-editor-api\6.1.0-SNAPSHOT\drools-wb-scorecard-xls-editor-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\javax\inject\javax.inject\1\javax.inject-1.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-human-tasks\jbpm-console-ng-human-tasks-client\target\jbpm-console-ng-human-tasks-client-6.1.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-human-tasks\jbpm-console-ng-human-tasks-api\target\jbpm-console-ng-human-tasks-api-6.1.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-process-runtime\jbpm-console-ng-process-runtime-api\target\jbpm-console-ng-process-runtime-api-6.1.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-business-domain\jbpm-console-ng-business-domain-api\target\jbpm-console-ng-business-domain-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\uberfire\uberfire-backend-api.4.0-SNAPSHOT\uberfire-backend-api-0.4.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-human-tasks\jbpm-console-ng-human-tasks-backend\target\jbpm-console-ng-human-tasks-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\kie-api\6.1.0-SNAPSHOT\kie-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\kie-internal\6.1.0-SNAPSHOT\kie-internal-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-human-task-core\6.1.0-SNAPSHOT\jbpm-human-task-core-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\javax\activation\activation\1.1.1\activation-1.1.1.jar;D:\MavenLocalRepository\org\jbpm\jbpm-human-task-jpa\6.1.0-SNAPSHOT\jbpm-human-task-jpa-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-human-task-audit\6.1.0-SNAPSHOT\jbpm-human-task-audit-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-kie-services\6.1.0-SNAPSHOT\jbpm-kie-services-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-runtime-manager\6.1.0-SNAPSHOT\jbpm-runtime-manager-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-persistence-jpa\6.1.0-SNAPSHOT\jbpm-persistence-jpa-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-human-task-workitems\6.1.0-SNAPSHOT\jbpm-human-task-workitems-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\apache\lucene\lucene-core\4.0.0\lucene-core-4.0.0.jar;D:\MavenLocalRepository\org\apache\lucene\lucene-queryparser\4.0.0\lucene-queryparser-4.0.0.jar;D:\MavenLocalRepository\org\apache\lucene\lucene-queries\4.0.0\lucene-queries-4.0.0.jar;D:\MavenLocalRepository\org\apache\lucene\lucene-sandbox\4.0.0\lucene-sandbox-4.0.0.jar;D:\MavenLocalRepository\jakarta-regexp\jakarta-regexp\1.4\jakarta-regexp-1.4.jar;D:\MavenLocalRepository\org\apache\lucene\lucene-analyzers-common\4.0.0\lucene-analyzers-common-4.0.0.jar;D:\MavenLocalRepository\org\jboss\spec\javax\el\jboss-el-api_2.2_spec\1.0.2.Final\jboss-el-api_2.2_spec-1.0.2.Final.jar;D:\MavenLocalRepository\org\hibernate\javax\persistence\hibernate-jpa-2.0-api\1.0.1.Final\hibernate-jpa-2.0-api-1.0.1.Final.jar;D:\MavenLocalRepository\joda-time\joda-time\1.6.2\joda-time-1.6.2.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-api\6.1.0-SNAPSHOT\jbpm-form-modeler-api-6.1.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-business-domain\jbpm-console-ng-business-domain-client\target\jbpm-console-ng-business-domain-client-6.1.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-business-domain\jbpm-console-ng-business-domain-backend\target\jbpm-console-ng-business-domain-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\uberfire\uberfire-backend-server.4.0-SNAPSHOT\uberfire-backend-server-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\ocpsoft\prettytime\prettytime\3.0.2.Final\prettytime-3.0.2.Final.jar;D:\MavenLocalRepository\org\jasypt\jasypt\1.9.0\jasypt-1.9.0.jar;D:\MavenLocalRepository\org\uberfire\uberfire-nio2-api.4.0-SNAPSHOT\uberfire-nio2-api-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\uberfire\uberfire-nio2-model.4.0-SNAPSHOT\uberfire-nio2-model-0.4.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-process-runtime\jbpm-console-ng-process-runtime-client\target\jbpm-console-ng-process-runtime-client-6.1.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-process-runtime\jbpm-console-ng-process-runtime-backend\target\jbpm-console-ng-process-runtime-backend-6.1.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-executor-service\jbpm-console-ng-executor-service-client\target\jbpm-console-ng-executor-service-client-6.1.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-executor-service\jbpm-console-ng-executor-service-api\target\jbpm-console-ng-executor-service-api-6.1.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-executor-service\jbpm-console-ng-executor-service-backend\target\jbpm-console-ng-executor-service-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-executor\6.1.0-SNAPSHOT\jbpm-executor-6.1.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-bpm-home\jbpm-console-ng-bpm-home-client\target\jbpm-console-ng-bpm-home-client-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\drools\drools-wb-workitems-editor-client\6.1.0-SNAPSHOT\drools-wb-workitems-editor-client-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\drools\drools-wb-workitems-editor-api\6.1.0-SNAPSHOT\drools-wb-workitems-editor-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\drools\drools-wb-workitems-editor-backend\6.1.0-SNAPSHOT\drools-wb-workitems-editor-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-bpmn2\6.1.0-SNAPSHOT\jbpm-bpmn2-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-designer-client\6.1.0-SNAPSHOT\jbpm-designer-client-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-designer-api\6.1.0-SNAPSHOT\jbpm-designer-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\uberfire\uberfire-api.4.0-SNAPSHOT\uberfire-api-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-designer-backend\6.1.0-SNAPSHOT\jbpm-designer-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\mvel\mvel2\2.1.8.Final\mvel2-2.1.8.Final.jar;D:\MavenLocalRepository\org\jbpm\jbpm-flow\6.1.0-SNAPSHOT\jbpm-flow-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-flow-builder\6.1.0-SNAPSHOT\jbpm-flow-builder-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-workitems\6.1.0-SNAPSHOT\jbpm-workitems-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\apache\commons\commons-compress\1.4.1\commons-compress-1.4.1.jar;D:\MavenLocalRepository\org\tukaani\xz\1.0\xz-1.0.jar;D:\MavenLocalRepository\org\apache\commons\commons-exec\1.0.1\commons-exec-1.0.1.jar;D:\MavenLocalRepository\jivesoftware\smack\3.1.0\smack-3.1.0.jar;D:\MavenLocalRepository\rome\rome\1.0\rome-1.0.jar;D:\MavenLocalRepository\commons-net\commons-net\2.2\commons-net-2.2.jar;D:\MavenLocalRepository\org\apache\cxf\cxf-rt-frontend-jaxws\2.6.8\cxf-rt-frontend-jaxws-2.6.8.jar;D:\MavenLocalRepository\xml-resolver\xml-resolver\1.2\xml-resolver-1.2.jar;D:\MavenLocalRepository\asm\asm\3.1\asm-3.1.jar;D:\MavenLocalRepository\org\apache\cxf\cxf-api\2.6.8\cxf-api-2.6.8.jar;D:\MavenLocalRepository\org\apache\geronimo\specs\geronimo-javamail_1.4_spec\1.7.1\geronimo-javamail_1.4_spec-1.7.1.jar;D:\MavenLocalRepository\org\apache\cxf\cxf-rt-core\2.6.8\cxf-rt-core-2.6.8.jar;D:\MavenLocalRepository\org\apache\cxf\cxf-rt-bindings-soap\2.6.8\cxf-rt-bindings-soap-2.6.8.jar;D:\MavenLocalRepository\org\apache\cxf\cxf-rt-bindings-xml\2.6.8\cxf-rt-bindings-xml-2.6.8.jar;D:\MavenLocalRepository\org\apache\cxf\cxf-rt-frontend-simple\2.6.8\cxf-rt-frontend-simple-2.6.8.jar;D:\MavenLocalRepository\org\apache\cxf\cxf-rt-ws-addr\2.6.8\cxf-rt-ws-addr-2.6.8.jar;D:\MavenLocalRepository\org\apache\cxf\cxf-rt-ws-policy\2.6.8\cxf-rt-ws-policy-2.6.8.jar;D:\MavenLocalRepository\org\apache\cxf\cxf-rt-databinding-jaxb\2.6.8\cxf-rt-databinding-jaxb-2.6.8.jar;D:\MavenLocalRepository\wsdl4j\wsdl4j\1.6.2\wsdl4j-1.6.2.jar;D:\MavenLocalRepository\org\apache\neethi\neethi\3.0.2\neethi-3.0.2.jar;D:\MavenLocalRepository\org\codehaus\woodstox\woodstox-core-asl\4.2.0\woodstox-core-asl-4.2.0.jar;D:\MavenLocalRepository\javax\xml\stream\stax-api\1.0-2\stax-api-1.0-2.jar;D:\MavenLocalRepository\org\codehaus\woodstox\stax2-api\3.1.1\stax2-api-3.1.1.jar;D:\MavenLocalRepository\org\apache\ws\xmlschema\xmlschema-core\2.0.3\xmlschema-core-2.0.3.jar;D:\MavenLocalRepository\org\jbpm\jbpm5\jbpmmigration.12\jbpmmigration-0.12.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-bpmn-form-builder\6.1.0-SNAPSHOT\jbpm-form-modeler-bpmn-form-builder-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\com\google\javascript\closure-compiler\r1741\closure-compiler-r1741.jar;D:\MavenLocalRepository\args4j\args4j\2.0.12\args4j-2.0.12.jar;D:\MavenLocalRepository\com\google\code\findbugs\jsr305\1.3.9\jsr305-1.3.9.jar;D:\MavenLocalRepository\com\googlecode\jarjar\jarjar\1.1\jarjar-1.1.jar;D:\MavenLocalRepository\org\json\json\20090211\json-20090211.jar;D:\MavenLocalRepository\org\jdom\jdom\1.1.3\jdom-1.1.3.jar;D:\MavenLocalRepository\org\apache\velocity\velocity\1.7\velocity-1.7.jar;D:\MavenLocalRepository\org\apache\xmlgraphics\xmlgraphics-commons\1.4\xmlgraphics-commons-1.4.jar;D:\MavenLocalRepository\commons-logging\commons-logging\1.1.1\commons-logging-1.1.1.jar;D:\MavenLocalRepository\batik\batik-parser\1.6-1\batik-parser-1.6-1.jar;D:\MavenLocalRepository\batik\batik-transcoder\1.6-1\batik-transcoder-1.6-1.jar;D:\MavenLocalRepository\batik\batik-extension\1.6-1\batik-extension-1.6-1.jar;D:\MavenLocalRepository\batik\batik-dom\1.6-1\batik-dom-1.6-1.jar;D:\MavenLocalRepository\batik\batik-xml\1.6-1\batik-xml-1.6-1.jar;D:\MavenLocalRepository\batik\batik-bridge\1.6-1\batik-bridge-1.6-1.jar;D:\MavenLocalRepository\batik\batik-css\1.6-1\batik-css-1.6-1.jar;D:\MavenLocalRepository\batik\batik-svg-dom\1.6-1\batik-svg-dom-1.6-1.jar;D:\MavenLocalRepository\batik\batik-svggen\1.6-1\batik-svggen-1.6-1.jar;D:\MavenLocalRepository\batik\batik-util\1.6-1\batik-util-1.6-1.jar;D:\MavenLocalRepository\batik\batik-gui-util\1.6-1\batik-gui-util-1.6-1.jar;D:\MavenLocalRepository\batik\batik-ext\1.6-1\batik-ext-1.6-1.jar;D:\MavenLocalRepository\batik\batik-script\1.6-1\batik-script-1.6-1.jar;D:\MavenLocalRepository\batik\batik-gvt\1.6-1\batik-gvt-1.6-1.jar;D:\MavenLocalRepository\batik\batik-awt-util\1.6-1\batik-awt-util-1.6-1.jar;D:\MavenLocalRepository\org\apache\xmlgraphics\fop.95\fop-0.95.jar;D:\MavenLocalRepository\org\apache\avalon\framework\avalon-framework-api\4.3.1\avalon-framework-api-4.3.1.jar;D:\MavenLocalRepository\xerces\xercesImpl\2.9.1\xercesImpl-2.9.1.jar;D:\MavenLocalRepository\xml-apis\xml-apis\1.3.04\xml-apis-1.3.04.jar;D:\MavenLocalRepository\com\thoughtworks\xstream\xstream\1.4.3\xstream-1.4.3.jar;D:\MavenLocalRepository\xmlpull\xmlpull\1.1.3.1\xmlpull-1.1.3.1.jar;D:\MavenLocalRepository\xpp3\xpp3_min\1.1.4c\xpp3_min-1.1.4c.jar;D:\MavenLocalRepository\javax\mail\mail\1.4.5\mail-1.4.5.jar;D:\MavenLocalRepository\rhino\js\1.7R2\js-1.7R2.jar;D:\MavenLocalRepository\xalan\xalan\2.7.1\xalan-2.7.1.jar;D:\MavenLocalRepository\xalan\serializer\2.7.1\serializer-2.7.1.jar;D:\MavenLocalRepository\org\codehaus\jackson\jackson-core-asl\1.9.9\jackson-core-asl-1.9.9.jar;D:\MavenLocalRepository\org\codehaus\jackson\jackson-mapper-asl\1.9.9\jackson-mapper-asl-1.9.9.jar;D:\MavenLocalRepository\org\antlr\ST4\4.0.7\ST4-4.0.7.jar;D:\MavenLocalRepository\org\osgi\org.osgi.compendium\4.2.0\org.osgi.compendium-4.2.0.jar;D:\MavenLocalRepository\avalon-framework\avalon-framework\4.1.4\avalon-framework-4.1.4.jar;D:\MavenLocalRepository\org\apache\abdera\abdera-i18n\1.1.2\abdera-i18n-1.1.2.jar;D:\MavenLocalRepository\org\apache\geronimo\specs\geronimo-activation_1.0.2_spec\1.1\geronimo-activation_1.0.2_spec-1.1.jar;D:\MavenLocalRepository\commons-collections\commons-collections\3.2.1\commons-collections-3.2.1.jar;D:\MavenLocalRepository\commons-codec\commons-codec\1.4\commons-codec-1.4.jar;D:\MavenLocalRepository\commons-configuration\commons-configuration\1.6\commons-configuration-1.6.jar;D:\MavenLocalRepository\commons-httpclient\commons-httpclient\3.1\commons-httpclient-3.1.jar;D:\MavenLocalRepository\commons-fileupload\commons-fileupload\1.2.2\commons-fileupload-1.2.2.jar;D:\MavenLocalRepository\commons-lang\commons-lang\2.6\commons-lang-2.6.jar;D:\MavenLocalRepository\org\drools\jbpm-simulation\6.1.0-SNAPSHOT\jbpm-simulation-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\apache\commons\commons-math\2.2\commons-math-2.2.jar;D:\MavenLocalRepository\org\drools\drools-simulator\6.1.0-SNAPSHOT\drools-simulator-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\javax\xml\bind\jaxb-api\2.2.5\jaxb-api-2.2.5.jar;D:\MavenLocalRepository\org\jboss\solder\solder-api\3.2.1.Final\solder-api-3.2.1.Final.jar;D:\MavenLocalRepository\org\uberfire\uberfire-js.4.0-SNAPSHOT\uberfire-js-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\uberfire\uberfire-security-api.4.0-SNAPSHOT\uberfire-security-api-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\uberfire\uberfire-server.4.0-SNAPSHOT\uberfire-server-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\commons-io\commons-io\2.1\commons-io-2.1.jar;D:\MavenLocalRepository\org\uberfire\uberfire-security-client.4.0-SNAPSHOT\uberfire-security-client-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\uberfire\uberfire-security-server.4.0-SNAPSHOT\uberfire-security-server-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\yaml\snakeyaml\1.8\snakeyaml-1.8.jar;D:\MavenLocalRepository\org\uberfire\uberfire-client-api.4.0-SNAPSHOT\uberfire-client-api-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jboss\errai\errai-common\2.4.3.Final\errai-common-2.4.3.Final.jar;D:\MavenLocalRepository\org\jboss\errai\reflections\reflections\2.4.3.Final\reflections-2.4.3.Final.jar;D:\MavenLocalRepository\org\uberfire\uberfire-widgets-core-client.4.0-SNAPSHOT\uberfire-widgets-core-client-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\uberfire\uberfire-widgets-commons.4.0-SNAPSHOT\uberfire-widgets-commons-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\com\github\gwtbootstrap\gwt-bootstrap\2.2.1.0\gwt-bootstrap-2.2.1.0.jar;D:\MavenLocalRepository\org\uberfire\uberfire-workbench-client.4.0-SNAPSHOT\uberfire-workbench-client-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\com\allen-sauer\gwt\dnd\gwt-dnd\3.1.2\gwt-dnd-3.1.2.jar;D:\MavenLocalRepository\com\google\guava\guava-gwt\13.0.1\guava-gwt-13.0.1.jar;D:\MavenLocalRepository\org\uberfire\uberfire-workbench-processors.4.0-SNAPSHOT\uberfire-workbench-processors-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\freemarker\freemarker\2.3.19\freemarker-2.3.19.jar;D:\MavenLocalRepository\javax\enterprise\cdi-api\1.0-SP4\cdi-api-1.0-SP4.jar;D:\MavenLocalRepository\org\jboss\spec\javax\interceptor\jboss-interceptors-api_1.1_spec\1.0.0.Beta1\jboss-interceptors-api_1.1_spec-1.0.0.Beta1.jar;D:\MavenLocalRepository\javax\annotation\jsr250-api\1.0\jsr250-api-1.0.jar;D:\MavenLocalRepository\org\uberfire\uberfire-nio2-jgit.4.0-SNAPSHOT\uberfire-nio2-jgit-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\apache\sshd\sshd-core.9.0\sshd-core-0.9.0.jar;D:\MavenLocalRepository\org\apache\mina\mina-core\2.0.4\mina-core-2.0.4.jar;D:\MavenLocalRepository\org\eclipse\jgit\org.eclipse.jgit\2.1.0.201209190230-r\org.eclipse.jgit-2.1.0.201209190230-r.jar;D:\MavenLocalRepository\com\jcraft\jsch.1.48\jsch-0.1.48.jar;D:\MavenLocalRepository\org\uberfire\uberfire-nio2-fs.4.0-SNAPSHOT\uberfire-nio2-fs-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\uberfire\uberfire-io.4.0-SNAPSHOT\uberfire-io-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\apache\helix\helix-core.6.2-incubating\helix-core-0.6.2-incubating.jar;D:\MavenLocalRepository\log4j\log4j\1.2.17\log4j-1.2.17.jar;D:\MavenLocalRepository\org\apache\zookeeper\zookeeper\3.3.4\zookeeper-3.3.4.jar;D:\MavenLocalRepository\commons-cli\commons-cli\1.2\commons-cli-1.2.jar;D:\MavenLocalRepository\com\github\sgroschupf\zkclient.1\zkclient-0.1.jar;D:\MavenLocalRepository\org\apache\camel\camel-josql\2.12.1\camel-josql-2.12.1.jar;D:\MavenLocalRepository\org\apache\camel\camel-core\2.10.3\camel-core-2.10.3.jar;D:\MavenLocalRepository\net\sf\josql\josql\1.5\josql-1.5.jar;D:\MavenLocalRepository\net\sf\josql\gentlyweb-utils\1.5\gentlyweb-utils-1.5.jar;D:\MavenLocalRepository\org\restlet\jse\org.restlet\2.1.4\org.restlet-2.1.4.jar;D:\MavenLocalRepository\org\uberfire\uberfire-commons.4.0-SNAPSHOT\uberfire-commons-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jboss\errai\errai-jboss-as-support\2.4.3.Final\errai-jboss-as-support-2.4.3.Final.jar;D:\MavenLocalRepository\org\jboss\errai\errai-bus\2.4.3.Final\errai-bus-2.4.3.Final.jar;D:\MavenLocalRepository\org\jboss\errai\errai-config\2.4.3.Final\errai-config-2.4.3.Final.jar;D:\MavenLocalRepository\org\jboss\errai\errai-marshalling\2.4.3.Final\errai-marshalling-2.4.3.Final.jar;D:\MavenLocalRepository\com\google\inject\guice\3.0\guice-3.0.jar;D:\MavenLocalRepository\aopalliance\aopalliance\1.0\aopalliance-1.0.jar;D:\MavenLocalRepository\org\javassist\javassist\3.15.0-GA\javassist-3.15.0-GA.jar;D:\MavenLocalRepository\org\jboss\errai\io\netty\netty\4.0.0.Alpha1.errai.r1\netty-4.0.0.Alpha1.errai.r1.jar;D:\MavenLocalRepository\com\google\guava\guava\13.0.1\guava-13.0.1.jar;D:\MavenLocalRepository\org\jgroups\jgroups\3.2.10.Final\jgroups-3.2.10.Final.jar;D:\MavenLocalRepository\org\jboss\errai\errai-ioc\2.4.3.Final\errai-ioc-2.4.3.Final.jar;D:\MavenLocalRepository\org\jboss\errai\errai-codegen\2.4.3.Final\errai-codegen-2.4.3.Final.jar;D:\MavenLocalRepository\org\jboss\errai\errai-codegen-gwt\2.4.3.Final\errai-codegen-gwt-2.4.3.Final.jar;D:\MavenLocalRepository\org\jboss\errai\errai-cdi-client\2.4.3.Final\errai-cdi-client-2.4.3.Final.jar;D:\MavenLocalRepository\org\jboss\errai\errai-ioc-bus-support\2.4.3.Final\errai-ioc-bus-support-2.4.3.Final.jar;D:\MavenLocalRepository\org\jboss\errai\errai-javax-enterprise\2.4.3.Final\errai-javax-enterprise-2.4.3.Final.jar;D:\MavenLocalRepository\org\jboss\errai\errai-weld-integration\2.4.3.Final\errai-weld-integration-2.4.3.Final.jar;D:\MavenLocalRepository\org\jboss\errai\errai-cdi-jetty\2.4.3.Final\errai-cdi-jetty-2.4.3.Final.jar;D:\MavenLocalRepository\org\jboss\errai\errai-ui\2.4.3.Final\errai-ui-2.4.3.Final.jar;D:\MavenLocalRepository\org\jsoup\jsoup\1.7.1\jsoup-1.7.1.jar;D:\MavenLocalRepository\org\apache\stanbol\org.apache.stanbol.enhancer.engines.htmlextractor.10.0\org.apache.stanbol.enhancer.engines.htmlextractor-0.10.0.jar;D:\MavenLocalRepository\org\apache\clerezza\rdf.core.12-incubating\rdf.core-0.12-incubating.jar;D:\MavenLocalRepository\org\apache\clerezza\utils.1-incubating\utils-0.1-incubating.jar;D:\MavenLocalRepository\org\wymiwyg\wymiwyg-commons-core.7.6\wymiwyg-commons-core-0.7.6.jar;D:\MavenLocalRepository\commons-logging\commons-logging-api\1.1\commons-logging-api-1.1.jar;D:\MavenLocalRepository\org\lesscss\lesscss\1.3.3\lesscss-1.3.3.jar;D:\MavenLocalRepository\org\apache\commons\commons-lang3\3.1\commons-lang3-3.1.jar;D:\MavenLocalRepository\org\mozilla\rhino\1.7R4\rhino-1.7R4.jar;D:\MavenLocalRepository\org\jboss\errai\errai-data-binding\2.4.3.Final\errai-data-binding-2.4.3.Final.jar;D:\MavenLocalRepository\com\h2database\h2\1.3.168\h2-1.3.168.jar;D:\MavenLocalRepository\org\hibernate\hibernate-entitymanager\4.2.0.SP1\hibernate-entitymanager-4.2.0.SP1.jar;D:\MavenLocalRepository\org\jboss\logging\jboss-logging\3.1.2.GA\jboss-logging-3.1.2.GA.jar;D:\MavenLocalRepository\org\jboss\spec\javax\transaction\jboss-transaction-api_1.1_spec\1.0.1.Final\jboss-transaction-api_1.1_spec-1.0.1.Final.jar;D:\MavenLocalRepository\dom4j\dom4j\1.6.1\dom4j-1.6.1.jar;D:\MavenLocalRepository\org\hibernate\common\hibernate-commons-annotations\4.0.1.Final\hibernate-commons-annotations-4.0.1.Final.jar;D:\MavenLocalRepository\org\hibernate\hibernate-core\4.2.0.SP1\hibernate-core-4.2.0.SP1.jar;D:\MavenLocalRepository\antlr\antlr\2.7.7\antlr-2.7.7.jar;D:\MavenLocalRepository\org\hibernate\hibernate-validator\4.3.1.Final\hibernate-validator-4.3.1.Final.jar;D:\MavenLocalRepository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA.jar;D:\MavenLocalRepository\org\mortbay\jetty\jetty\6.1.25\jetty-6.1.25.jar;D:\MavenLocalRepository\org\mortbay\jetty\jetty-util\6.1.25\jetty-util-6.1.25.jar;D:\MavenLocalRepository\org\mortbay\jetty\servlet-api\2.5-20081211\servlet-api-2.5-20081211.jar;D:\MavenLocalRepository\org\mortbay\jetty\jetty-plus\6.1.25\jetty-plus-6.1.25.jar;D:\MavenLocalRepository\org\mortbay\jetty\jetty-naming\6.1.25\jetty-naming-6.1.25.jar;D:\MavenLocalRepository\org\jboss\weld\se\weld-se-core\1.1.13.Final\weld-se-core-1.1.13.Final.jar;D:\MavenLocalRepository\org\jboss\weld\weld-spi\1.1.Final\weld-spi-1.1.Final.jar;D:\MavenLocalRepository\org\jboss\weld\weld-api\1.1.Final\weld-api-1.1.Final.jar;D:\MavenLocalRepository\org\jboss\weld\weld-core\1.1.13.Final\weld-core-1.1.13.Final.jar;D:\MavenLocalRepository\org\slf4j\slf4j-ext\1.7.2\slf4j-ext-1.7.2.jar;D:\MavenLocalRepository\ch\qos\cal10n\cal10n-api.7.4\cal10n-api-0.7.4.jar;D:\MavenLocalRepository\javax\el\el-api\2.2\el-api-2.2.jar;D:\MavenLocalRepository\org\jboss\weld\servlet\weld-servlet-core\1.1.13.Final\weld-servlet-core-1.1.13.Final.jar;D:\MavenLocalRepository\org\jboss\solder\solder-impl\3.2.1.Final\solder-impl-3.2.1.Final.jar;D:\MavenLocalRepository\org\hamcrest\hamcrest-core\1.3.RC2\hamcrest-core-1.3.RC2.jar;D:\MavenLocalRepository\com\google\gwt\gwt-user\2.5.0\gwt-user-2.5.0.jar;D:\MavenLocalRepository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA-sources.jar;D:\MavenLocalRepository\org\osgi\org.osgi.core\4.2.0\org.osgi.core-4.2.0.jar;D:\MavenLocalRepository\com\sun\xml\bind\jaxb-impl\2.2.5\jaxb-impl-2.2.5.jar;D:\MavenLocalRepository\com\sun\xml\bind\jaxb-xjc\2.2.5\jaxb-xjc-2.2.5.jar;D:\MavenLocalRepository\javax\transaction\jta\1.1\jta-1.1.jar;D:\MavenLocalRepository\org\codehaus\btm\btm\2.1.4\btm-2.1.4.jar;D:\MavenLocalRepository\org\jbpm\jbpm-shared-services\6.1.0-SNAPSHOT\jbpm-shared-services-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\drools\drools-persistence-jpa\6.1.0-SNAPSHOT\drools-persistence-jpa-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-bpmn2-emfextmodel\6.1.0-SNAPSHOT\jbpm-bpmn2-emfextmodel-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\eclipse\emf\org.eclipse.emf.common\2.6.0.v20100614-1136\org.eclipse.emf.common-2.6.0.v20100614-1136.jar;D:\MavenLocalRepository\org\eclipse\emf\org.eclipse.emf.ecore\2.6.0.v20100614-1136\org.eclipse.emf.ecore-2.6.0.v20100614-1136.jar;D:\MavenLocalRepository\org\eclipse\emf\org.eclipse.emf.ecore.xmi\2.5.0.v20100521-1846\org.eclipse.emf.ecore.xmi-2.5.0.v20100521-1846.jar;D:\MavenLocalRepository\org\eclipse\org.eclipse.bpmn2.7.3\org.eclipse.bpmn2-0.7.3.jar;D:\MavenLocalRepository\org\kie\remote\kie-services-remote\6.1.0-SNAPSHOT\kie-services-remote-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\remote\kie-services-client\6.1.0-SNAPSHOT\kie-services-client-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\javax\jms\jms\1.1\jms-1.1.jar;D:\MavenLocalRepository\org\jboss\spec\javax\servlet\jboss-servlet-api_3.0_spec\1.0.2.Final\jboss-servlet-api_3.0_spec-1.0.2.Final.jar;D:\MavenLocalRepository\org\jboss\resteasy\resteasy-jaxrs\2.3.6.Final\resteasy-jaxrs-2.3.6.Final.jar;D:\MavenLocalRepository\org\scannotation\scannotation\1.0.3\scannotation-1.0.3.jar;D:\MavenLocalRepository\javassist\javassist\3.12.1.GA\javassist-3.12.1.GA.jar;D:\MavenLocalRepository\net\jcip\jcip-annotations\1.0\jcip-annotations-1.0.jar;D:\MavenLocalRepository\org\jboss\resteasy\resteasy-jaxb-provider\2.3.6.Final\resteasy-jaxb-provider-2.3.6.Final.jar;D:\MavenLocalRepository\org\jboss\resteasy\resteasy-jackson-provider\2.3.6.Final\resteasy-jackson-provider-2.3.6.Final.jar;D:\MavenLocalRepository\org\codehaus\jackson\jackson-jaxrs\1.9.9\jackson-jaxrs-1.9.9.jar;D:\MavenLocalRepository\org\codehaus\jackson\jackson-xc\1.9.9\jackson-xc-1.9.9.jar;D:\MavenLocalRepository\org\jbpm\jbpm-audit\6.1.0-SNAPSHOT\jbpm-audit-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jboss\resteasy\jaxrs-api\2.3.6.Final\jaxrs-api-2.3.6.Final.jar;D:\MavenLocalRepository\org\jboss\resteasy\resteasy-jettison-provider\2.3.6.Final\resteasy-jettison-provider-2.3.6.Final.jar;D:\MavenLocalRepository\org\codehaus\jettison\jettison\1.3.1\jettison-1.3.1.jar;D:\MavenLocalRepository\org\jboss\spec\javax\ejb\jboss-ejb-api_3.1_spec\1.0.2.Final\jboss-ejb-api_3.1_spec-1.0.2.Final.jar;D:\MavenLocalRepository\org\guvnor\guvnor-services-api\6.1.0-SNAPSHOT\guvnor-services-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\guvnor\guvnor-m2repo-editor-api\6.1.0-SNAPSHOT\guvnor-m2repo-editor-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\guvnor\guvnor-m2repo-editor-client\6.1.0-SNAPSHOT\guvnor-m2repo-editor-client-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\guvnor\guvnor-m2repo-editor-backend\6.1.0-SNAPSHOT\guvnor-m2repo-editor-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\sonatype\maven\wagon-ahc\1.2.1\wagon-ahc-1.2.1.jar;D:\MavenLocalRepository\com\ning\async-http-client\1.6.5\async-http-client-1.6.5.jar;D:\MavenLocalRepository\org\jboss\netty\netty\3.2.6.Final\netty-3.2.6.Final.jar;D:\MavenLocalRepository\org\guvnor\guvnor-project-api\6.1.0-SNAPSHOT\guvnor-project-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\drools\drools-workbench-models-datamodel-api\6.1.0-SNAPSHOT\drools-workbench-models-datamodel-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\guvnor\guvnor-project-backend\6.1.0-SNAPSHOT\guvnor-project-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\guvnor\guvnor-services-backend\6.1.0-SNAPSHOT\guvnor-services-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\guvnor\guvnor-workingset-api\6.1.0-SNAPSHOT\guvnor-workingset-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\guvnor\guvnor-workingset-client\6.1.0-SNAPSHOT\guvnor-workingset-client-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\guvnor\guvnor-project-builder\6.1.0-SNAPSHOT\guvnor-project-builder-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\com\google\protobuf\protobuf-java\2.5.0\protobuf-java-2.5.0.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-project-explorer-backend\6.1.0-SNAPSHOT\kie-wb-common-project-explorer-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-project-explorer-api\6.1.0-SNAPSHOT\kie-wb-common-project-explorer-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-project-explorer-client\6.1.0-SNAPSHOT\kie-wb-common-project-explorer-client-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-project-editor-client\6.1.0-SNAPSHOT\kie-wb-common-project-editor-client-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-project-editor-api\6.1.0-SNAPSHOT\kie-wb-common-project-editor-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\widgets\kie-wb-view-source-widget\6.1.0-SNAPSHOT\kie-wb-view-source-widget-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-default-editor-api\6.1.0-SNAPSHOT\kie-wb-common-default-editor-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-default-editor-client\6.1.0-SNAPSHOT\kie-wb-common-default-editor-client-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-project-editor-backend\6.1.0-SNAPSHOT\kie-wb-common-project-editor-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-project-imports-editor-client\6.1.0-SNAPSHOT\kie-wb-common-project-imports-editor-client-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-project-imports-editor-api\6.1.0-SNAPSHOT\kie-wb-common-project-imports-editor-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\services\kie-wb-common-datamodel-api\6.1.0-SNAPSHOT\kie-wb-common-datamodel-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\services\kie-wb-common-security\6.1.0-SNAPSHOT\kie-wb-common-security-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\widgets\kie-wb-common-ui\6.1.0-SNAPSHOT\kie-wb-common-ui-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\drools\drools-workbench-models-commons\6.1.0-SNAPSHOT\drools-workbench-models-commons-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\services\kie-wb-common-datamodel-backend\6.1.0-SNAPSHOT\kie-wb-common-datamodel-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\services\kie-wb-common-services-api\6.1.0-SNAPSHOT\kie-wb-common-services-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\services\kie-wb-common-services-backend\6.1.0-SNAPSHOT\kie-wb-common-services-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\widgets\kie-wb-metadata-widget\6.1.0-SNAPSHOT\kie-wb-metadata-widget-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\widgets\kie-wb-config-resource-widget\6.1.0-SNAPSHOT\kie-wb-config-resource-widget-6.1.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-dashboard\jbpm-console-ng-dashboard-client\target\jbpm-console-ng-dashboard-client-6.1.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-dashboard\jbpm-console-ng-dashboard-backend\target\jbpm-console-ng-dashboard-backend-6.1.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-dashboard\jbpm-console-ng-dashboard-api\target\jbpm-console-ng-dashboard-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-app\6.1.0-SNAPSHOT\jbpm-form-modeler-app-6.1.0-SNAPSHOT.war;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-renderer-api\6.1.0-SNAPSHOT\jbpm-form-modeler-renderer-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-renderer-client\6.1.0-SNAPSHOT\jbpm-form-modeler-renderer-client-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-renderer-backend\6.1.0-SNAPSHOT\jbpm-form-modeler-renderer-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-editor-api\6.1.0-SNAPSHOT\jbpm-form-modeler-editor-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-editor-client\6.1.0-SNAPSHOT\jbpm-form-modeler-editor-client-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-editor-backend\6.1.0-SNAPSHOT\jbpm-form-modeler-editor-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\services\kie-wb-common-data-modeller-core\6.1.0-SNAPSHOT\kie-wb-common-data-modeller-core-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-form-provider\6.1.0-SNAPSHOT\jbpm-form-modeler-form-provider-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-data-modeller-api\6.1.0-SNAPSHOT\kie-wb-common-data-modeller-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-data-modeller-backend\6.1.0-SNAPSHOT\kie-wb-common-data-modeller-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-data-modeller-client\6.1.0-SNAPSHOT\kie-wb-common-data-modeller-client-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-data-modeler\6.1.0-SNAPSHOT\jbpm-form-modeler-data-modeler-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-service-core\6.1.0-SNAPSHOT\jbpm-form-modeler-service-core-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-common\6.1.0-SNAPSHOT\jbpm-form-modeler-common-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\net\sf\opencsv\opencsv\2.3\opencsv-2.3.jar;D:\MavenLocalRepository\commons-jxpath\commons-jxpath\1.3\commons-jxpath-1.3.jar;D:\MavenLocalRepository\org\beanshell\bsh\1.3.0\bsh-1.3.0.jar;D:\MavenLocalRepository\org\jboss\spec\javax\servlet\jsp\jboss-jsp-api_2.2_spec\1.0.1.Final\jboss-jsp-api_2.2_spec-1.0.1.Final.jar;D:\MavenLocalRepository\javax\servlet\jstl\1.2\jstl-1.2.jar;D:\MavenLocalRepository\org\guvnor\guvnor-m2repo-editor-api\6.1.0-SNAPSHOT\guvnor-m2repo-editor-api-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\guvnor\guvnor-m2repo-editor-client\6.1.0-SNAPSHOT\guvnor-m2repo-editor-client-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\guvnor\guvnor-workingset-api\6.1.0-SNAPSHOT\guvnor-workingset-api-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\guvnor\guvnor-workingset-client\6.1.0-SNAPSHOT\guvnor-workingset-client-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\guvnor\guvnor-services-api\6.1.0-SNAPSHOT\guvnor-services-api-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\guvnor\guvnor-project-api\6.1.0-SNAPSHOT\guvnor-project-api-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-project-editor-api\6.1.0-SNAPSHOT\kie-wb-common-project-editor-api-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-project-editor-client\6.1.0-SNAPSHOT\kie-wb-common-project-editor-client-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-project-imports-editor-api\6.1.0-SNAPSHOT\kie-wb-common-project-imports-editor-api-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-project-imports-editor-client\6.1.0-SNAPSHOT\kie-wb-common-project-imports-editor-client-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-project-explorer-api\6.1.0-SNAPSHOT\kie-wb-common-project-explorer-api-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-project-explorer-client\6.1.0-SNAPSHOT\kie-wb-common-project-explorer-client-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\widgets\kie-wb-common-ui\6.1.0-SNAPSHOT\kie-wb-common-ui-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\widgets\kie-wb-view-source-widget\6.1.0-SNAPSHOT\kie-wb-view-source-widget-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\widgets\kie-wb-metadata-widget\6.1.0-SNAPSHOT\kie-wb-metadata-widget-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\widgets\kie-wb-config-resource-widget\6.1.0-SNAPSHOT\kie-wb-config-resource-widget-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\services\kie-wb-common-services-api\6.1.0-SNAPSHOT\kie-wb-common-services-api-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\services\kie-wb-common-security\6.1.0-SNAPSHOT\kie-wb-common-security-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\services\kie-wb-common-datamodel-api\6.1.0-SNAPSHOT\kie-wb-common-datamodel-api-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-data-modeller-api\6.1.0-SNAPSHOT\kie-wb-common-data-modeller-api-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-data-modeller-client\6.1.0-SNAPSHOT\kie-wb-common-data-modeller-client-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\drools\drools-wb-workitems-editor-api\6.1.0-SNAPSHOT\drools-wb-workitems-editor-api-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\drools\drools-wb-workitems-editor-client\6.1.0-SNAPSHOT\drools-wb-workitems-editor-client-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\uberfire\uberfire-commons.4.0-SNAPSHOT\uberfire-commons-0.4.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\uberfire\uberfire-nio2-model.4.0-SNAPSHOT\uberfire-nio2-model-0.4.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\uberfire\uberfire-js.4.0-SNAPSHOT\uberfire-js-0.4.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\uberfire\uberfire-security-api.4.0-SNAPSHOT\uberfire-security-api-0.4.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\uberfire\uberfire-security-client.4.0-SNAPSHOT\uberfire-security-client-0.4.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\uberfire\uberfire-client-api.4.0-SNAPSHOT\uberfire-client-api-0.4.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\uberfire\uberfire-widgets-core-client.4.0-SNAPSHOT\uberfire-widgets-core-client-0.4.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\uberfire\uberfire-widgets-commons.4.0-SNAPSHOT\uberfire-widgets-commons-0.4.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\uberfire\uberfire-workbench-client.4.0-SNAPSHOT\uberfire-workbench-client-0.4.0-SNAPSHOT-sources.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-bpm-home\jbpm-console-ng-bpm-home-client\target\jbpm-console-ng-bpm-home-client-6.1.0-SNAPSHOT-sources.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-human-tasks\jbpm-console-ng-human-tasks-api\target\jbpm-console-ng-human-tasks-api-6.1.0-SNAPSHOT-sources.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-human-tasks\jbpm-console-ng-human-tasks-client\target\jbpm-console-ng-human-tasks-client-6.1.0-SNAPSHOT-sources.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-process-runtime\jbpm-console-ng-process-runtime-api\target\jbpm-console-ng-process-runtime-api-6.1.0-SNAPSHOT-sources.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-process-runtime\jbpm-console-ng-process-runtime-client\target\jbpm-console-ng-process-runtime-client-6.1.0-SNAPSHOT-sources.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-business-domain\jbpm-console-ng-business-domain-api\target\jbpm-console-ng-business-domain-api-6.1.0-SNAPSHOT-sources.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-business-domain\jbpm-console-ng-business-domain-client\target\jbpm-console-ng-business-domain-client-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\jbpm\jbpm-designer-api\6.1.0-SNAPSHOT\jbpm-designer-api-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\jbpm\jbpm-designer-client\6.1.0-SNAPSHOT\jbpm-designer-client-6.1.0-SNAPSHOT-sources.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-dashboard\jbpm-console-ng-dashboard-api\target\jbpm-console-ng-dashboard-api-6.1.0-SNAPSHOT-sources.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-dashboard\jbpm-console-ng-dashboard-client\target\jbpm-console-ng-dashboard-client-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-editor-api\6.1.0-SNAPSHOT\jbpm-form-modeler-editor-api-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-editor-client\6.1.0-SNAPSHOT\jbpm-form-modeler-editor-client-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-renderer-api\6.1.0-SNAPSHOT\jbpm-form-modeler-renderer-api-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-renderer-client\6.1.0-SNAPSHOT\jbpm-form-modeler-renderer-client-6.1.0-SNAPSHOT-sources.jar, com.google.gwt.dev.Compiler, -logLevel, INFO, -style, OBF, -war, D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-showcase\target\jbpm-console-ng-showcase-6.1.0-SNAPSHOT, -localWorkers, 4, -XfragmentCount, -1, -deploy, D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-showcase\target\gwt-symbols-deploy, -gen, D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-showcase\target\.generated, org.jbpm.console.ng.FastCompiledjBPMShowcase]: Error while executing process. Cannot run program “c:\Java\jdk1.6.0_24\jre\bin\java”: CreateProcess error=87, The parameter is incorrect
[ERROR] -> [Help 1]
LikeLike
Hi, no idea about eclipse.. and that’s eclipse specific.
Can you try executing mvn clean install from the terminal/console instead of inside eclipse?
LikeLike
Thanks for your reply, running clean install from the console gives me the error below
At the end of the command line it says
” Cannot run program “c:\Java\jdk1.6.0_24\jre\bin\java”: CreateProcess error=87, The parameter is incorrect”
Thanks again
[INFO] — gwt-maven-plugin:2.5.0:compile (gwt-compile) @ jbpm-console-ng-showcase —
[INFO] ————————————————————————
[INFO] Reactor Summary:
[INFO]
[INFO] jBPM Console NG …………………………….. SUCCESS [1.315s]
[INFO] jBPM Console NG – Module Archetype ……………. SUCCESS [1.216s]
[INFO] jBPM Console NG – Human Tasks Panels ………….. SUCCESS [0.102s]
[INFO] jBPM Console NG – Human Tasks API …………….. SUCCESS [1.711s]
[INFO] jBPM Console NG – Process Runtime Panels ………. SUCCESS [0.079s]
[INFO] jBPM Console NG – Process Runtime API …………. SUCCESS [2.020s]
[INFO] jBPM Console NG – Business Domain Panels ………. SUCCESS [0.077s]
[INFO] jBPM Console NG – Business Domain API …………. SUCCESS [1.686s]
[INFO] jBPM Console NG – Human Tasks Client ………….. SUCCESS [8.183s]
[INFO] jBPM Console NG – Human Tasks Backend …………. SUCCESS [22.146s]
[INFO] jBPM Console NG – Process Runtime Client ………. SUCCESS [4.883s]
[INFO] jBPM Console NG – Process Runtime Backend ……… SUCCESS [1.548s]
[INFO] jBPM Console NG – Business Domain Client ………. SUCCESS [3.458s]
[INFO] jBPM Console NG – Business Domain Backend ……… SUCCESS [3.908s]
[INFO] jBPM Console NG – Executor Service Panels ……… SUCCESS [0.056s]
[INFO] jBPM Console NG – Executor Service API ………… SUCCESS [1.337s]
[INFO] jBPM Console NG – Executor Service Client ……… SUCCESS [3.631s]
[INFO] jBPM Console NG – Executor Service Backend …….. SUCCESS [1.452s]
[INFO] jBPM Console NG – Dashboard ………………….. SUCCESS [0.054s]
[INFO] jBPM Console NG – Dashboard API ………………. SUCCESS [0.990s]
[INFO] jBPM Console NG – BPM Home Panels …………….. SUCCESS [0.053s]
[INFO] jBPM Console NG – BPM Home Client …………….. SUCCESS [2.030s]
[INFO] jBPM Console NG – Dashboard Backend …………… SUCCESS [0.902s]
[INFO] jBPM Console NG – Dashboard Client ……………. SUCCESS [2.295s]
[INFO] jBPM Console NG – Showcase …………………… FAILURE [16.840s]
[INFO] ————————————————————————
[INFO] BUILD FAILURE
[INFO] ————————————————————————
[INFO] Total time: 1:23.562s
[INFO] Finished at: Thu Jan 30 15:44:17 CET 2014
[INFO] Final Memory: 136M/481M
[INFO] ————————————————————————
[ERROR] Failed to execute goal org.codehaus.mojo:gwt-maven-plugin:2.5.0:compile (gwt-compile) on project jbpm-console-ng-showcase: Failed to execute command line :
[ERROR] [-Xmx2048m, -XX:MaxPermSize=256m, -Djetty.custom.sys.classes=bitronix;javax.transaction, -Dorg.kie.demo=true, -Dorg.kie.clean.onstartup=true, -classpath, D:\MavenLocalRepository\com\google\gwt\gwt-user\2.5.0\gwt-user-2.5.0.jar;D:\MavenLocalRepository\com\google\gwt\gwt-dev\2.5.0\gwt-dev-2.5.0.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-showcase\target\classes;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-showcase\src\main\java;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-showcase\src\main\resources;D:\MavenLocalRepository\org\kie\kie-ci\6.1.0-SNAPSHOT\kie-ci-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\drools\drools-core\6.1.0-SNAPSHOT\drools-core-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\drools\drools-compiler\6.1.0-SNAPSHOT\drools-compiler-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\antlr\antlr-runtime\3.5\antlr-runtime-3.5.jar;D:\MavenLocalRepository\org\eclipse\jdt\core\compiler\ecj\3.7.2\ecj-3.7.2.jar;D:\MavenLocalRepository\org\apache\maven\maven-core\3.0.5\maven-core-3.0.5.jar;D:\MavenLocalRepository\org\apache\maven\maven-settings\3.0.5\maven-settings-3.0.5.jar;D:\MavenLocalRepository\org\apache\maven\maven-settings-builder\3.0.5\maven-settings-builder-3.0.5.jar;D:\MavenLocalRepository\org\apache\maven\maven-repository-metadata\3.0.5\maven-repository-metadata-3.0.5.jar;D:\MavenLocalRepository\org\apache\maven\maven-artifact\3.0.5\maven-artifact-3.0.5.jar;D:\MavenLocalRepository\org\apache\maven\maven-plugin-api\3.0.5\maven-plugin-api-3.0.5.jar;D:\MavenLocalRepository\org\apache\maven\maven-model-builder\3.0.5\maven-model-builder-3.0.5.jar;D:\MavenLocalRepository\org\apache\maven\maven-aether-provider\3.0.5\maven-aether-provider-3.0.5.jar;D:\MavenLocalRepository\org\sonatype\sisu\sisu-inject-plexus\2.2.3\sisu-inject-plexus-2.2.3.jar;D:\MavenLocalRepository\org\sonatype\sisu\sisu-inject-bean\2.2.3\sisu-inject-bean-2.2.3.jar;D:\MavenLocalRepository\org\sonatype\sisu\sisu-guice\3.0.3\sisu-guice-3.0.3-no_aop.jar;D:\MavenLocalRepository\org\codehaus\plexus\plexus-interpolation\1.14\plexus-interpolation-1.14.jar;D:\MavenLocalRepository\org\codehaus\plexus\plexus-utils\3.0.7\plexus-utils-3.0.7.jar;D:\MavenLocalRepository\org\codehaus\plexus\plexus-classworlds\2.4\plexus-classworlds-2.4.jar;D:\MavenLocalRepository\org\codehaus\plexus\plexus-component-annotations\1.5.5\plexus-component-annotations-1.5.5.jar;D:\MavenLocalRepository\org\sonatype\plexus\plexus-sec-dispatcher\1.3\plexus-sec-dispatcher-1.3.jar;D:\MavenLocalRepository\org\sonatype\plexus\plexus-cipher\1.4\plexus-cipher-1.4.jar;D:\MavenLocalRepository\org\apache\maven\maven-model\3.0.5\maven-model-3.0.5.jar;D:\MavenLocalRepository\org\apache\maven\maven-compat\3.0.5\maven-compat-3.0.5.jar;D:\MavenLocalRepository\org\apache\maven\wagon\wagon-provider-api\1.0\wagon-provider-api-1.0.jar;D:\MavenLocalRepository\org\sonatype\aether\aether-api\1.13.1\aether-api-1.13.1.jar;D:\MavenLocalRepository\org\sonatype\aether\aether-util\1.13.1\aether-util-1.13.1.jar;D:\MavenLocalRepository\org\sonatype\aether\aether-impl\1.13.1\aether-impl-1.13.1.jar;D:\MavenLocalRepository\org\sonatype\aether\aether-spi\1.13.1\aether-spi-1.13.1.jar;D:\MavenLocalRepository\org\sonatype\aether\aether-connector-wagon\1.13.1\aether-connector-wagon-1.13.1.jar;D:\MavenLocalRepository\org\sonatype\aether\aether-connector-file\1.13.1\aether-connector-file-1.13.1.jar;D:\MavenLocalRepository\org\apache\maven\wagon\wagon-http\2.0\wagon-http-2.0.jar;D:\MavenLocalRepository\org\apache\maven\wagon\wagon-http-shared4\2.0\wagon-http-shared4-2.0.jar;D:\MavenLocalRepository\org\apache\httpcomponents\httpclient\4.2.1\httpclient-4.2.1.jar;D:\MavenLocalRepository\org\apache\httpcomponents\httpcore\4.2.1\httpcore-4.2.1.jar;D:\MavenLocalRepository\org\slf4j\slf4j-api\1.7.2\slf4j-api-1.7.2.jar;D:\MavenLocalRepository\org\drools\drools-wb-scorecard-xls-editor-client\6.1.0-SNAPSHOT\drools-wb-scorecard-xls-editor-client-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\drools\drools-wb-scorecard-xls-editor-api\6.1.0-SNAPSHOT\drools-wb-scorecard-xls-editor-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\javax\inject\javax.inject\1\javax.inject-1.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-human-tasks\jbpm-console-ng-human-tasks-client\target\jbpm-console-ng-human-tasks-client-6.1.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-human-tasks\jbpm-console-ng-human-tasks-api\target\jbpm-console-ng-human-tasks-api-6.1.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-process-runtime\jbpm-console-ng-process-runtime-api\target\jbpm-console-ng-process-runtime-api-6.1.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-business-domain\jbpm-console-ng-business-domain-api\target\jbpm-console-ng-business-domain-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\uberfire\uberfire-backend-api.4.0-SNAPSHOT\uberfire-backend-api-0.4.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-human-tasks\jbpm-console-ng-human-tasks-backend\target\jbpm-console-ng-human-tasks-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\kie-api\6.1.0-SNAPSHOT\kie-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\kie-internal\6.1.0-SNAPSHOT\kie-internal-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-human-task-core\6.1.0-SNAPSHOT\jbpm-human-task-core-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\javax\activation\activation\1.1.1\activation-1.1.1.jar;D:\MavenLocalRepository\org\jbpm\jbpm-human-task-jpa\6.1.0-SNAPSHOT\jbpm-human-task-jpa-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-human-task-audit\6.1.0-SNAPSHOT\jbpm-human-task-audit-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-kie-services\6.1.0-SNAPSHOT\jbpm-kie-services-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-runtime-manager\6.1.0-SNAPSHOT\jbpm-runtime-manager-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-persistence-jpa\6.1.0-SNAPSHOT\jbpm-persistence-jpa-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-human-task-workitems\6.1.0-SNAPSHOT\jbpm-human-task-workitems-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\apache\lucene\lucene-core\4.0.0\lucene-core-4.0.0.jar;D:\MavenLocalRepository\org\apache\lucene\lucene-queryparser\4.0.0\lucene-queryparser-4.0.0.jar;D:\MavenLocalRepository\org\apache\lucene\lucene-queries\4.0.0\lucene-queries-4.0.0.jar;D:\MavenLocalRepository\org\apache\lucene\lucene-sandbox\4.0.0\lucene-sandbox-4.0.0.jar;D:\MavenLocalRepository\jakarta-regexp\jakarta-regexp\1.4\jakarta-regexp-1.4.jar;D:\MavenLocalRepository\org\apache\lucene\lucene-analyzers-common\4.0.0\lucene-analyzers-common-4.0.0.jar;D:\MavenLocalRepository\org\jboss\spec\javax\el\jboss-el-api_2.2_spec\1.0.2.Final\jboss-el-api_2.2_spec-1.0.2.Final.jar;D:\MavenLocalRepository\org\hibernate\javax\persistence\hibernate-jpa-2.0-api\1.0.1.Final\hibernate-jpa-2.0-api-1.0.1.Final.jar;D:\MavenLocalRepository\joda-time\joda-time\1.6.2\joda-time-1.6.2.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-api\6.1.0-SNAPSHOT\jbpm-form-modeler-api-6.1.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-business-domain\jbpm-console-ng-business-domain-client\target\jbpm-console-ng-business-domain-client-6.1.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-business-domain\jbpm-console-ng-business-domain-backend\target\jbpm-console-ng-business-domain-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\uberfire\uberfire-backend-server.4.0-SNAPSHOT\uberfire-backend-server-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\ocpsoft\prettytime\prettytime\3.0.2.Final\prettytime-3.0.2.Final.jar;D:\MavenLocalRepository\org\jasypt\jasypt\1.9.0\jasypt-1.9.0.jar;D:\MavenLocalRepository\org\uberfire\uberfire-nio2-api.4.0-SNAPSHOT\uberfire-nio2-api-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\uberfire\uberfire-nio2-model.4.0-SNAPSHOT\uberfire-nio2-model-0.4.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-process-runtime\jbpm-console-ng-process-runtime-client\target\jbpm-console-ng-process-runtime-client-6.1.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-process-runtime\jbpm-console-ng-process-runtime-backend\target\jbpm-console-ng-process-runtime-backend-6.1.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-executor-service\jbpm-console-ng-executor-service-client\target\jbpm-console-ng-executor-service-client-6.1.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-executor-service\jbpm-console-ng-executor-service-api\target\jbpm-console-ng-executor-service-api-6.1.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-executor-service\jbpm-console-ng-executor-service-backend\target\jbpm-console-ng-executor-service-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-executor\6.1.0-SNAPSHOT\jbpm-executor-6.1.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-bpm-home\jbpm-console-ng-bpm-home-client\target\jbpm-console-ng-bpm-home-client-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\drools\drools-wb-workitems-editor-client\6.1.0-SNAPSHOT\drools-wb-workitems-editor-client-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\drools\drools-wb-workitems-editor-api\6.1.0-SNAPSHOT\drools-wb-workitems-editor-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\drools\drools-wb-workitems-editor-backend\6.1.0-SNAPSHOT\drools-wb-workitems-editor-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-bpmn2\6.1.0-SNAPSHOT\jbpm-bpmn2-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-designer-client\6.1.0-SNAPSHOT\jbpm-designer-client-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-designer-api\6.1.0-SNAPSHOT\jbpm-designer-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\uberfire\uberfire-api.4.0-SNAPSHOT\uberfire-api-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-designer-backend\6.1.0-SNAPSHOT\jbpm-designer-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\mvel\mvel2\2.1.8.Final\mvel2-2.1.8.Final.jar;D:\MavenLocalRepository\org\jbpm\jbpm-flow\6.1.0-SNAPSHOT\jbpm-flow-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-flow-builder\6.1.0-SNAPSHOT\jbpm-flow-builder-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-workitems\6.1.0-SNAPSHOT\jbpm-workitems-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\apache\commons\commons-compress\1.4.1\commons-compress-1.4.1.jar;D:\MavenLocalRepository\org\tukaani\xz\1.0\xz-1.0.jar;D:\MavenLocalRepository\org\apache\commons\commons-exec\1.0.1\commons-exec-1.0.1.jar;D:\MavenLocalRepository\jivesoftware\smack\3.1.0\smack-3.1.0.jar;D:\MavenLocalRepository\rome\rome\1.0\rome-1.0.jar;D:\MavenLocalRepository\commons-net\commons-net\2.2\commons-net-2.2.jar;D:\MavenLocalRepository\org\apache\cxf\cxf-rt-frontend-jaxws\2.6.8\cxf-rt-frontend-jaxws-2.6.8.jar;D:\MavenLocalRepository\xml-resolver\xml-resolver\1.2\xml-resolver-1.2.jar;D:\MavenLocalRepository\asm\asm\3.1\asm-3.1.jar;D:\MavenLocalRepository\org\apache\cxf\cxf-api\2.6.8\cxf-api-2.6.8.jar;D:\MavenLocalRepository\org\apache\geronimo\specs\geronimo-javamail_1.4_spec\1.7.1\geronimo-javamail_1.4_spec-1.7.1.jar;D:\MavenLocalRepository\org\apache\cxf\cxf-rt-core\2.6.8\cxf-rt-core-2.6.8.jar;D:\MavenLocalRepository\org\apache\cxf\cxf-rt-bindings-soap\2.6.8\cxf-rt-bindings-soap-2.6.8.jar;D:\MavenLocalRepository\org\apache\cxf\cxf-rt-bindings-xml\2.6.8\cxf-rt-bindings-xml-2.6.8.jar;D:\MavenLocalRepository\org\apache\cxf\cxf-rt-frontend-simple\2.6.8\cxf-rt-frontend-simple-2.6.8.jar;D:\MavenLocalRepository\org\apache\cxf\cxf-rt-ws-addr\2.6.8\cxf-rt-ws-addr-2.6.8.jar;D:\MavenLocalRepository\org\apache\cxf\cxf-rt-ws-policy\2.6.8\cxf-rt-ws-policy-2.6.8.jar;D:\MavenLocalRepository\org\apache\cxf\cxf-rt-databinding-jaxb\2.6.8\cxf-rt-databinding-jaxb-2.6.8.jar;D:\MavenLocalRepository\wsdl4j\wsdl4j\1.6.2\wsdl4j-1.6.2.jar;D:\MavenLocalRepository\org\apache\neethi\neethi\3.0.2\neethi-3.0.2.jar;D:\MavenLocalRepository\org\codehaus\woodstox\woodstox-core-asl\4.2.0\woodstox-core-asl-4.2.0.jar;D:\MavenLocalRepository\javax\xml\stream\stax-api\1.0-2\stax-api-1.0-2.jar;D:\MavenLocalRepository\org\codehaus\woodstox\stax2-api\3.1.1\stax2-api-3.1.1.jar;D:\MavenLocalRepository\org\apache\ws\xmlschema\xmlschema-core\2.0.3\xmlschema-core-2.0.3.jar;D:\MavenLocalRepository\org\jbpm\jbpm5\jbpmmigration.12\jbpmmigration-0.12.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-bpmn-form-builder\6.1.0-SNAPSHOT\jbpm-form-modeler-bpmn-form-builder-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\com\google\javascript\closure-compiler\r1741\closure-compiler-r1741.jar;D:\MavenLocalRepository\args4j\args4j\2.0.12\args4j-2.0.12.jar;D:\MavenLocalRepository\com\google\code\findbugs\jsr305\1.3.9\jsr305-1.3.9.jar;D:\MavenLocalRepository\com\googlecode\jarjar\jarjar\1.1\jarjar-1.1.jar;D:\MavenLocalRepository\org\json\json\20090211\json-20090211.jar;D:\MavenLocalRepository\org\jdom\jdom\1.1.3\jdom-1.1.3.jar;D:\MavenLocalRepository\org\apache\velocity\velocity\1.7\velocity-1.7.jar;D:\MavenLocalRepository\org\apache\xmlgraphics\xmlgraphics-commons\1.4\xmlgraphics-commons-1.4.jar;D:\MavenLocalRepository\commons-logging\commons-logging\1.1.1\commons-logging-1.1.1.jar;D:\MavenLocalRepository\batik\batik-parser\1.6-1\batik-parser-1.6-1.jar;D:\MavenLocalRepository\batik\batik-transcoder\1.6-1\batik-transcoder-1.6-1.jar;D:\MavenLocalRepository\batik\batik-extension\1.6-1\batik-extension-1.6-1.jar;D:\MavenLocalRepository\batik\batik-dom\1.6-1\batik-dom-1.6-1.jar;D:\MavenLocalRepository\batik\batik-xml\1.6-1\batik-xml-1.6-1.jar;D:\MavenLocalRepository\batik\batik-bridge\1.6-1\batik-bridge-1.6-1.jar;D:\MavenLocalRepository\batik\batik-css\1.6-1\batik-css-1.6-1.jar;D:\MavenLocalRepository\batik\batik-svg-dom\1.6-1\batik-svg-dom-1.6-1.jar;D:\MavenLocalRepository\batik\batik-svggen\1.6-1\batik-svggen-1.6-1.jar;D:\MavenLocalRepository\batik\batik-util\1.6-1\batik-util-1.6-1.jar;D:\MavenLocalRepository\batik\batik-gui-util\1.6-1\batik-gui-util-1.6-1.jar;D:\MavenLocalRepository\batik\batik-ext\1.6-1\batik-ext-1.6-1.jar;D:\MavenLocalRepository\batik\batik-script\1.6-1\batik-script-1.6-1.jar;D:\MavenLocalRepository\batik\batik-gvt\1.6-1\batik-gvt-1.6-1.jar;D:\MavenLocalRepository\batik\batik-awt-util\1.6-1\batik-awt-util-1.6-1.jar;D:\MavenLocalRepository\org\apache\xmlgraphics\fop.95\fop-0.95.jar;D:\MavenLocalRepository\org\apache\avalon\framework\avalon-framework-api\4.3.1\avalon-framework-api-4.3.1.jar;D:\MavenLocalRepository\xerces\xercesImpl\2.9.1\xercesImpl-2.9.1.jar;D:\MavenLocalRepository\xml-apis\xml-apis\1.3.04\xml-apis-1.3.04.jar;D:\MavenLocalRepository\com\thoughtworks\xstream\xstream\1.4.3\xstream-1.4.3.jar;D:\MavenLocalRepository\xmlpull\xmlpull\1.1.3.1\xmlpull-1.1.3.1.jar;D:\MavenLocalRepository\xpp3\xpp3_min\1.1.4c\xpp3_min-1.1.4c.jar;D:\MavenLocalRepository\javax\mail\mail\1.4.5\mail-1.4.5.jar;D:\MavenLocalRepository\rhino\js\1.7R2\js-1.7R2.jar;D:\MavenLocalRepository\xalan\xalan\2.7.1\xalan-2.7.1.jar;D:\MavenLocalRepository\xalan\serializer\2.7.1\serializer-2.7.1.jar;D:\MavenLocalRepository\org\codehaus\jackson\jackson-core-asl\1.9.9\jackson-core-asl-1.9.9.jar;D:\MavenLocalRepository\org\codehaus\jackson\jackson-mapper-asl\1.9.9\jackson-mapper-asl-1.9.9.jar;D:\MavenLocalRepository\org\antlr\ST4\4.0.7\ST4-4.0.7.jar;D:\MavenLocalRepository\org\osgi\org.osgi.compendium\4.2.0\org.osgi.compendium-4.2.0.jar;D:\MavenLocalRepository\avalon-framework\avalon-framework\4.1.4\avalon-framework-4.1.4.jar;D:\MavenLocalRepository\org\apache\abdera\abdera-i18n\1.1.2\abdera-i18n-1.1.2.jar;D:\MavenLocalRepository\org\apache\geronimo\specs\geronimo-activation_1.0.2_spec\1.1\geronimo-activation_1.0.2_spec-1.1.jar;D:\MavenLocalRepository\commons-collections\commons-collections\3.2.1\commons-collections-3.2.1.jar;D:\MavenLocalRepository\commons-codec\commons-codec\1.4\commons-codec-1.4.jar;D:\MavenLocalRepository\commons-configuration\commons-configuration\1.6\commons-configuration-1.6.jar;D:\MavenLocalRepository\commons-httpclient\commons-httpclient\3.1\commons-httpclient-3.1.jar;D:\MavenLocalRepository\commons-fileupload\commons-fileupload\1.2.2\commons-fileupload-1.2.2.jar;D:\MavenLocalRepository\commons-lang\commons-lang\2.6\commons-lang-2.6.jar;D:\MavenLocalRepository\org\drools\jbpm-simulation\6.1.0-SNAPSHOT\jbpm-simulation-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\apache\commons\commons-math\2.2\commons-math-2.2.jar;D:\MavenLocalRepository\org\drools\drools-simulator\6.1.0-SNAPSHOT\drools-simulator-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\javax\xml\bind\jaxb-api\2.2.5\jaxb-api-2.2.5.jar;D:\MavenLocalRepository\org\jboss\solder\solder-api\3.2.1.Final\solder-api-3.2.1.Final.jar;D:\MavenLocalRepository\org\uberfire\uberfire-js.4.0-SNAPSHOT\uberfire-js-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\uberfire\uberfire-security-api.4.0-SNAPSHOT\uberfire-security-api-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\uberfire\uberfire-server.4.0-SNAPSHOT\uberfire-server-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\commons-io\commons-io\2.1\commons-io-2.1.jar;D:\MavenLocalRepository\org\uberfire\uberfire-security-client.4.0-SNAPSHOT\uberfire-security-client-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\uberfire\uberfire-security-server.4.0-SNAPSHOT\uberfire-security-server-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\yaml\snakeyaml\1.8\snakeyaml-1.8.jar;D:\MavenLocalRepository\org\uberfire\uberfire-client-api.4.0-SNAPSHOT\uberfire-client-api-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jboss\errai\errai-common\2.4.3.Final\errai-common-2.4.3.Final.jar;D:\MavenLocalRepository\org\jboss\errai\reflections\reflections\2.4.3.Final\reflections-2.4.3.Final.jar;D:\MavenLocalRepository\org\uberfire\uberfire-widgets-core-client.4.0-SNAPSHOT\uberfire-widgets-core-client-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\uberfire\uberfire-widgets-commons.4.0-SNAPSHOT\uberfire-widgets-commons-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\com\github\gwtbootstrap\gwt-bootstrap\2.2.1.0\gwt-bootstrap-2.2.1.0.jar;D:\MavenLocalRepository\org\uberfire\uberfire-workbench-client.4.0-SNAPSHOT\uberfire-workbench-client-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\com\allen-sauer\gwt\dnd\gwt-dnd\3.1.2\gwt-dnd-3.1.2.jar;D:\MavenLocalRepository\com\google\guava\guava-gwt\13.0.1\guava-gwt-13.0.1.jar;D:\MavenLocalRepository\org\uberfire\uberfire-workbench-processors.4.0-SNAPSHOT\uberfire-workbench-processors-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\freemarker\freemarker\2.3.19\freemarker-2.3.19.jar;D:\MavenLocalRepository\javax\enterprise\cdi-api\1.0-SP4\cdi-api-1.0-SP4.jar;D:\MavenLocalRepository\org\jboss\spec\javax\interceptor\jboss-interceptors-api_1.1_spec\1.0.0.Beta1\jboss-interceptors-api_1.1_spec-1.0.0.Beta1.jar;D:\MavenLocalRepository\javax\annotation\jsr250-api\1.0\jsr250-api-1.0.jar;D:\MavenLocalRepository\org\uberfire\uberfire-nio2-jgit.4.0-SNAPSHOT\uberfire-nio2-jgit-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\apache\sshd\sshd-core.9.0\sshd-core-0.9.0.jar;D:\MavenLocalRepository\org\apache\mina\mina-core\2.0.4\mina-core-2.0.4.jar;D:\MavenLocalRepository\org\eclipse\jgit\org.eclipse.jgit\2.1.0.201209190230-r\org.eclipse.jgit-2.1.0.201209190230-r.jar;D:\MavenLocalRepository\com\jcraft\jsch.1.48\jsch-0.1.48.jar;D:\MavenLocalRepository\org\uberfire\uberfire-nio2-fs.4.0-SNAPSHOT\uberfire-nio2-fs-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\uberfire\uberfire-io.4.0-SNAPSHOT\uberfire-io-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\apache\helix\helix-core.6.2-incubating\helix-core-0.6.2-incubating.jar;D:\MavenLocalRepository\log4j\log4j\1.2.17\log4j-1.2.17.jar;D:\MavenLocalRepository\org\apache\zookeeper\zookeeper\3.3.4\zookeeper-3.3.4.jar;D:\MavenLocalRepository\commons-cli\commons-cli\1.2\commons-cli-1.2.jar;D:\MavenLocalRepository\com\github\sgroschupf\zkclient.1\zkclient-0.1.jar;D:\MavenLocalRepository\org\apache\camel\camel-josql\2.12.1\camel-josql-2.12.1.jar;D:\MavenLocalRepository\org\apache\camel\camel-core\2.10.3\camel-core-2.10.3.jar;D:\MavenLocalRepository\net\sf\josql\josql\1.5\josql-1.5.jar;D:\MavenLocalRepository\net\sf\josql\gentlyweb-utils\1.5\gentlyweb-utils-1.5.jar;D:\MavenLocalRepository\org\restlet\jse\org.restlet\2.1.4\org.restlet-2.1.4.jar;D:\MavenLocalRepository\org\uberfire\uberfire-commons.4.0-SNAPSHOT\uberfire-commons-0.4.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jboss\errai\errai-jboss-as-support\2.4.3.Final\errai-jboss-as-support-2.4.3.Final.jar;D:\MavenLocalRepository\org\jboss\errai\errai-bus\2.4.3.Final\errai-bus-2.4.3.Final.jar;D:\MavenLocalRepository\org\jboss\errai\errai-config\2.4.3.Final\errai-config-2.4.3.Final.jar;D:\MavenLocalRepository\org\jboss\errai\errai-marshalling\2.4.3.Final\errai-marshalling-2.4.3.Final.jar;D:\MavenLocalRepository\com\google\inject\guice\3.0\guice-3.0.jar;D:\MavenLocalRepository\aopalliance\aopalliance\1.0\aopalliance-1.0.jar;D:\MavenLocalRepository\org\javassist\javassist\3.15.0-GA\javassist-3.15.0-GA.jar;D:\MavenLocalRepository\org\jboss\errai\io\netty\netty\4.0.0.Alpha1.errai.r1\netty-4.0.0.Alpha1.errai.r1.jar;D:\MavenLocalRepository\com\google\guava\guava\13.0.1\guava-13.0.1.jar;D:\MavenLocalRepository\org\jgroups\jgroups\3.2.10.Final\jgroups-3.2.10.Final.jar;D:\MavenLocalRepository\org\jboss\errai\errai-ioc\2.4.3.Final\errai-ioc-2.4.3.Final.jar;D:\MavenLocalRepository\org\jboss\errai\errai-codegen\2.4.3.Final\errai-codegen-2.4.3.Final.jar;D:\MavenLocalRepository\org\jboss\errai\errai-codegen-gwt\2.4.3.Final\errai-codegen-gwt-2.4.3.Final.jar;D:\MavenLocalRepository\org\jboss\errai\errai-cdi-client\2.4.3.Final\errai-cdi-client-2.4.3.Final.jar;D:\MavenLocalRepository\org\jboss\errai\errai-ioc-bus-support\2.4.3.Final\errai-ioc-bus-support-2.4.3.Final.jar;D:\MavenLocalRepository\org\jboss\errai\errai-javax-enterprise\2.4.3.Final\errai-javax-enterprise-2.4.3.Final.jar;D:\MavenLocalRepository\org\jboss\errai\errai-weld-integration\2.4.3.Final\errai-weld-integration-2.4.3.Final.jar;D:\MavenLocalRepository\org\jboss\errai\errai-cdi-jetty\2.4.3.Final\errai-cdi-jetty-2.4.3.Final.jar;D:\MavenLocalRepository\org\jboss\errai\errai-ui\2.4.3.Final\errai-ui-2.4.3.Final.jar;D:\MavenLocalRepository\org\jsoup\jsoup\1.7.1\jsoup-1.7.1.jar;D:\MavenLocalRepository\org\apache\stanbol\org.apache.stanbol.enhancer.engines.htmlextractor.10.0\org.apache.stanbol.enhancer.engines.htmlextractor-0.10.0.jar;D:\MavenLocalRepository\org\apache\clerezza\rdf.core.12-incubating\rdf.core-0.12-incubating.jar;D:\MavenLocalRepository\org\apache\clerezza\utils.1-incubating\utils-0.1-incubating.jar;D:\MavenLocalRepository\org\wymiwyg\wymiwyg-commons-core.7.6\wymiwyg-commons-core-0.7.6.jar;D:\MavenLocalRepository\commons-logging\commons-logging-api\1.1\commons-logging-api-1.1.jar;D:\MavenLocalRepository\org\lesscss\lesscss\1.3.3\lesscss-1.3.3.jar;D:\MavenLocalRepository\org\apache\commons\commons-lang3\3.1\commons-lang3-3.1.jar;D:\MavenLocalRepository\org\mozilla\rhino\1.7R4\rhino-1.7R4.jar;D:\MavenLocalRepository\org\jboss\errai\errai-data-binding\2.4.3.Final\errai-data-binding-2.4.3.Final.jar;D:\MavenLocalRepository\com\h2database\h2\1.3.168\h2-1.3.168.jar;D:\MavenLocalRepository\org\hibernate\hibernate-entitymanager\4.2.0.SP1\hibernate-entitymanager-4.2.0.SP1.jar;D:\MavenLocalRepository\org\jboss\logging\jboss-logging\3.1.2.GA\jboss-logging-3.1.2.GA.jar;D:\MavenLocalRepository\org\jboss\spec\javax\transaction\jboss-transaction-api_1.1_spec\1.0.1.Final\jboss-transaction-api_1.1_spec-1.0.1.Final.jar;D:\MavenLocalRepository\dom4j\dom4j\1.6.1\dom4j-1.6.1.jar;D:\MavenLocalRepository\org\hibernate\common\hibernate-commons-annotations\4.0.1.Final\hibernate-commons-annotations-4.0.1.Final.jar;D:\MavenLocalRepository\org\hibernate\hibernate-core\4.2.0.SP1\hibernate-core-4.2.0.SP1.jar;D:\MavenLocalRepository\antlr\antlr\2.7.7\antlr-2.7.7.jar;D:\MavenLocalRepository\org\hibernate\hibernate-validator\4.3.1.Final\hibernate-validator-4.3.1.Final.jar;D:\MavenLocalRepository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA.jar;D:\MavenLocalRepository\org\mortbay\jetty\jetty\6.1.25\jetty-6.1.25.jar;D:\MavenLocalRepository\org\mortbay\jetty\jetty-util\6.1.25\jetty-util-6.1.25.jar;D:\MavenLocalRepository\org\mortbay\jetty\servlet-api\2.5-20081211\servlet-api-2.5-20081211.jar;D:\MavenLocalRepository\org\mortbay\jetty\jetty-plus\6.1.25\jetty-plus-6.1.25.jar;D:\MavenLocalRepository\org\mortbay\jetty\jetty-naming\6.1.25\jetty-naming-6.1.25.jar;D:\MavenLocalRepository\org\jboss\weld\se\weld-se-core\1.1.13.Final\weld-se-core-1.1.13.Final.jar;D:\MavenLocalRepository\org\jboss\weld\weld-spi\1.1.Final\weld-spi-1.1.Final.jar;D:\MavenLocalRepository\org\jboss\weld\weld-api\1.1.Final\weld-api-1.1.Final.jar;D:\MavenLocalRepository\org\jboss\weld\weld-core\1.1.13.Final\weld-core-1.1.13.Final.jar;D:\MavenLocalRepository\org\slf4j\slf4j-ext\1.7.2\slf4j-ext-1.7.2.jar;D:\MavenLocalRepository\ch\qos\cal10n\cal10n-api.7.4\cal10n-api-0.7.4.jar;D:\MavenLocalRepository\javax\el\el-api\2.2\el-api-2.2.jar;D:\MavenLocalRepository\org\jboss\weld\servlet\weld-servlet-core\1.1.13.Final\weld-servlet-core-1.1.13.Final.jar;D:\MavenLocalRepository\org\jboss\solder\solder-impl\3.2.1.Final\solder-impl-3.2.1.Final.jar;D:\MavenLocalRepository\org\hamcrest\hamcrest-core\1.3.RC2\hamcrest-core-1.3.RC2.jar;D:\MavenLocalRepository\com\google\gwt\gwt-user\2.5.0\gwt-user-2.5.0.jar;D:\MavenLocalRepository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA-sources.jar;D:\MavenLocalRepository\org\osgi\org.osgi.core\4.2.0\org.osgi.core-4.2.0.jar;D:\MavenLocalRepository\com\sun\xml\bind\jaxb-impl\2.2.5\jaxb-impl-2.2.5.jar;D:\MavenLocalRepository\com\sun\xml\bind\jaxb-xjc\2.2.5\jaxb-xjc-2.2.5.jar;D:\MavenLocalRepository\javax\transaction\jta\1.1\jta-1.1.jar;D:\MavenLocalRepository\org\codehaus\btm\btm\2.1.4\btm-2.1.4.jar;D:\MavenLocalRepository\org\jbpm\jbpm-shared-services\6.1.0-SNAPSHOT\jbpm-shared-services-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\drools\drools-persistence-jpa\6.1.0-SNAPSHOT\drools-persistence-jpa-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-bpmn2-emfextmodel\6.1.0-SNAPSHOT\jbpm-bpmn2-emfextmodel-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\eclipse\emf\org.eclipse.emf.common\2.6.0.v20100614-1136\org.eclipse.emf.common-2.6.0.v20100614-1136.jar;D:\MavenLocalRepository\org\eclipse\emf\org.eclipse.emf.ecore\2.6.0.v20100614-1136\org.eclipse.emf.ecore-2.6.0.v20100614-1136.jar;D:\MavenLocalRepository\org\eclipse\emf\org.eclipse.emf.ecore.xmi\2.5.0.v20100521-1846\org.eclipse.emf.ecore.xmi-2.5.0.v20100521-1846.jar;D:\MavenLocalRepository\org\eclipse\org.eclipse.bpmn2.7.3\org.eclipse.bpmn2-0.7.3.jar;D:\MavenLocalRepository\org\kie\remote\kie-services-remote\6.1.0-SNAPSHOT\kie-services-remote-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\remote\kie-services-client\6.1.0-SNAPSHOT\kie-services-client-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\javax\jms\jms\1.1\jms-1.1.jar;D:\MavenLocalRepository\org\jboss\spec\javax\servlet\jboss-servlet-api_3.0_spec\1.0.2.Final\jboss-servlet-api_3.0_spec-1.0.2.Final.jar;D:\MavenLocalRepository\org\jboss\resteasy\resteasy-jaxrs\2.3.6.Final\resteasy-jaxrs-2.3.6.Final.jar;D:\MavenLocalRepository\org\scannotation\scannotation\1.0.3\scannotation-1.0.3.jar;D:\MavenLocalRepository\javassist\javassist\3.12.1.GA\javassist-3.12.1.GA.jar;D:\MavenLocalRepository\net\jcip\jcip-annotations\1.0\jcip-annotations-1.0.jar;D:\MavenLocalRepository\org\jboss\resteasy\resteasy-jaxb-provider\2.3.6.Final\resteasy-jaxb-provider-2.3.6.Final.jar;D:\MavenLocalRepository\org\jboss\resteasy\resteasy-jackson-provider\2.3.6.Final\resteasy-jackson-provider-2.3.6.Final.jar;D:\MavenLocalRepository\org\codehaus\jackson\jackson-jaxrs\1.9.9\jackson-jaxrs-1.9.9.jar;D:\MavenLocalRepository\org\codehaus\jackson\jackson-xc\1.9.9\jackson-xc-1.9.9.jar;D:\MavenLocalRepository\org\jbpm\jbpm-audit\6.1.0-SNAPSHOT\jbpm-audit-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jboss\resteasy\jaxrs-api\2.3.6.Final\jaxrs-api-2.3.6.Final.jar;D:\MavenLocalRepository\org\jboss\resteasy\resteasy-jettison-provider\2.3.6.Final\resteasy-jettison-provider-2.3.6.Final.jar;D:\MavenLocalRepository\org\codehaus\jettison\jettison\1.3.1\jettison-1.3.1.jar;D:\MavenLocalRepository\org\jboss\spec\javax\ejb\jboss-ejb-api_3.1_spec\1.0.2.Final\jboss-ejb-api_3.1_spec-1.0.2.Final.jar;D:\MavenLocalRepository\org\guvnor\guvnor-services-api\6.1.0-SNAPSHOT\guvnor-services-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\guvnor\guvnor-m2repo-editor-api\6.1.0-SNAPSHOT\guvnor-m2repo-editor-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\guvnor\guvnor-m2repo-editor-client\6.1.0-SNAPSHOT\guvnor-m2repo-editor-client-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\guvnor\guvnor-m2repo-editor-backend\6.1.0-SNAPSHOT\guvnor-m2repo-editor-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\sonatype\maven\wagon-ahc\1.2.1\wagon-ahc-1.2.1.jar;D:\MavenLocalRepository\com\ning\async-http-client\1.6.5\async-http-client-1.6.5.jar;D:\MavenLocalRepository\org\jboss\netty\netty\3.2.6.Final\netty-3.2.6.Final.jar;D:\MavenLocalRepository\org\guvnor\guvnor-project-api\6.1.0-SNAPSHOT\guvnor-project-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\drools\drools-workbench-models-datamodel-api\6.1.0-SNAPSHOT\drools-workbench-models-datamodel-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\guvnor\guvnor-project-backend\6.1.0-SNAPSHOT\guvnor-project-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\guvnor\guvnor-services-backend\6.1.0-SNAPSHOT\guvnor-services-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\guvnor\guvnor-workingset-api\6.1.0-SNAPSHOT\guvnor-workingset-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\guvnor\guvnor-workingset-client\6.1.0-SNAPSHOT\guvnor-workingset-client-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\guvnor\guvnor-project-builder\6.1.0-SNAPSHOT\guvnor-project-builder-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\com\google\protobuf\protobuf-java\2.5.0\protobuf-java-2.5.0.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-project-explorer-backend\6.1.0-SNAPSHOT\kie-wb-common-project-explorer-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-project-explorer-api\6.1.0-SNAPSHOT\kie-wb-common-project-explorer-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-project-explorer-client\6.1.0-SNAPSHOT\kie-wb-common-project-explorer-client-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-project-editor-client\6.1.0-SNAPSHOT\kie-wb-common-project-editor-client-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-project-editor-api\6.1.0-SNAPSHOT\kie-wb-common-project-editor-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\widgets\kie-wb-view-source-widget\6.1.0-SNAPSHOT\kie-wb-view-source-widget-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-default-editor-api\6.1.0-SNAPSHOT\kie-wb-common-default-editor-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-default-editor-client\6.1.0-SNAPSHOT\kie-wb-common-default-editor-client-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-project-editor-backend\6.1.0-SNAPSHOT\kie-wb-common-project-editor-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-project-imports-editor-client\6.1.0-SNAPSHOT\kie-wb-common-project-imports-editor-client-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-project-imports-editor-api\6.1.0-SNAPSHOT\kie-wb-common-project-imports-editor-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\services\kie-wb-common-datamodel-api\6.1.0-SNAPSHOT\kie-wb-common-datamodel-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\services\kie-wb-common-security\6.1.0-SNAPSHOT\kie-wb-common-security-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\widgets\kie-wb-common-ui\6.1.0-SNAPSHOT\kie-wb-common-ui-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\drools\drools-workbench-models-commons\6.1.0-SNAPSHOT\drools-workbench-models-commons-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\services\kie-wb-common-datamodel-backend\6.1.0-SNAPSHOT\kie-wb-common-datamodel-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\services\kie-wb-common-services-api\6.1.0-SNAPSHOT\kie-wb-common-services-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\services\kie-wb-common-services-backend\6.1.0-SNAPSHOT\kie-wb-common-services-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\widgets\kie-wb-metadata-widget\6.1.0-SNAPSHOT\kie-wb-metadata-widget-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\widgets\kie-wb-config-resource-widget\6.1.0-SNAPSHOT\kie-wb-config-resource-widget-6.1.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-dashboard\jbpm-console-ng-dashboard-client\target\jbpm-console-ng-dashboard-client-6.1.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-dashboard\jbpm-console-ng-dashboard-backend\target\jbpm-console-ng-dashboard-backend-6.1.0-SNAPSHOT.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-dashboard\jbpm-console-ng-dashboard-api\target\jbpm-console-ng-dashboard-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-app\6.1.0-SNAPSHOT\jbpm-form-modeler-app-6.1.0-SNAPSHOT.war;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-renderer-api\6.1.0-SNAPSHOT\jbpm-form-modeler-renderer-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-renderer-client\6.1.0-SNAPSHOT\jbpm-form-modeler-renderer-client-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-renderer-backend\6.1.0-SNAPSHOT\jbpm-form-modeler-renderer-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-editor-api\6.1.0-SNAPSHOT\jbpm-form-modeler-editor-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-editor-client\6.1.0-SNAPSHOT\jbpm-form-modeler-editor-client-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-editor-backend\6.1.0-SNAPSHOT\jbpm-form-modeler-editor-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\services\kie-wb-common-data-modeller-core\6.1.0-SNAPSHOT\kie-wb-common-data-modeller-core-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-form-provider\6.1.0-SNAPSHOT\jbpm-form-modeler-form-provider-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-data-modeller-api\6.1.0-SNAPSHOT\kie-wb-common-data-modeller-api-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-data-modeller-backend\6.1.0-SNAPSHOT\kie-wb-common-data-modeller-backend-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-data-modeller-client\6.1.0-SNAPSHOT\kie-wb-common-data-modeller-client-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-data-modeler\6.1.0-SNAPSHOT\jbpm-form-modeler-data-modeler-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-service-core\6.1.0-SNAPSHOT\jbpm-form-modeler-service-core-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-common\6.1.0-SNAPSHOT\jbpm-form-modeler-common-6.1.0-SNAPSHOT.jar;D:\MavenLocalRepository\net\sf\opencsv\opencsv\2.3\opencsv-2.3.jar;D:\MavenLocalRepository\commons-jxpath\commons-jxpath\1.3\commons-jxpath-1.3.jar;D:\MavenLocalRepository\org\beanshell\bsh\1.3.0\bsh-1.3.0.jar;D:\MavenLocalRepository\org\jboss\spec\javax\servlet\jsp\jboss-jsp-api_2.2_spec\1.0.1.Final\jboss-jsp-api_2.2_spec-1.0.1.Final.jar;D:\MavenLocalRepository\javax\servlet\jstl\1.2\jstl-1.2.jar;D:\MavenLocalRepository\org\guvnor\guvnor-m2repo-editor-api\6.1.0-SNAPSHOT\guvnor-m2repo-editor-api-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\guvnor\guvnor-m2repo-editor-client\6.1.0-SNAPSHOT\guvnor-m2repo-editor-client-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\guvnor\guvnor-workingset-api\6.1.0-SNAPSHOT\guvnor-workingset-api-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\guvnor\guvnor-workingset-client\6.1.0-SNAPSHOT\guvnor-workingset-client-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\guvnor\guvnor-services-api\6.1.0-SNAPSHOT\guvnor-services-api-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\guvnor\guvnor-project-api\6.1.0-SNAPSHOT\guvnor-project-api-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-project-editor-api\6.1.0-SNAPSHOT\kie-wb-common-project-editor-api-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-project-editor-client\6.1.0-SNAPSHOT\kie-wb-common-project-editor-client-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-project-imports-editor-api\6.1.0-SNAPSHOT\kie-wb-common-project-imports-editor-api-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-project-imports-editor-client\6.1.0-SNAPSHOT\kie-wb-common-project-imports-editor-client-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-project-explorer-api\6.1.0-SNAPSHOT\kie-wb-common-project-explorer-api-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-project-explorer-client\6.1.0-SNAPSHOT\kie-wb-common-project-explorer-client-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\widgets\kie-wb-common-ui\6.1.0-SNAPSHOT\kie-wb-common-ui-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\widgets\kie-wb-view-source-widget\6.1.0-SNAPSHOT\kie-wb-view-source-widget-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\widgets\kie-wb-metadata-widget\6.1.0-SNAPSHOT\kie-wb-metadata-widget-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\widgets\kie-wb-config-resource-widget\6.1.0-SNAPSHOT\kie-wb-config-resource-widget-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\services\kie-wb-common-services-api\6.1.0-SNAPSHOT\kie-wb-common-services-api-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\services\kie-wb-common-security\6.1.0-SNAPSHOT\kie-wb-common-security-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\services\kie-wb-common-datamodel-api\6.1.0-SNAPSHOT\kie-wb-common-datamodel-api-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-data-modeller-api\6.1.0-SNAPSHOT\kie-wb-common-data-modeller-api-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\kie\workbench\screens\kie-wb-common-data-modeller-client\6.1.0-SNAPSHOT\kie-wb-common-data-modeller-client-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\drools\drools-wb-workitems-editor-api\6.1.0-SNAPSHOT\drools-wb-workitems-editor-api-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\drools\drools-wb-workitems-editor-client\6.1.0-SNAPSHOT\drools-wb-workitems-editor-client-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\uberfire\uberfire-commons.4.0-SNAPSHOT\uberfire-commons-0.4.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\uberfire\uberfire-nio2-model.4.0-SNAPSHOT\uberfire-nio2-model-0.4.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\uberfire\uberfire-js.4.0-SNAPSHOT\uberfire-js-0.4.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\uberfire\uberfire-security-api.4.0-SNAPSHOT\uberfire-security-api-0.4.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\uberfire\uberfire-security-client.4.0-SNAPSHOT\uberfire-security-client-0.4.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\uberfire\uberfire-client-api.4.0-SNAPSHOT\uberfire-client-api-0.4.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\uberfire\uberfire-widgets-core-client.4.0-SNAPSHOT\uberfire-widgets-core-client-0.4.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\uberfire\uberfire-widgets-commons.4.0-SNAPSHOT\uberfire-widgets-commons-0.4.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\uberfire\uberfire-workbench-client.4.0-SNAPSHOT\uberfire-workbench-client-0.4.0-SNAPSHOT-sources.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-bpm-home\jbpm-console-ng-bpm-home-client\target\jbpm-console-ng-bpm-home-client-6.1.0-SNAPSHOT-sources.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-human-tasks\jbpm-console-ng-human-tasks-api\target\jbpm-console-ng-human-tasks-api-6.1.0-SNAPSHOT-sources.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-human-tasks\jbpm-console-ng-human-tasks-client\target\jbpm-console-ng-human-tasks-client-6.1.0-SNAPSHOT-sources.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-process-runtime\jbpm-console-ng-process-runtime-api\target\jbpm-console-ng-process-runtime-api-6.1.0-SNAPSHOT-sources.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-process-runtime\jbpm-console-ng-process-runtime-client\target\jbpm-console-ng-process-runtime-client-6.1.0-SNAPSHOT-sources.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-business-domain\jbpm-console-ng-business-domain-api\target\jbpm-console-ng-business-domain-api-6.1.0-SNAPSHOT-sources.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-business-domain\jbpm-console-ng-business-domain-client\target\jbpm-console-ng-business-domain-client-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\jbpm\jbpm-designer-api\6.1.0-SNAPSHOT\jbpm-designer-api-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\jbpm\jbpm-designer-client\6.1.0-SNAPSHOT\jbpm-designer-client-6.1.0-SNAPSHOT-sources.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-dashboard\jbpm-console-ng-dashboard-api\target\jbpm-console-ng-dashboard-api-6.1.0-SNAPSHOT-sources.jar;D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-dashboard\jbpm-console-ng-dashboard-client\target\jbpm-console-ng-dashboard-client-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-editor-api\6.1.0-SNAPSHOT\jbpm-form-modeler-editor-api-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-editor-client\6.1.0-SNAPSHOT\jbpm-form-modeler-editor-client-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-renderer-api\6.1.0-SNAPSHOT\jbpm-form-modeler-renderer-api-6.1.0-SNAPSHOT-sources.jar;D:\MavenLocalRepository\org\jbpm\jbpm-form-modeler-renderer-client\6.1.0-SNAPSHOT\jbpm-form-modeler-renderer-client-6.1.0-SNAPSHOT-sources.jar, com.google.gwt.dev.Compiler, -logLevel, INFO, -style, OBF, -war, D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-showcase\target\jbpm-console-ng-showcase-6.1.0-SNAPSHOT, -localWorkers, 4, -XfragmentCount, -1, -deploy, D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-showcase\target\gwt-symbols-deploy, -gen, D:\Data\GitHub\jbpm-console-ng\jbpm-console-ng-showcase\target\.generated, org.jbpm.console.ng.FastCompiledjBPMShowcase]: Error while executing process. Cannot run program “c:\Java\jdk1.6.0_24\jre\bin\java”: CreateProcess error=87, The parameter is incorrect
[ERROR] -> [Help 1]
LikeLike
Hi ,
We are facing the same error. CreateProcess error=206, The filename or extension is too long [ERROR] -> [Help 1] . I hope this issue is for windows environment. Can you please tell me which environment are you using for building the project. We are struck up on this.
LikeLike
You can try this that is for windows.. there are a lot of threads recommending it: http://longpathtool.com but no idea to be honest
LikeLike
Thanks for the reply , There are lot of recommendations but none of them working . I give a try again.Hope you are building in a non windows environment right?
ilmusico you can able to resolve this issue??
LikeLike
As I told this issue only in windows environment but I can able to build successfully in Linux .But unfortunately we need to do our development in windows environment.
LikeLike
Hi, I switched to a Linux VM too. Regards.
LikeLike
Thanks ilmusico. Yes It is working fine in Linux.
Salaboy ,
Can you please suggest any workaround f
or windows environment?
LikeLike
You can try this that is for windows.. there are a lot of threads recommending it: http://longpathtool.com but no idea to be honest
I don’t have a windows handy to try.. but it is not a jbpm issue.. it is a generic maven issue.. so you will need to ask in their forums
LikeLike
Hi Jay,
yes the blog post is available here and it is about embedding forms in other applications using the REST API: http://pefernan.wordpress.com/2014/04/30/embedding-process-forms-on-your-applications-i/
LikeLike
HI
when type the URL http://127.0.0.1:8888/org.jbpm.console.ng.jBPMShowcase/jBPM.html?gwt.codesvr=127.0.0.1:9997 in the browser I got the following error in the browser
TP ERROR: 401
Validation fails.
RequestURI=/org.jbpm.console.ng.jBPMShowcase/jBPM.html
Powered by Jetty://
Kindly Advice
LikeLike
Hi Shaimaa, can you please explain which version of the source code are you using? when did you last pull the changes? First of all try pulling again, secondly if that fails please share which versions of Maven and JDK are you using. For some reason I think that it is failing with the JDK 1.6. Try doing java -version and mvn -version to see which versions are you using.
LikeLike
java -version
java version “1.6.0_30”
mvn -version
Apache Maven 3.1.1 (0728685237757ffbf44136acec0402957f723d9a; 2013-09-17 08:22:22-0700)
LikeLike
I got the src code using the above URL for GIT git clone https://github.com/droolsjbpm/jbpm-console-ng.git
I did this on Tuesday 13 May 2014
LikeLike
Do a git pull inside the main directory and if it doesn’t work please try with JDK 7 to see if that fixes the problem
LikeLike
It seems that a plugin has changed that now only works with JDK 7..
LikeLike
ohhhhhhhhh Finally I saw the login Page after installing JDK 7 Thank you Salaboy
now I am trying to run from eclipse “need ur recommendation for version of eclipse for Linux Centos”
LikeLike
Hi Salaboy,
Have you noticed the tmp folder of jboss under standalone is filling up in GB’s in a a little time. Is there anyway to stop this?? Please suggest. Thanks
LikeLike
Hi Jay, can you please share with us your configurations? which DB are you using? are you deploying more applications in jboss? etc.
LikeLike
Hi Salaboy.
I am using the H2. I am using jboss eap 6.1 and there is no change in configuration. Just using the default standalone-full.xml which comes with jboss eap 6.1. So you are not facing the problem? The path is jboss-eap-6.1\standalone\tmp . If i see it contains some vfs directory which occupies lot of space in GB’s
LikeLike
Seems this forum mentions the same issue i am facing but no solution mentioned.
https://community.jboss.org/thread/201817
Any suggestions?
LikeLike
if we deploy to jboss,we need to check this file first jboss-web.xm which will conatin the default security domian
if it contain “other” we change it to the jbpm-console-ng to be like this
or we can leave all things like it without changing in this file
and use the other security domain and change its files to include the previous data for user and roles files
LikeLike
Hola a todos, también tuve problemas construir desde los fuentes, por fin lo logre.
Primero hay que clonar (TODO EN LA LINEA DE COMANDOS)
git clone https://github.com/droolsjbpm/droolsjbpm-build-bootstrap.git
Este contiene los POM generales, no olviden construir el proyecto
Ahora hay que hacer un fork del proyecto original, si ya lo tienes recomiendo borrarlo y crearlo nuevamente ó sinconizarlo haciendo esto https://help.github.com/articles/syncing-a-fork/
(Había un problema con la ausencia de unos POM, ya se arreglo justo hoy Gracias @salaboy)
Finalmente
git clone https://github.com/jlgranda/jbpm-console-ng.git
cd jbpm-console-ng
mvn clean install -DskipTests -Dgwt.compiler.skip=true
Y listo!
[INFO] BUILD SUCCESS
[INFO] ————————————————————————
[INFO] Total time: 39:19 min
[INFO] Finished at: 2014-11-16T12:05:30-05:00
[INFO] Final Memory: 281M/1457M
[INFO] ————————————————————————
LikeLike
“Long Path Tool” is very helpful for this error !
You can use to solve this problem
LikeLike
The path you entered, is too long. Enter a shorter path
File Name could not be found. Check the spelling of the filename,
and verify that the file location is correct.
LikeLike
“Long Path Tool” is very helpful for this error !
You can use to solve this problem.
LikeLike
Do not worry if you want to remove the blocked files or too long path files from
your system, here I suggest a smooth way. Use “Long path tool” software and keep
yourself cool.
LikeLike
“Long Path Tool” is very helpful for this error !
best solution for your problem.
LikeLike
Long path tool is the very good program for error, unlock solution. Try it and solve your problem. I used long path tool and I solve my error, unlock problem solution.
LikeLike
Hai ,
When i run gwt:run , I am getting followin error. How can i fix the issue
Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project jbpm-console-ng-showcase: Compilation failure: Compilation failure:
/jbpm-console-ng/jbpm-console-ng-showcase/target/generated-sources/annotations/org/jbpm/console/ng/client/perspectives/HomePerspectiveActivity.java:[54,7] error: duplicate class: org.jbpm.console.ng.client.perspectives.HomePerspectiveActivity
/jbpm-console-ng/jbpm-console-ng-showcase/target/generated-sources/annotations/org/jbpm/console/ng/client/perspectives/ProjectAuthoringPerspectiveActivity.java:[41,7] error: duplicate class: org.jbpm.console.ng.client.perspectives.ProjectAuthoringPerspectiveActivity
LikeLike
The error is clear.. Have you modified the project?
LikeLike