-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathjar.patch
More file actions
39 lines (39 loc) · 1.5 KB
/
jar.patch
File metadata and controls
39 lines (39 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
diff --git a/pom.xml b/pom.xml
index 756e4c3..e8ba885 100644
--- a/pom.xml
+++ b/pom.xml
@@ -11,31 +11,15 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4</version>
- <executions>
- <execution>
- <goals>
- <goal>single</goal>
- </goals>
- <phase>package</phase>
- </execution>
- </executions>
- <configuration>
- <descriptors>
- <descriptor>src/main/assembly/assembly.xml</descriptor>
- </descriptors>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <version>2.4</version>
<configuration>
<archive>
<manifest>
- <addClasspath>true</addClasspath>
<mainClass>io.github.azige.whitespace.Cli</mainClass>
</manifest>
</archive>
+ <descriptorRefs>
+ <descriptorRef>jar-with-dependencies</descriptorRef>
+ </descriptorRefs>
</configuration>
</plugin>
<plugin>