1 Reply Latest reply on Apr 23, 2015 11:40 AM by abhijithumbe

    Help deploying to jBPM Maven repository

    clp207

      I'm evaluating the options for deploying processes to jBPM 6. I have the jBPM console installed on a remote server. This article (Accelerate your business: how to deploy processes in jBPM 6?) suggests that I should be able to deploy directly to the jBPM maven repository. What is the URL for said repository on my remote server?

        • 1. Re: Help deploying to jBPM Maven repository
          abhijithumbe

          Hi,

          You can deploy kjar to remote server repository through jbpm-console UI or through mvn deploy command:

          1. through jBPM-console:

          - Login into console and goto 'Authoring'-->Artifact Repository-->Upload

          2. you can use following mvn deploy command to upload artifact(kjar) into server repository

          ~~~

          mvn deploy:deploy-file -DgroupId=org.kie.example -DartifactId=project1 -Dversion=1.0.4 -Dpackaging=jar -Dfile=/NotBackedUp/repository1/project1/target/project1-1.0.4.jar -DrepositoryId=guvnor-m2-repo -Durl=http://localhost:8080/jbpm-console/maven2/

          ~~~~

          Hope it helps...