MVN

org.apache.servicemix : servicemix-drools

Maven & Gradle

Jan 15, 2013
8 usages

Apache ServiceMix :: Components :: Drools Service Engine · The ServiceMix Drools component provides JBI integration to the Drools Rules Engine. It can be used to deploy a rules set that will implement a router or an actual service. A router will mostly act as a transparent proxy between the consumer and the target service provider mad will mostly be implemented by the jbi.route(uri) method below. This method creates a new exchange identical to the one received by the component and will send it to the specified destination. You can also send back a Fault if needed. A router can also be implemented by using directly the JBI Apis (available with the jbi helper) by using the provided client.

<dependency>
    <groupId>org.apache.servicemix</groupId>
    <artifactId>servicemix-drools</artifactId>
    <version>2013.01</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.apache.servicemix : servicemix-drools to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2013.01

All Versions

Choose a version of org.apache.servicemix : servicemix-drools to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2013.01
servicemix-drools-2013.01
2011.02.x
servicemix-drools-2011.02.1
2011.02
servicemix-drools-2011.02
2011.01
servicemix-drools-2011.01
2010.02
servicemix-drools-2010.02
2010.01
servicemix-drools-2010.01
2009.02
servicemix-drools-2009.02
2009.01
servicemix-drools-2009.01
2008.01
servicemix-drools-2008.01
3.2.x
servicemix-drools-3.2.3
servicemix-drools-3.2.2
servicemix-drools-3.2.1
3.2
servicemix-drools-3.2
3.1.x
servicemix-drools-3.1.2

How to add a dependency to Maven

Add the following org.apache.servicemix : servicemix-drools maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.apache.servicemix</groupId>
    <artifactId>servicemix-drools</artifactId>
    <version>2013.01</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.apache.servicemix : servicemix-drools gradle dependency to your build.gradle file:

implementation 'org.apache.servicemix:servicemix-drools:2013.01'

Gradle Kotlin DSL: Add the following org.apache.servicemix : servicemix-drools gradle kotlin dependency to your build.gradle.kts file:

implementation("org.apache.servicemix:servicemix-drools:2013.01")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.apache.servicemix : servicemix-drools sbt scala dependency to your build.sbt file:

libraryDependencies += "org.apache.servicemix" % "servicemix-drools" % "2013.01"

Advertisement