Skip to content

Commit e6b4542

Browse files
committed
Revert "remove unused config"
This reverts commit 7225e61.
1 parent 7225e61 commit e6b4542

File tree

2 files changed

+44
-0
lines changed

2 files changed

+44
-0
lines changed

maven/assembly/tar.gz.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
4+
<id>wix-angular</id>
5+
<baseDirectory>/</baseDirectory>
6+
<formats>
7+
<format>tar.gz</format>
8+
</formats>
9+
<fileSets>
10+
<fileSet>
11+
<directory>${project.basedir}/dist/statics</directory>
12+
<outputDirectory>/</outputDirectory>
13+
<includes>
14+
<include>*</include>
15+
<include>*/**</include>
16+
</includes>
17+
</fileSet>
18+
</fileSets>
19+
</assembly>

pom.xml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,29 @@
1818
<artifactId>wix-master-parent</artifactId>
1919
<version>100.0.0-SNAPSHOT</version>
2020
</parent>
21+
22+
<build>
23+
<plugins>
24+
<plugin>
25+
<groupId>org.apache.maven.plugins</groupId>
26+
<artifactId>maven-assembly-plugin</artifactId>
27+
<version>2.2.1</version>
28+
<configuration>
29+
<descriptors>
30+
<descriptor>maven/assembly/tar.gz.xml</descriptor>
31+
</descriptors>
32+
<appendAssemblyId>false</appendAssemblyId>
33+
<finalName>${project.artifactId}-${project.version}</finalName>
34+
</configuration>
35+
<executions>
36+
<execution>
37+
<phase>prepare-package</phase>
38+
<goals>
39+
<goal>single</goal>
40+
</goals>
41+
</execution>
42+
</executions>
43+
</plugin>
44+
</plugins>
45+
</build>
2146
</project>

0 commit comments

Comments
 (0)