File tree 3 files changed +49
-0
lines changed
3 files changed +49
-0
lines changed Original file line number Diff line number Diff line change
1
+ target /
Original file line number Diff line number Diff line change 183
183
-->
184
184
</configuration >
185
185
</plugin >
186
+ <plugin >
187
+ <artifactId >maven-assembly-plugin</artifactId >
188
+ <configuration >
189
+ <descriptors >
190
+ <descriptor >src.xml</descriptor >
191
+ </descriptors >
192
+ </configuration >
193
+ </plugin >
186
194
</plugins >
187
195
<pluginManagement >
188
196
<plugins >
259
267
</execution >
260
268
</executions >
261
269
</plugin >
270
+ <plugin >
271
+ <groupId >org.apache.maven.plugins</groupId >
272
+ <artifactId >maven-assembly-plugin</artifactId >
273
+ <version >2.2.1</version >
274
+ <configuration >
275
+ <tarLongFileMode >gnu</tarLongFileMode >
276
+ </configuration >
277
+ </plugin >
262
278
</plugins >
263
279
</pluginManagement >
264
280
</build >
Original file line number Diff line number Diff line change
1
+ <assembly >
2
+ <id >src</id >
3
+ <formats >
4
+ <format >tar.bz2</format >
5
+ </formats >
6
+ <baseDirectory >${project.artifactId}-${project.version}-src</baseDirectory >
7
+ <moduleSets >
8
+ <moduleSet >
9
+ <includeSubModules />
10
+ <sources >
11
+ <useDefaultExcludes >false</useDefaultExcludes >
12
+ <includeModuleDirectory >true</includeModuleDirectory >
13
+ <fileSets >
14
+ <fileSet >
15
+ <excludes >
16
+ <exclude >target/**</exclude >
17
+ <exclude >bin/**</exclude >
18
+ </excludes >
19
+ </fileSet >
20
+ </fileSets >
21
+ </sources >
22
+ </moduleSet >
23
+ </moduleSets >
24
+
25
+ <fileSets >
26
+ <fileSet >
27
+ <includes >
28
+ <include >pom.xml</include >
29
+ </includes >
30
+ </fileSet >
31
+ </fileSets >
32
+ </assembly >
You can’t perform that action at this time.
0 commit comments