This is an automated email from the ASF dual-hosted git repository. rfscholte pushed a commit to branch mockito in repository https://gitbox.apache.org/repos/asf/maven-common-artifact-filters.git
The following commit(s) were added to refs/heads/mockito by this push: new b894969 J7 compatible mockito version b894969 is described below commit b8949697ce97c6e9d52bc3b81841e735c1ba2b2e Author: rfscholte <rfscho...@apache.org> AuthorDate: Sat May 23 15:43:27 2020 +0200 J7 compatible mockito version --- pom.xml | 2 +- .../artifact/filter/ScopeArtifactFilterTest.java | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e9f5142..ca0eab9 100644 --- a/pom.xml +++ b/pom.xml @@ -139,7 +139,7 @@ <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> - <version>3.2.4</version> + <version>2.28.2</version> <scope>test</scope> </dependency> <dependency> diff --git a/src/test/java/org/apache/maven/shared/artifact/filter/ScopeArtifactFilterTest.java b/src/test/java/org/apache/maven/shared/artifact/filter/ScopeArtifactFilterTest.java index 6288b54..3086cff 100644 --- a/src/test/java/org/apache/maven/shared/artifact/filter/ScopeArtifactFilterTest.java +++ b/src/test/java/org/apache/maven/shared/artifact/filter/ScopeArtifactFilterTest.java @@ -1,5 +1,24 @@ package org.apache.maven.shared.artifact.filter; +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; import static org.mockito.Mockito.mock;