Skip to content

Commit cf02136

Browse files
author
Niall Kegan Pemberton
committed
Update m2 build
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/cli/trunk@595700 13f79535-47bb-0310-9956-ffa450edef68
1 parent f04a1fb commit cf02136

14 files changed

Lines changed: 1071 additions & 1 deletion

File tree

pom.xml

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<parent>
2323
<groupId>org.apache.commons</groupId>
2424
<artifactId>commons-parent</artifactId>
25-
<version>4</version>
25+
<version>5</version>
2626
</parent>
2727
<modelVersion>4.0.0</modelVersion>
2828
<groupId>commons-cli</groupId>
@@ -165,6 +165,38 @@
165165
</includes>
166166
</testResource>
167167
</testResources>
168+
<plugins>
169+
<plugin>
170+
<artifactId>maven-assembly-plugin</artifactId>
171+
<configuration>
172+
<descriptors>
173+
<descriptor>src/assembly/bin.xml</descriptor>
174+
<descriptor>src/assembly/src.xml</descriptor>
175+
</descriptors>
176+
<tarLongFileMode>gnu</tarLongFileMode>
177+
</configuration>
178+
</plugin>
179+
</plugins>
168180
</build>
169181

182+
<reporting>
183+
<plugins>
184+
<plugin>
185+
<groupId>org.apache.maven.plugins</groupId>
186+
<artifactId>maven-changes-plugin</artifactId>
187+
<configuration>
188+
<xmlPath>${basedir}/xdocs/changes.xml</xmlPath>
189+
<issueLinkTemplate>%URL%/%ISSUE%</issueLinkTemplate>
190+
</configuration>
191+
<reportSets>
192+
<reportSet>
193+
<reports>
194+
<report>changes-report</report>
195+
</reports>
196+
</reportSet>
197+
</reportSets>
198+
</plugin>
199+
</plugins>
200+
</reporting>
201+
170202
</project>

src/assembly/bin.xml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<!--
2+
Licensed to the Apache Software Foundation (ASF) under one or more
3+
contributor license agreements. See the NOTICE file distributed with
4+
this work for additional information regarding copyright ownership.
5+
The ASF licenses this file to You under the Apache License, Version 2.0
6+
(the "License"); you may not use this file except in compliance with
7+
the License. You may obtain a copy of the License at
8+
9+
http://www.apache.org/licenses/LICENSE-2.0
10+
11+
Unless required by applicable law or agreed to in writing, software
12+
distributed under the License is distributed on an "AS IS" BASIS,
13+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
See the License for the specific language governing permissions and
15+
limitations under the License.
16+
-->
17+
<assembly>
18+
<id>bin</id>
19+
<formats>
20+
<format>tar.gz</format>
21+
<format>zip</format>
22+
</formats>
23+
<includeSiteDirectory>false</includeSiteDirectory>
24+
<fileSets>
25+
<fileSet>
26+
<includes>
27+
<include>LICENSE.txt</include>
28+
<include>NOTICE.txt</include>
29+
<include>RELEASE-NOTES.txt</include>
30+
</includes>
31+
</fileSet>
32+
<fileSet>
33+
<directory>target</directory>
34+
<outputDirectory></outputDirectory>
35+
<includes>
36+
<include>*.jar</include>
37+
</includes>
38+
</fileSet>
39+
<fileSet>
40+
<directory>target/site/apidocs</directory>
41+
<outputDirectory>apidocs</outputDirectory>
42+
</fileSet>
43+
</fileSets>
44+
</assembly>

src/assembly/src.xml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
<!--
2+
Licensed to the Apache Software Foundation (ASF) under one or more
3+
contributor license agreements. See the NOTICE file distributed with
4+
this work for additional information regarding copyright ownership.
5+
The ASF licenses this file to You under the Apache License, Version 2.0
6+
(the "License"); you may not use this file except in compliance with
7+
the License. You may obtain a copy of the License at
8+
9+
http://www.apache.org/licenses/LICENSE-2.0
10+
11+
Unless required by applicable law or agreed to in writing, software
12+
distributed under the License is distributed on an "AS IS" BASIS,
13+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
See the License for the specific language governing permissions and
15+
limitations under the License.
16+
-->
17+
<assembly>
18+
<id>src</id>
19+
<formats>
20+
<format>tar.gz</format>
21+
<format>zip</format>
22+
</formats>
23+
<baseDirectory>${artifactId}-${version}-src</baseDirectory>
24+
<fileSets>
25+
<fileSet>
26+
<includes>
27+
<include>build.xml</include>
28+
<include>checkstyle.xml</include>
29+
<include>default.properties</include>
30+
<include>LICENSE.txt</include>
31+
<include>maven.xml</include>
32+
<include>NOTICE.txt</include>
33+
<include>pom.xml</include>
34+
<include>project.properties</include>
35+
<include>project.xml</include>
36+
<include>README.txt</include>
37+
<include>RELEASE-NOTES.txt</include>
38+
</includes>
39+
</fileSet>
40+
<fileSet>
41+
<directory>src</directory>
42+
</fileSet>
43+
<fileSet>
44+
<directory>xdocs</directory>
45+
</fileSet>
46+
</fileSets>
47+
</assembly>

src/site/resources/images/1x1.gif

43 Bytes
Loading

src/site/resources/images/logo.jpg

5.64 KB
Loading

src/site/resources/images/logo.png

9.92 KB
Loading
26.8 KB
Loading
Lines changed: 57 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)