File tree 2 files changed +21
-5
lines changed
src/main/resources/assembly
2 files changed +21
-5
lines changed Original file line number Diff line number Diff line change 176
176
<artifactId >maven-assembly-plugin</artifactId >
177
177
<version >${maven.assembly.plugin.version} </version >
178
178
<configuration >
179
- <descriptorRefs >
180
- <descriptorRef >jar-with-dependencies</ descriptorRef >
181
- </descriptorRefs >
179
+ <descriptors >
180
+ <descriptor >src/main/resources/assembly/standalone.xml</ descriptor >
181
+ </descriptors >
182
182
<archive >
183
183
<manifest >
184
184
<mainClass >io.github.ngbsn.generator.JPACodeGenerator</mainClass >
185
185
</manifest >
186
186
</archive >
187
- <finalName >sqlscript2jpa-codegen-standalone-${project.version} </finalName >
188
- <appendAssemblyId >false</appendAssemblyId >
189
187
</configuration >
190
188
<executions >
191
189
<execution >
Original file line number Diff line number Diff line change
1
+ <assembly xmlns =" http://maven.apache.org/ASSEMBLY/2.2.0"
2
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi : schemaLocation =" http://maven.apache.org/ASSEMBLY/2.2.0 https://maven.apache.org/xsd/assembly-2.2.0.xsd" >
4
+ <!-- TODO: a jarjar format would be better -->
5
+ <id >standalone</id >
6
+ <formats >
7
+ <format >jar</format >
8
+ </formats >
9
+ <includeBaseDirectory >false</includeBaseDirectory >
10
+ <dependencySets >
11
+ <dependencySet >
12
+ <outputDirectory >/</outputDirectory >
13
+ <useProjectArtifact >true</useProjectArtifact >
14
+ <unpack >true</unpack >
15
+ <scope >runtime</scope >
16
+ </dependencySet >
17
+ </dependencySets >
18
+ </assembly >
You can’t perform that action at this time.
0 commit comments