|
1 | | -<!-- |
2 | | - ~ Copyright 2017 Igor Maznitsa. |
3 | | - ~ |
4 | | - ~ Licensed under the Apache License, Version 2.0 (the "License"); |
5 | | - ~ you may not use this file except in compliance with the License. |
6 | | - ~ You may obtain a copy of the License at |
7 | | - ~ |
8 | | - ~ http://www.apache.org/licenses/LICENSE-2.0 |
9 | | - ~ |
10 | | - ~ Unless required by applicable law or agreed to in writing, software |
11 | | - ~ distributed under the License is distributed on an "AS IS" BASIS, |
12 | | - ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
13 | | - ~ See the License for the specific language governing permissions and |
14 | | - ~ limitations under the License. |
15 | | - --> |
16 | | - |
17 | 1 | <assembly xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
18 | 2 | xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" |
19 | 3 | xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd"> |
|
23 | 7 | <includeSiteDirectory>false</includeSiteDirectory> |
24 | 8 |
|
25 | 9 | <formats> |
26 | | - <format>jar</format> |
| 10 | + <format>tar.gz</format> |
27 | 11 | </formats> |
28 | 12 | <fileSets> |
29 | 13 | <fileSet> |
30 | 14 | <directory>${project.build.directory}</directory> |
31 | | - <outputDirectory>${file.separator}</outputDirectory> |
| 15 | + <outputDirectory>/com/igormaznitsa/${project.artifactId}/${project.version}</outputDirectory> |
32 | 16 | <includes> |
33 | | - <include>*.jar.asc</include> |
34 | 17 | <include>*.jar</include> |
| 18 | + <include>*.jar.asc</include> |
| 19 | + <include>*.jar.sha1</include> |
| 20 | + <include>*.jar.md5</include> |
35 | 21 | <include>*.pom</include> |
36 | 22 | <include>*.pom.asc</include> |
| 23 | + <include>*.pom.sha1</include> |
| 24 | + <include>*.pom.md5</include> |
37 | 25 | </includes> |
38 | 26 | <excludes> |
| 27 | + <exclude>original*.*</exclude> |
39 | 28 | <exclude>*.zip</exclude> |
40 | 29 | </excludes> |
41 | 30 | </fileSet> |
|
0 commit comments