Skip to content

Commit

Permalink
Camel version downgraded one step, added camel-zeromq feature
Browse files Browse the repository at this point in the history
  • Loading branch information
milux committed Feb 21, 2019
1 parent 07a0728 commit 5eeec53
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ allprojects {

pax : '7.2.5',

camel : '2.23.1',
camel : '2.22.3',

// Camel ships with cxf, however it is slightly older so we want a newer version
cxf : '3.2.4',
Expand Down Expand Up @@ -115,6 +115,7 @@ allprojects {

// Configurations for bundles grouped to dedicated features apart from the main ids feature
influxFeature
zmqFeature

// OSGi core dependencies which will just be there during runtime
osgiCore
Expand Down
1 change: 1 addition & 0 deletions karaf-assembly/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@
<startupFeatures>
<feature>ids</feature>
<feature>camel-influxdb</feature>
<feature>camel-zeromq</feature>
</startupFeatures>
</configuration>
</plugin>
Expand Down
9 changes: 9 additions & 0 deletions karaf-features-ids/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ dependencies {
project.ext.bundleDependencies.each {
add("$it.configuration", project(path: ":$it.subproject", configuration: it.configuration))
}
zmqFeature group: 'org.apache-extras.camel-extra', name: 'camel-zeromq', version: '2.22.0'
}

karaf {
Expand Down Expand Up @@ -107,5 +108,13 @@ karaf {
//noinspection GroovyAssignabilityCheck
configurations 'influxFeature'
}

feature {
name = 'camel-zeromq'
description = 'Camel ZeroMQ feature'

//noinspection GroovyAssignabilityCheck
configurations 'zmqFeature'
}
}
}

0 comments on commit 5eeec53

Please sign in to comment.