Skip to content

Commit ce17e47

Browse files
committed
Ensure the assembly is included with the archetype
1 parent b9dcd62 commit ce17e47

File tree

2 files changed

+87
-0
lines changed

2 files changed

+87
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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+
18+
<assembly
19+
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
20+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21+
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
22+
<id>dist</id>
23+
<formats>
24+
<format>tar.gz</format>
25+
<format>zip</format>
26+
<format>dir</format>
27+
</formats>
28+
<files>
29+
<file>
30+
<source>${project.build.directory}/${project.artifactId}-${project.version}-runner${executable-suffix}</source>
31+
<outputDirectory>./bin</outputDirectory>
32+
<destName>${project.artifactId}${executable-suffix}</destName>
33+
</file>
34+
<fileSet>
35+
<directory>${project.basedir}</directory>
36+
<outputDirectory>/</outputDirectory>
37+
<includes>
38+
<include>README.md</include>
39+
<include>LICENSE</include>
40+
</includes>
41+
</fileSet>
42+
</files>
43+
</assembly>
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+
18+
<assembly
19+
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
20+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21+
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
22+
<id>bin</id>
23+
<formats>
24+
<format>tar.gz</format>
25+
<format>zip</format>
26+
</formats>
27+
<fileSets>
28+
<fileSet>
29+
<directory>${project.basedir}</directory>
30+
<outputDirectory>/</outputDirectory>
31+
<includes>
32+
<include>README.md</include>
33+
<include>LICENSE</include>
34+
</includes>
35+
</fileSet>
36+
<fileSet>
37+
<directory>${project.build.directory}/quarkus-app</directory>
38+
<outputDirectory>./</outputDirectory>
39+
<includes>
40+
<include>**/*</include>
41+
</includes>
42+
</fileSet>
43+
</fileSets>
44+
</assembly>

0 commit comments

Comments
 (0)