j

jbi_framework

In order to get around the JBI Lifecycle Classpath limitation in the application server, a new JBI jar file is being created called esb_jbi_framework.jar. This jar file will contain a MANIFEST.MF file that contains Class-Path: entries that point towards the jbi_rt.jar (JBI Runtime) and jbi_tests.jar (Scaffolding Registry et al) . This way we dont have to combine the throwaway jbi_tests.jar with the main jbi_rt.jar later. We would simply have to dereference it from jbi_framework.jar. Likewise adding a new JAR to the same classpath would simply mean adding a new entry to the ClassPath: header field.
文件下载
文件名 操作
jbi_framework-2.4.3.jar 下载
jbi_framework-2.4.3.pom 下载
Apache Maven
<dependency>
  <groupId>net.open-esb.core</groupId>
  <artifactId>jbi_framework</artifactId>
  <version>2.4.3</version>
</dependency>
Gradle Groovy
implementation 'net.open-esb.core:jbi_framework:2.4.3'
Gradle Kotlin
implementation("net.open-esb.core:jbi_framework:2.4.3")
Scala SBT
libraryDependencies += "net.open-esb.core" % "jbi_framework" % "2.4.3"
Groovy Grape
@Grapes(
  @Grab(group='net.open-esb.core', module='jbi_framework', version='2.4.3')
)
Apache Ivy
<dependency org="net.open-esb.core" name="jbi_framework" rev="2.4.3" />
Leiningen
[net.open-esb.core/jbi_framework "2.4.3"]
Apache Buildr
'net.open-esb.core:jbi_framework:jar:2.4.3'