Repository: ant-ivy Updated Branches: refs/heads/master 47283254c -> 7b7b37726
FIX: checkIfChanged is not settable attribute for checkdepsupdate ant task (IVY-1549) Project: http://git-wip-us.apache.org/repos/asf/ant-ivy/repo Commit: http://git-wip-us.apache.org/repos/asf/ant-ivy/commit/7b7b3772 Tree: http://git-wip-us.apache.org/repos/asf/ant-ivy/tree/7b7b3772 Diff: http://git-wip-us.apache.org/repos/asf/ant-ivy/diff/7b7b3772 Branch: refs/heads/master Commit: 7b7b37726fb328a6d796b64f2947689c6a8eb3e9 Parents: 4728325 Author: Maarten Coene <[email protected]> Authored: Wed Nov 9 00:56:36 2016 +0100 Committer: Maarten Coene <[email protected]> Committed: Wed Nov 9 00:56:36 2016 +0100 ---------------------------------------------------------------------- doc/release-notes.html | 3 ++- .../ivy/ant/IvyDependencyUpdateChecker.java | 19 +++++++++++++------ 2 files changed, 15 insertions(+), 7 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ant-ivy/blob/7b7b3772/doc/release-notes.html ---------------------------------------------------------------------- diff --git a/doc/release-notes.html b/doc/release-notes.html index 97471b3..008ac93 100644 --- a/doc/release-notes.html +++ b/doc/release-notes.html @@ -58,6 +58,7 @@ http://issues.apache.org/jira/browse/ivy List of changes since Ivy 2.4.0: +- FIX: checkIfChanged is not settable attribute for checkdepsupdate ant task (IVY-1549) - FIX: ArrayIndexOutOfBoundsException when using a p2 repository for dependencies (IVY-1504) - FIX: fixdeps remove transitive 'kept' dependencies - FIX: PomModuleDescriptorParser should parse licenses from parent POM (IVY-1526) (Thanks to Jaikiran Pai) @@ -134,7 +135,7 @@ Here is the list of people who have contributed source code and documentation up <li>Mitch Gitman</li> <li>Evgeny Goldin</li> <li>Scott Goldstein</li> -<li>Pierre Hägnestrand</li> +<li>Pierre H�gnestrand</li> <li>Scott Hebert</li> <li>Tobias Himstedt</li> <li>Aaron Hachez</li> http://git-wip-us.apache.org/repos/asf/ant-ivy/blob/7b7b3772/src/java/org/apache/ivy/ant/IvyDependencyUpdateChecker.java ---------------------------------------------------------------------- diff --git a/src/java/org/apache/ivy/ant/IvyDependencyUpdateChecker.java b/src/java/org/apache/ivy/ant/IvyDependencyUpdateChecker.java index d416e57..015b3f8 100644 --- a/src/java/org/apache/ivy/ant/IvyDependencyUpdateChecker.java +++ b/src/java/org/apache/ivy/ant/IvyDependencyUpdateChecker.java @@ -17,12 +17,6 @@ */ package org.apache.ivy.ant; -import java.io.IOException; -import java.text.ParseException; -import java.util.ArrayList; -import java.util.Iterator; -import java.util.List; - import org.apache.ivy.core.module.descriptor.Configuration; import org.apache.ivy.core.module.descriptor.DefaultModuleDescriptor; import org.apache.ivy.core.module.descriptor.DependencyDescriptor; @@ -33,6 +27,12 @@ import org.apache.ivy.core.resolve.IvyNode; import org.apache.ivy.core.resolve.ResolveOptions; import org.apache.tools.ant.BuildException; +import java.io.IOException; +import java.text.ParseException; +import java.util.ArrayList; +import java.util.Iterator; +import java.util.List; + public class IvyDependencyUpdateChecker extends IvyPostResolveTask { private String revisionToCheck = "latest.integration"; @@ -211,4 +211,11 @@ public class IvyDependencyUpdateChecker extends IvyPostResolveTask { this.showTransitive = showTransitive; } + public boolean isCheckIfChanged() { + return checkIfChanged; + } + + public void setCheckIfChanged(boolean checkIfChanged) { + this.checkIfChanged = checkIfChanged; + } }
