lib/ivy4r.rb in ivy4r-0.12.8 vs lib/ivy4r.rb in ivy4r-0.12.9
- old
+ new
@@ -146,9 +146,14 @@
# Calls the __findrevision__ ivy target with given parameters and returns
# array containing absolute file paths to all artifacts contained in result
def findrevision(*params)
Ivy::Findrevision.new(ant, cache_dir).execute(*params)
end
+
+ # Calls the __install__ ivy target with given parameters always returns nil
+ def install(*params)
+ Ivy::Install.new(ant, cache_dir).execute(*params)
+ end
# Calls the __artifactproperty__ ivy target with given parameters and returns
# map with all defined properties
def artifactproperty(*params)
Ivy::Artifactproperty.new(ant, cache_dir).execute(*params)