This is an automated email from the ASF dual-hosted git repository. elharo pushed a commit to branch unused in repository https://gitbox.apache.org/repos/asf/maven-jdeps-plugin.git
commit be4b7a8a91e55d83675bfdee8bb84f4761f75692 Author: Elliotte Rusty Harold <elh...@ibiblio.org> AuthorDate: Mon Dec 16 07:12:44 2024 -0500 Delete unused abstract class --- .../plugins/jdeps/AbstractJDKInternalsMojo.java | 39 ---------------------- 1 file changed, 39 deletions(-) diff --git a/src/main/java/org/apache/maven/plugins/jdeps/AbstractJDKInternalsMojo.java b/src/main/java/org/apache/maven/plugins/jdeps/AbstractJDKInternalsMojo.java deleted file mode 100644 index 82007d8..0000000 --- a/src/main/java/org/apache/maven/plugins/jdeps/AbstractJDKInternalsMojo.java +++ /dev/null @@ -1,39 +0,0 @@ -/* - * 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. - */ -package org.apache.maven.plugins.jdeps; - -import java.nio.file.Path; -import java.util.Set; - -import org.apache.maven.plugin.MojoFailureException; -import org.codehaus.plexus.util.cli.Commandline; - -/** - * Abstract Mojo for verifying code with jdkinternals - * - * @author Robert Scholte - */ -public abstract class AbstractJDKInternalsMojo extends AbstractJDepsMojo { - - @Override - protected void addJDepsOptions(Commandline cmd, Set<Path> dependenciesToAnalyze) throws MojoFailureException { - super.addJDepsOptions(cmd, dependenciesToAnalyze); - cmd.createArg().setValue("-jdkinternals"); - } -}