bitflicker64 commented on PR #3025: URL: https://github.com/apache/hugegraph/pull/3025#issuecomment-4460235949
`**/dist/`matches `org/apache/hugegraph/dist/ ` a real Java source package directory. The full path that gets excluded is: ``` hugegraph-server/hugegraph-dist/src/main/java/org/apache/hugegraph/dist/ ``` The last path component is dist, so `**/dist/` matches it and wipes the entire `org.apache.hugegraph.dist` package from the Docker build context before mvn package ever runs. so used `**/target/dist/ ` instead -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
