File tree Expand file tree Collapse file tree 3 files changed +48
-3
lines changed Expand file tree Collapse file tree 3 files changed +48
-3
lines changed Original file line number Diff line number Diff line change 56
56
</execution >
57
57
</executions >
58
58
</plugin >
59
+ <plugin >
60
+ <artifactId >maven-antrun-plugin</artifactId >
61
+ <version >3.1.0</version >
62
+ <executions >
63
+ <execution >
64
+ <id >create-7z</id >
65
+ <phase >package</phase >
66
+ <goals >
67
+ <goal >run</goal >
68
+ </goals >
69
+ <configuration >
70
+ <target >
71
+ <exec >
72
+ <arg />
73
+ <arg />
74
+ <arg />
75
+ </exec >
76
+ </target >
77
+ </configuration >
78
+ </execution >
79
+ </executions >
80
+ </plugin >
59
81
<plugin >
60
82
<artifactId >maven-jar-plugin</artifactId >
61
83
<version >3.4.1</version >
Original file line number Diff line number Diff line change 61
61
</execution >
62
62
</executions >
63
63
</plugin >
64
+ <plugin >
65
+ <groupId >org.apache.maven.plugins</groupId >
66
+ <artifactId >maven-antrun-plugin</artifactId >
67
+ <version >3.1.0</version >
68
+ <executions >
69
+ <execution >
70
+ <id >create-7z</id >
71
+ <phase >package</phase >
72
+ <goals >
73
+ <goal >run</goal >
74
+ </goals >
75
+ <configuration >
76
+ <target >
77
+ <exec executable =" 7z" failonerror =" true" >
78
+ <arg value =" a" />
79
+ <arg value =" ${project.build.directory}/${project.artifactId}-${project.version}-project-bundle.7z" />
80
+ <arg value =" ${project.build.directory}/${project.artifactId}-${project.version}-project-bundle.zip" />
81
+ </exec >
82
+ </target >
83
+ </configuration >
84
+ </execution >
85
+ </executions >
86
+ </plugin >
64
87
<plugin >
65
88
<groupId >org.apache.maven.plugins</groupId >
66
89
<artifactId >maven-jar-plugin</artifactId >
Original file line number Diff line number Diff line change 5
5
<id >project-bundle</id >
6
6
<formats >
7
7
<format >zip</format >
8
+ <format >tar</format >
8
9
<format >tar.gz</format >
10
+ <format >tar.bz2</format >
9
11
</formats >
10
12
<includeBaseDirectory >false</includeBaseDirectory >
11
13
<fileSets >
12
- <!-- JAR Dosyasını Dahil Et -->
13
14
<fileSet >
14
15
<directory >${project.build.directory}</directory >
15
16
<includes >
16
17
<include >${project.build.finalName}.jar</include >
17
18
</includes >
18
19
<outputDirectory >/</outputDirectory >
19
20
</fileSet >
20
- <!-- Diğer Dosyaları Dahil Et -->
21
21
<fileSet >
22
22
<directory >${basedir}</directory >
23
23
<includes >
34
34
<outputDirectory >/</outputDirectory >
35
35
</fileSet >
36
36
</fileSets >
37
- </assembly >
37
+ </assembly >
You can’t perform that action at this time.
0 commit comments