File tree Expand file tree Collapse file tree 2 files changed +44
-0
lines changed Expand file tree Collapse file tree 2 files changed +44
-0
lines changed Original file line number Diff line number Diff line change
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 >
Original file line number Diff line number Diff line change 18
18
<artifactId >wix-master-parent</artifactId >
19
19
<version >100.0.0-SNAPSHOT</version >
20
20
</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 >
21
46
</project >
You can’t perform that action at this time.
0 commit comments