How to add a dependency to Maven
Add the following org.wso2.am.choreo.extensions : org.wso2.am.choreo.extensions.operation.policy.provider.bcentralprovider maven dependency to the pom.xml
file with your favorite IDE (IntelliJ / Eclipse / Netbeans):
<dependency>
<groupId>org.wso2.am.choreo.extensions</groupId>
<artifactId>org.wso2.am.choreo.extensions.operation.policy.provider.bcentralprovider</artifactId>
<version>1.1.49</version>
</dependency>
How to add a dependency to Gradle
Gradle Groovy DSL: Add the following org.wso2.am.choreo.extensions : org.wso2.am.choreo.extensions.operation.policy.provider.bcentralprovider gradle dependency to your build.gradle
file:
implementation 'org.wso2.am.choreo.extensions:org.wso2.am.choreo.extensions.operation.policy.provider.bcentralprovider:1.1.49'
Gradle Kotlin DSL: Add the following org.wso2.am.choreo.extensions : org.wso2.am.choreo.extensions.operation.policy.provider.bcentralprovider gradle kotlin dependency to your build.gradle.kts
file:
implementation("org.wso2.am.choreo.extensions:org.wso2.am.choreo.extensions.operation.policy.provider.bcentralprovider:1.1.49")
How to add a dependency to SBT Scala
SBT Scala: Add the following org.wso2.am.choreo.extensions : org.wso2.am.choreo.extensions.operation.policy.provider.bcentralprovider sbt scala dependency to your build.sbt
file:
libraryDependencies += "org.wso2.am.choreo.extensions" % "org.wso2.am.choreo.extensions.operation.policy.provider.bcentralprovider" % "1.1.49"