Skip to content

Commit

Permalink
Use the current version of XML Schema for Maven Assembly plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jan 22, 2025
1 parent 0b45a6f commit f5a4923
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 15 deletions.
7 changes: 3 additions & 4 deletions src/assembly/bin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,9 @@ Licensed to the Apache Software Foundation (ASF) under one or more
See the License for the specific language governing permissions and
limitations under the License.
-->
<assembly
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 https://maven.apache.org/xsd/assembly-1.1.0.xsd">
<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>
Expand Down
19 changes: 8 additions & 11 deletions src/assembly/src.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,9 @@ Licensed to the Apache Software Foundation (ASF) under one or more
See the License for the specific language governing permissions and
limitations under the License.
-->
<assembly
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 https://maven.apache.org/xsd/assembly-1.1.0.xsd">
<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>
Expand All @@ -28,21 +27,19 @@ Licensed to the Apache Software Foundation (ASF) under one or more
<fileSets>
<fileSet>
<includes>
<include>.travis.yml</include>
<include>BUILDING.txt</include>
<include>checkstyle*.xml</include>
<include>CODE_OF_CONDUCT.md</include>
<include>CONTRIBUTING.md</include>
<include>findbugs-exclude-filter.xml</include>
<include>LICENSE*</include>
<include>NOTICE*</include>
<include>LICENSE.txt</include>
<include>NOTICE.txt</include>
<include>pom.xml</include>
<include>README*</include>
<include>README.md</include>
<include>RELEASE-NOTES.txt</include>
<include>SECURITY.md</include>
</includes>
</fileSet>
<fileSet>
<directory>src</directory>
</fileSet>
</fileSets>
</assembly>

0 comments on commit f5a4923

Please sign in to comment.