generate reports using maven-checkstyle-plugin, cobertura-maven-plugin and maven...
[nntprss-ng.git] / resources / bin.xml
blobbd1741dfa0ebdaed99504b8f10735d74e9ef2269
1 <?xml version="1.0"?>
3 <!--
4   ~ Copyright 2006 The Apache Software Foundation.
5   ~
6   ~ Licensed under the Apache License, Version 2.0 (the "License");
7   ~ you may not use this file except in compliance with the License.
8   ~ You may obtain a copy of the License at
9   ~
10   ~      http://www.apache.org/licenses/LICENSE-2.0
11   ~
12   ~ Unless required by applicable law or agreed to in writing, software
13   ~ distributed under the License is distributed on an "AS IS" BASIS,
14   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15   ~ See the License for the specific language governing permissions and
16   ~ limitations under the License.
17   -->
19 <assembly>
20   <id>bin</id>
21   <formats>
22     <format>tar.gz</format>
23     <format>tar.bz2</format>
24     <format>zip</format>
25   </formats>
26   <includeBaseDirectory>false</includeBaseDirectory>
27   <dependencySets>
28     <dependencySet>
29       <outputDirectory>lib</outputDirectory>
30       <unpack>false</unpack>
31       <scope>runtime</scope>
32     </dependencySet>
33   </dependencySets>
34   <fileSets>
35     <fileSet>
36       <includes>
37         <include>README*</include>
38         <include>LICENSE*</include>
39         <include>NOTICE*</include>
40         <include>nntprss-config.xml</include>
41       </includes>
42     </fileSet>
43     <!-- TODO: docs? -->
44     <fileSet>
45       <!-- TODO: use expresssions instead: ${project.build.directory}, ${project.build.finalName} -->
46       <directory>target</directory>
47       <outputDirectory></outputDirectory>
48       <includes>
49         <include>*.jar</include>
50       </includes>
51     </fileSet>
52     <fileSet>
53         <directory>src/xml</directory>
54         <outputDirectory>xml</outputDirectory>
55     </fileSet>
56   </fileSets>
57 </assembly>