ivy4r 0.10.4 → 0.10.5
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +5 -1
- data/lib/buildr/ivy_extension.rb +2 -3
- data/lib/ivy4r.rb +1 -1
- metadata +2 -2
data/History.txt
CHANGED
@@ -1,4 +1,8 @@
|
|
1
|
-
=== 0.10.
|
1
|
+
=== 0.10.5 / 2010-04-26
|
2
|
+
* Fix a bug where artifacts for sub-projects have not been copied correctly to the publish directory
|
3
|
+
defined for ivy.
|
4
|
+
|
5
|
+
=== 0.10.4 / 2010-04-22
|
2
6
|
* Changes to from version 0.9.14 working preventing a circular dependency error. Buildr.projects
|
3
7
|
is not used anymore but the ivy.publish task works as expected. See 0.9.14 for more details.
|
4
8
|
|
data/lib/buildr/ivy_extension.rb
CHANGED
@@ -636,10 +636,9 @@ module IvyExtension
|
|
636
636
|
until ivy_project.ivy.own_file?
|
637
637
|
ivy_project = ivy_project.parent
|
638
638
|
end
|
639
|
-
|
640
639
|
project.packages.each do |pkg|
|
641
|
-
target_file = project.ivy.
|
642
|
-
taskname =
|
640
|
+
target_file = project.ivy.publish[pkg] || File.basename(pkg.name).gsub(/-#{project.version}/, '')
|
641
|
+
taskname = ivy_project.path_to(ivy_project.ivy.publish_from, target_file)
|
643
642
|
if taskname != pkg.name
|
644
643
|
project.file taskname => pkg.name do
|
645
644
|
verbose "Ivy copying '#{pkg.name}' to '#{taskname}' for publishing"
|
data/lib/ivy4r.rb
CHANGED
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.10.
|
4
|
+
version: 0.10.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Klaas Prause
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2010-04-
|
12
|
+
date: 2010-04-26 00:00:00 +02:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|