Chernilin
Chernilin

Reputation: 33

How to integrate JBPM Business Central with Nexus

I have full Business Central JBPM 7.29.0. I want to use Nexus for the storing my drool's jars and it's dependencies instead of maven repository of business central. In documentation I have found nothing. Is it posiible?

Upvotes: 1

Views: 727

Answers (1)

Chavan Abhijeet
Chavan Abhijeet

Reputation: 41

follow below steps to configure the external Maven repository :

  • Create a Maven settings.xml file with connection and access details for your external repository. For details about the settings.xml file, see the Maven Settings Reference[1].

  • Save the file in a known location, for example, /opt/custom-config/settings.xml.

  • In your jBPM installation directory, navigate to the standalone-full.xml file. For example, if you use a JBoss EAP installation for jBPM, go to /EAP_HOME/standalone/configuration/standalone-full.xml.

Open standalone-full.xml and under the tag, set the kie.maven.settings.custom property to the full path name of the settings.xml file.

For example:

<property name="kie.maven.settings.custom" value="/opt/custom-config/settings.xml"/>
  • Start or restart Business Central and Process Server.

[1] https://maven.apache.org/settings.html

Upvotes: 1

Related Questions