desruisseaux commented on code in PR #508:
URL: https://github.com/apache/maven-jar-plugin/pull/508#discussion_r3923351253


##########
src/main/java/org/apache/maven/plugins/jar/ExcludedFiles.java:
##########
@@ -0,0 +1,145 @@
+/*
+ * 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.jar;
+
+import java.io.Closeable;
+import java.io.IOException;
+import java.nio.file.Files;
+import java.nio.file.Path;
+import java.nio.file.StandardCopyOption;
+import java.util.List;
+
+/**
+ * A list of files to temporarily move outside the directory to package in a 
<abbr>JAR</abbr> archive.
+ * This is used for excluding files from the <abbr>JAR</abbr> archive 
according to include/exclude filters.
+ * We move these files for making possible to specify the whole directory to 
the {@code jar} tool.
+ * This approach is used instead of enumerating files in arguments given to 
the {@code jar} tool because
+ * such enumeration can not contain directory entries (otherwise the whole 
directory would be included).
+ * Some software such as Spring applications component scan relies on the 
presence of directory entries.

Review Comment:
   Done as below:  This class is needed when the {@link AbstractJarMojo} 
configuration has include or exclude filters. Excluded files are temporarily 
moved outside the directory to archive.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to