This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-codec.git
commit d32281e1160860bf3bfe2cc500e5150dc4f03bf8 Author: Gary D. Gregory <[email protected]> AuthorDate: Wed Jan 22 16:24:21 2025 -0500 Add more files to the src root assembly Indent by 2, no tabs --- src/assembly/bin.xml | 59 ++++++++++++++++++++++++++-------------------------- src/assembly/src.xml | 54 ++++++++++++++++++++++++++--------------------- 2 files changed, 59 insertions(+), 54 deletions(-) diff --git a/src/assembly/bin.xml b/src/assembly/bin.xml index 0a598cb5..327a4579 100644 --- a/src/assembly/bin.xml +++ b/src/assembly/bin.xml @@ -14,34 +14,33 @@ See the License for the specific language governing permissions and limitations under the License. --> -<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.2.0" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.2.0 https://maven.apache.org/xsd/assembly-2.2.0.xsd"> - <id>bin</id> - <formats> - <format>tar.gz</format> - <format>zip</format> - </formats> - <includeSiteDirectory>false</includeSiteDirectory> - <fileSets> - <fileSet> - <includes> - <include>LICENSE.txt</include> - <include>NOTICE.txt</include> - <include>RELEASE-NOTES.txt</include> - </includes> - </fileSet> - <fileSet> - <directory>target</directory> - <outputDirectory></outputDirectory> - <includes> - <include>*.jar</include> - </includes> - <fileMode>644</fileMode> - </fileSet> - <fileSet> - <directory>target/site/apidocs</directory> - <outputDirectory>apidocs</outputDirectory> - </fileSet> - </fileSets> +<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.2.0 https://maven.apache.org/xsd/assembly-2.2.0.xsd"> + <id>bin</id> + <formats> + <format>tar.gz</format> + <format>zip</format> + </formats> + <includeSiteDirectory>false</includeSiteDirectory> + <fileSets> + <fileSet> + <includes> + <include>LICENSE.txt</include> + <include>NOTICE.txt</include> + <include>RELEASE-NOTES.txt</include> + </includes> + </fileSet> + <fileSet> + <directory>target</directory> + <outputDirectory></outputDirectory> + <includes> + <include>*.jar</include> + </includes> + <fileMode>644</fileMode> + </fileSet> + <fileSet> + <directory>target/site/apidocs</directory> + <outputDirectory>apidocs</outputDirectory> + </fileSet> + </fileSets> </assembly> diff --git a/src/assembly/src.xml b/src/assembly/src.xml index 280a590f..25bc90cc 100644 --- a/src/assembly/src.xml +++ b/src/assembly/src.xml @@ -1,5 +1,6 @@ +<?xml version="1.0" encoding="UTF-8"?> <!-- - Licensed to the Apache Software Foundation (ASF) under one or more +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 @@ -14,27 +15,32 @@ See the License for the specific language governing permissions and limitations under the License. --> -<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.2.0" - xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.2.0 https://maven.apache.org/xsd/assembly-2.2.0.xsd"> - <id>src</id> - <formats> - <format>tar.gz</format> - <format>zip</format> - </formats> - <baseDirectory>${project.artifactId}-${project.version}-src</baseDirectory> - <fileSets> - <fileSet> - <includes> - <include>LICENSE.txt</include> - <include>NOTICE.txt</include> - <include>pom.xml</include> - <include>RELEASE-NOTES*.txt</include> - <include>TODO</include> - </includes> - </fileSet> - <fileSet> - <directory>src</directory> - </fileSet> - </fileSets> +<assembly + xmlns="http://maven.apache.org/ASSEMBLY/2.2.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.2.0 https://maven.apache.org/xsd/assembly-2.2.0.xsd"> + <id>src</id> + <formats> + <format>tar.gz</format> + <format>zip</format> + </formats> + <baseDirectory>${artifactId}-${version}-src</baseDirectory> + <fileSets> + <fileSet> + <includes> + <include>BUILDING.txt</include> + <include>CODE_OF_CONDUCT.md</include> + <include>CONTRIBUTING.md</include> + <include>LICENSE.txt</include> + <include>NOTICE.txt</include> + <include>pom.xml</include> + <include>README.md</include> + <include>RELEASE-NOTES.txt</include> + <include>SECURITY.md</include> + </includes> + </fileSet> + <fileSet> + <directory>src</directory> + </fileSet> + </fileSets> </assembly>
