This is an automated email from the ASF dual-hosted git repository. elecharny pushed a commit to branch 1.1.X in repository https://gitbox.apache.org/repos/asf/mina-ftpserver.git
The following commit(s) were added to refs/heads/1.1.X by this push: new 1b29e52e Exclude the ftpserver.properties from the packages 1b29e52e is described below commit 1b29e52eb119574fb32edffff2a1347df504aa0a Author: emmanuel lecharny <elecha...@apache.org> AuthorDate: Mon Apr 4 23:50:33 2022 +0200 Exclude the ftpserver.properties from the packages --- core/pom.xml | 6 ++++++ distribution/src/main/assemblies/src.xml | 1 + 2 files changed, 7 insertions(+) diff --git a/core/pom.xml b/core/pom.xml index a384c84c..abec36c4 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -34,6 +34,9 @@ <include>**/*.schemas</include> <include>**/*.xsd</include> </includes> + <excludes> + <exclude>**/ftpserver.properties</exclude> + </excludes> </resource> </resources> <testResources> @@ -42,6 +45,9 @@ <includes> <include>**/*.properties</include> </includes> + <excludes> + <exclude>**/ftpserver.properties</exclude> + </excludes> </testResource> </testResources> <plugins> diff --git a/distribution/src/main/assemblies/src.xml b/distribution/src/main/assemblies/src.xml index e552b532..1dd9aace 100644 --- a/distribution/src/main/assemblies/src.xml +++ b/distribution/src/main/assemblies/src.xml @@ -49,6 +49,7 @@ <exclude>core/res/**/*</exclude> <exclude>**/target</exclude> + <exclude>**/ftpserver.properties</exclude> <exclude>**/target/**/*</exclude> <exclude>**/.settings</exclude> <exclude>**/.settings/**/*</exclude>