nats-io / nats-jms-bridge

NATS to JMS Bridge for request/reply
12 stars 3 forks source link

Beta 23 #276

Closed RichardHightower closed 3 years ago

RichardHightower commented 3 years ago

0.26.0-beta23 NATS JMS/MQ Bridge

TAG: 0.26.0-beta23

Issues


NATS bridge will look for key store password and truststore password under the environment variables

"NATS_BRIDGE_KEY_PASS_ENV"  -> "Y2xvdWR1cmFibGUx",
"NATS_BRIDGE_TRUST_PASS_ENV" ->  "Y2xvdWR1cmFibGUy"

Example


create<JavaExec>("runIntegrationNatsToMQ") {
    main = "io.nats.bridge.admin.integration.IntegrationRequestReplyMain"
    classpath = sourceSets["main"].runtimeClasspath
    environment(mapOf(
        "NATS_BRIDGE_KEY_PASS_ENV" to "Y2xvdWR1cmFibGUx",
        "NATS_BRIDGE_TRUST_PASS_ENV" to "Y2xvdWR1cmFibGUy"
    ))
}