Skip to content

Commit d32281e

Browse files
committed
Add more files to the src root assembly
Indent by 2, no tabs
1 parent 9bbcc3d commit d32281e

File tree

2 files changed

+59
-54
lines changed

2 files changed

+59
-54
lines changed

src/assembly/bin.xml

Lines changed: 29 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -14,34 +14,33 @@
1414
See the License for the specific language governing permissions and
1515
limitations under the License.
1616
-->
17-
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.2.0"
18-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19-
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.2.0 https://maven.apache.org/xsd/assembly-2.2.0.xsd">
20-
<id>bin</id>
21-
<formats>
22-
<format>tar.gz</format>
23-
<format>zip</format>
24-
</formats>
25-
<includeSiteDirectory>false</includeSiteDirectory>
26-
<fileSets>
27-
<fileSet>
28-
<includes>
29-
<include>LICENSE.txt</include>
30-
<include>NOTICE.txt</include>
31-
<include>RELEASE-NOTES.txt</include>
32-
</includes>
33-
</fileSet>
34-
<fileSet>
35-
<directory>target</directory>
36-
<outputDirectory></outputDirectory>
37-
<includes>
38-
<include>*.jar</include>
39-
</includes>
40-
<fileMode>644</fileMode>
41-
</fileSet>
42-
<fileSet>
43-
<directory>target/site/apidocs</directory>
44-
<outputDirectory>apidocs</outputDirectory>
45-
</fileSet>
46-
</fileSets>
17+
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18+
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.2.0 https://maven.apache.org/xsd/assembly-2.2.0.xsd">
19+
<id>bin</id>
20+
<formats>
21+
<format>tar.gz</format>
22+
<format>zip</format>
23+
</formats>
24+
<includeSiteDirectory>false</includeSiteDirectory>
25+
<fileSets>
26+
<fileSet>
27+
<includes>
28+
<include>LICENSE.txt</include>
29+
<include>NOTICE.txt</include>
30+
<include>RELEASE-NOTES.txt</include>
31+
</includes>
32+
</fileSet>
33+
<fileSet>
34+
<directory>target</directory>
35+
<outputDirectory></outputDirectory>
36+
<includes>
37+
<include>*.jar</include>
38+
</includes>
39+
<fileMode>644</fileMode>
40+
</fileSet>
41+
<fileSet>
42+
<directory>target/site/apidocs</directory>
43+
<outputDirectory>apidocs</outputDirectory>
44+
</fileSet>
45+
</fileSets>
4746
</assembly>

src/assembly/src.xml

Lines changed: 30 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
12
<!--
2-
Licensed to the Apache Software Foundation (ASF) under one or more
3+
Licensed to the Apache Software Foundation (ASF) under one or more
34
contributor license agreements. See the NOTICE file distributed with
45
this work for additional information regarding copyright ownership.
56
The ASF licenses this file to You under the Apache License, Version 2.0
@@ -14,27 +15,32 @@
1415
See the License for the specific language governing permissions and
1516
limitations under the License.
1617
-->
17-
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.2.0"
18-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19-
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.2.0 https://maven.apache.org/xsd/assembly-2.2.0.xsd">
20-
<id>src</id>
21-
<formats>
22-
<format>tar.gz</format>
23-
<format>zip</format>
24-
</formats>
25-
<baseDirectory>${project.artifactId}-${project.version}-src</baseDirectory>
26-
<fileSets>
27-
<fileSet>
28-
<includes>
29-
<include>LICENSE.txt</include>
30-
<include>NOTICE.txt</include>
31-
<include>pom.xml</include>
32-
<include>RELEASE-NOTES*.txt</include>
33-
<include>TODO</include>
34-
</includes>
35-
</fileSet>
36-
<fileSet>
37-
<directory>src</directory>
38-
</fileSet>
39-
</fileSets>
18+
<assembly
19+
xmlns="http://maven.apache.org/ASSEMBLY/2.2.0"
20+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21+
xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.2.0 https://maven.apache.org/xsd/assembly-2.2.0.xsd">
22+
<id>src</id>
23+
<formats>
24+
<format>tar.gz</format>
25+
<format>zip</format>
26+
</formats>
27+
<baseDirectory>${artifactId}-${version}-src</baseDirectory>
28+
<fileSets>
29+
<fileSet>
30+
<includes>
31+
<include>BUILDING.txt</include>
32+
<include>CODE_OF_CONDUCT.md</include>
33+
<include>CONTRIBUTING.md</include>
34+
<include>LICENSE.txt</include>
35+
<include>NOTICE.txt</include>
36+
<include>pom.xml</include>
37+
<include>README.md</include>
38+
<include>RELEASE-NOTES.txt</include>
39+
<include>SECURITY.md</include>
40+
</includes>
41+
</fileSet>
42+
<fileSet>
43+
<directory>src</directory>
44+
</fileSet>
45+
</fileSets>
4046
</assembly>

0 commit comments

Comments
 (0)