ivy4r 0.9.0 → 0.9.1
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/History.txt +4 -0
- data/lib/buildr/ivy_extension.rb +2 -1
- data/lib/ivy4r.rb +1 -1
- metadata +1 -1
data/History.txt
CHANGED
data/lib/buildr/ivy_extension.rb
CHANGED
@@ -540,8 +540,9 @@ For more configuration options see IvyConfig.
|
|
540
540
|
task = project.task "#{pkg.name}deps" => project.ivy.file_project.task('ivy:resolve') do
|
541
541
|
includes = project.ivy.package_include
|
542
542
|
excludes = project.ivy.package_exclude
|
543
|
+
types = project.ivy.package_type
|
543
544
|
confs = project.ivy.package_conf
|
544
|
-
if deps = project.ivy.filter(confs, :include => includes, :exclude => excludes)
|
545
|
+
if deps = project.ivy.filter(confs, :type => types, :include => includes, :exclude => excludes)
|
545
546
|
pkg.add deps, :type => :lib, :path => ''
|
546
547
|
info "Adding production libs from conf '#{confs.join(', ')}' to EAR '#{pkg.name}' in project '#{project.name}'"
|
547
548
|
end
|
data/lib/ivy4r.rb
CHANGED