diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2014-05-06 22:03:39 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2014-05-06 22:03:39 +0200 |
commit | 7e2d2c074c3f09266dda31c772f4bec61e8d5742 (patch) | |
tree | ceda3ff6e8f0fc968915adb5c94afe2b783ddbea /src/main/resources | |
parent | 5c762750101f12abd51621355a871e42fd9c7a33 (diff) | |
download | activemq-plugin-7e2d2c074c3f09266dda31c772f4bec61e8d5742.tar.gz activemq-plugin-7e2d2c074c3f09266dda31c772f4bec61e8d5742.tar.bz2 activemq-plugin-7e2d2c074c3f09266dda31c772f4bec61e8d5742.tar.xz activemq-plugin-7e2d2c074c3f09266dda31c772f4bec61e8d5742.zip |
o Support for listening on messages too.
o Configurable topic name.
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/org/jenkinsci/plugins/activemq/ActiveMqGlobalConfig/config.groovy | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/resources/org/jenkinsci/plugins/activemq/ActiveMqGlobalConfig/config.groovy b/src/main/resources/org/jenkinsci/plugins/activemq/ActiveMqGlobalConfig/config.groovy index 7c5cae3..13ef396 100644 --- a/src/main/resources/org/jenkinsci/plugins/activemq/ActiveMqGlobalConfig/config.groovy +++ b/src/main/resources/org/jenkinsci/plugins/activemq/ActiveMqGlobalConfig/config.groovy @@ -1,5 +1,7 @@ package org.jenkinsci.plugins.activemq.ActiveMqGlobalConfig +import org.jenkinsci.plugins.activemq.ActiveMqGlobalConfig; + def f=namespace(lib.FormTagLib) f.section(title:_("ActiveMQ Configuration")) { @@ -9,6 +11,9 @@ f.section(title:_("ActiveMQ Configuration")) { f.entry(title:_("Broker URL"), field:"brokerUrl") { f.textbox() } + f.entry(title:_("Topic Name"), field:"topicName") { + f.textbox(default: ActiveMqGlobalConfig.DEFAULT_TOPIC_NAME) + } // f.entry(title:_("URL"), field:"url") { // f.textbox(default: "my url") // } |