This is an automated email from the ASF dual-hosted git repository. khmarbaise pushed a commit to branch MSHARED-695 in repository https://gitbox.apache.org/repos/asf/maven-artifact-transfer.git
commit 354fb0edb674b5f035d820037e04e63c1c59660d Author: Karl Heinz Marbaise <[email protected]> AuthorDate: Sun Apr 1 16:54:48 2018 +0200 [MSHARED-695] - WIP - Move checksum generation from install to deploy --- .../project/install/internal/DualDigesterTest.java | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/src/test/java/org/apache/maven/shared/project/install/internal/DualDigesterTest.java b/src/test/java/org/apache/maven/shared/project/install/internal/DualDigesterTest.java index 38da15b..7f8fbe8 100644 --- a/src/test/java/org/apache/maven/shared/project/install/internal/DualDigesterTest.java +++ b/src/test/java/org/apache/maven/shared/project/install/internal/DualDigesterTest.java @@ -1,5 +1,24 @@ package org.apache.maven.shared.project.install.internal; +/* + * 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 java.io.InputStream; import org.junit.Test; @@ -19,7 +38,7 @@ public class DualDigesterTest DualDigester dd = new DualDigester(); - dd.calculate( file ); +// dd.calculate( file ); } }
