File tree Expand file tree Collapse file tree 2 files changed +54
-0
lines changed Expand file tree Collapse file tree 2 files changed +54
-0
lines changed Original file line number Diff line number Diff line change 126
126
</executions >
127
127
</plugin >
128
128
129
+ <plugin >
130
+ <artifactId >maven-assembly-plugin</artifactId >
131
+ <version >2.2.1</version >
132
+ <configuration >
133
+ <descriptors >
134
+ <descriptor >src/assemble/distribution.xml</descriptor >
135
+ </descriptors >
136
+ </configuration >
137
+ <executions >
138
+ <execution >
139
+ <id >create-project-distribution-file</id >
140
+ <phase >package</phase >
141
+ <goals >
142
+ <goal >single</goal >
143
+ </goals >
144
+ </execution >
145
+ </executions >
146
+ </plugin >
147
+
129
148
<plugin >
130
149
<groupId >org.apache.felix</groupId >
131
150
<artifactId >maven-bundle-plugin</artifactId >
Original file line number Diff line number Diff line change
1
+ <?xml version =' 1.0' encoding =' UTF-8' ?>
2
+ <assembly xmlns =" http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
3
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi : schemaLocation =" http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd" >
5
+
6
+ <id >distribution</id >
7
+
8
+ <formats >
9
+ <format >zip</format >
10
+ </formats >
11
+
12
+ <fileSets >
13
+
14
+ <fileSet >
15
+ <directory >${project.basedir}</directory >
16
+ <includes >
17
+ <include >README*</include >
18
+ <include >LICENSE*</include >
19
+ <include >NOTICE*</include >
20
+ <include >CHANGES*</include >
21
+ <include >pom.xml</include >
22
+ <include >build.xml</include >
23
+ </includes >
24
+ <useDefaultExcludes >true</useDefaultExcludes >
25
+ </fileSet >
26
+
27
+ <fileSet >
28
+ <directory >${project.basedir}/src</directory >
29
+ <outputDirectory >src</outputDirectory >
30
+ <useDefaultExcludes >true</useDefaultExcludes >
31
+ </fileSet >
32
+
33
+ </fileSets >
34
+
35
+ </assembly >
You can’t perform that action at this time.
0 commit comments