File tree 2 files changed +33
-1
lines changed
2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change 71
71
</exclusion >
72
72
</exclusions >
73
73
</dependency >
74
-
74
+
75
75
</dependencies >
76
76
77
77
<!-- ========================================================================================================= -->
78
78
79
79
<build >
80
+ <plugins >
81
+ <plugin >
82
+ <artifactId >maven-assembly-plugin</artifactId >
83
+ <configuration >
84
+ <descriptorRefs >
85
+ <descriptorRef >jar-with-dependencies</descriptorRef >
86
+ </descriptorRefs >
87
+ <archive >
88
+ <manifest >
89
+ <mainClass >ch.ips.g2.applyalter.ApplyAlter</mainClass >
90
+ </manifest >
91
+ <manifestEntries >
92
+ <version >${project.version} </version >
93
+ <groupId >${project.groupId} </groupId >
94
+ <artifactId >${project.artifactId}</artifactId >
95
+ <Class-Path >db2java.zip postgresql.jar ojdbc14.jar ojdbc5.jar</Class-Path >
96
+ </manifestEntries >
97
+ </archive >
98
+ <appendAssemblyId >true</appendAssemblyId >
99
+ <!-- without classifier, the big jar is used INSTEAD of the original jar -->
100
+ <classifier >run</classifier >
101
+ </configuration >
102
+ <executions >
103
+ <execution >
104
+ <phase >package</phase >
105
+ <goals >
106
+ <goal >single</goal >
107
+ </goals >
108
+ </execution >
109
+ </executions >
110
+ </plugin >
111
+ </plugins >
80
112
</build >
81
113
82
114
</project >
File renamed without changes.
You can’t perform that action at this time.
0 commit comments