Repository: mina-sshd Updated Branches: refs/heads/master ab72900ff -> e1b3d682d
Fixed definition of checkstyle plugin in order to allow correct Eclipse usage for the configuration XML Project: http://git-wip-us.apache.org/repos/asf/mina-sshd/repo Commit: http://git-wip-us.apache.org/repos/asf/mina-sshd/commit/e1b3d682 Tree: http://git-wip-us.apache.org/repos/asf/mina-sshd/tree/e1b3d682 Diff: http://git-wip-us.apache.org/repos/asf/mina-sshd/diff/e1b3d682 Branch: refs/heads/master Commit: e1b3d682dc10bb8e12e5eac673b63dc9113571d8 Parents: ab72900 Author: Ilan Keshet <[email protected]> Authored: Sun Dec 4 19:04:04 2016 +0200 Committer: Lyor Goldstein <[email protected]> Committed: Sun Dec 4 19:04:04 2016 +0200 ---------------------------------------------------------------------- pom.xml | 22 +++++++++++++++++++- .../org/apache/sshd/common/util/Invoker.java | 1 + 2 files changed, 22 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/mina-sshd/blob/e1b3d682/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index a40586f..c14c273 100644 --- a/pom.xml +++ b/pom.xml @@ -394,7 +394,7 @@ </goals> </pluginExecutionFilter> <action> - <execute /> + <ignore /> </action> </pluginExecution> <pluginExecution> @@ -541,8 +541,28 @@ <groupId>com.sun</groupId> <artifactId>tools</artifactId> </exclusion> + <exclusion> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + </exclusion> </exclusions> </dependency> + <!-- Use same version as us --> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-api</artifactId> + <version>${slf4j.version}</version> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>jcl-over-slf4j</artifactId> + <version>${slf4j.version}</version> + </dependency> + <dependency> + <groupId>org.slf4j</groupId> + <artifactId>slf4j-log4j12</artifactId> + <version>${slf4j.version}</version> + </dependency> </dependencies> </plugin> </plugins> http://git-wip-us.apache.org/repos/asf/mina-sshd/blob/e1b3d682/sshd-core/src/main/java/org/apache/sshd/common/util/Invoker.java ---------------------------------------------------------------------- diff --git a/sshd-core/src/main/java/org/apache/sshd/common/util/Invoker.java b/sshd-core/src/main/java/org/apache/sshd/common/util/Invoker.java index 39f4375..ded7fa0 100644 --- a/sshd-core/src/main/java/org/apache/sshd/common/util/Invoker.java +++ b/sshd-core/src/main/java/org/apache/sshd/common/util/Invoker.java @@ -47,6 +47,7 @@ public interface Invoker<ARG, RET> { * @param arg The argument to pass to the {@link #invoke(Object)} method * @param invokers The invokers to scan - ignored if {@code null}/empty * (also ignores {@code null} members) + * @throws Throwable If invocation failed */ static <ARG> void invokeAll(ARG arg, Collection<? extends Invoker<? super ARG, ?>> invokers) throws Throwable { if (GenericUtils.isEmpty(invokers)) {
