ivy4r 0.9.0 → 0.9.1

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ === 0.9.1 / 2009-11-16
2
+
3
+ * Fixed bug that 'type' was not working for EAR
4
+
1
5
  === 0.9.0 / 2009-11-16
2
6
 
3
7
  * Add a new configuration option for compile, test and package with name 'type'. The type can
@@ -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
@@ -35,7 +35,7 @@ is
35
35
  }
36
36
  =end
37
37
  class Ivy4r
38
- VERSION = '0.9.0'
38
+ VERSION = '0.9.1'
39
39
 
40
40
  # Set the ant home directory to load ant classes from if no custom __antwrap__ is provided
41
41
  # and the default provided ant version 1.7.1 should not be used.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ivy4r
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Klaas Prause