This is an automated email from the ASF dual-hosted git repository. solomax pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/openmeetings.git
commit eb11e3448fc7dd9dbc9caeeb773f7749886f4e84 Author: Maxim Solodovnik <[email protected]> AuthorDate: Fri Dec 6 10:44:10 2024 +0700 no jira: *.bak files are NOT included into source artifact --- openmeetings-server/src/main/assembly/src.xml | 1 + openmeetings-web/pom.xml | 3 +++ 2 files changed, 4 insertions(+) diff --git a/openmeetings-server/src/main/assembly/src.xml b/openmeetings-server/src/main/assembly/src.xml index 765e14aa6..3082345da 100644 --- a/openmeetings-server/src/main/assembly/src.xml +++ b/openmeetings-server/src/main/assembly/src.xml @@ -52,6 +52,7 @@ <exclude>**/package-lock.json</exclude> <exclude>**/.apt_generated/**</exclude> <exclude>**/.apt_generated_tests/**</exclude> + <exclude>**/*.bak</exclude> </excludes> </fileSet> </fileSets> diff --git a/openmeetings-web/pom.xml b/openmeetings-web/pom.xml index 653691240..ebc98ce95 100644 --- a/openmeetings-web/pom.xml +++ b/openmeetings-web/pom.xml @@ -126,10 +126,12 @@ **/*.class, **/raw-*.css, **/raw-*.js, + **/*.bak, </packagingExcludes> <warSourceExcludes> **/raw-*.css, **/raw-*.js, + **/*.bak, </warSourceExcludes> <filteringDeploymentDescriptors>true</filteringDeploymentDescriptors> <webResources> @@ -145,6 +147,7 @@ </includes> <excludes> <exclude>**/raw-*.js</exclude> + <exclude>**/*.bak</exclude> </excludes> </webResource> <webResource>
