capistrano-karaf 1.4.3 → 1.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/capistrano-karaf/install.rb +1 -3
- metadata +1 -1
@@ -100,7 +100,6 @@ module Install
|
|
100
100
|
end
|
101
101
|
|
102
102
|
if install_new_feature
|
103
|
-
puts "Installing feature #{feature}"
|
104
103
|
add_url(feature[:feature_url])
|
105
104
|
feature_install(feature[:feature])
|
106
105
|
end
|
@@ -114,8 +113,7 @@ module Install
|
|
114
113
|
version1 = version
|
115
114
|
end
|
116
115
|
|
117
|
-
|
118
|
-
featureUrl = "mvn:#{groupId.gsub(/\./, "/")}/#{repository}/#{version1}/xml/features"
|
116
|
+
featureUrl = "mvn:#{groupId}/#{repository}/#{version1}/xml/features"
|
119
117
|
|
120
118
|
{:feature_url => featureUrl,
|
121
119
|
:feature => feature,
|