File tree 1 file changed +44
-6
lines changed
services/providers/wanaku-provider-s3
1 file changed +44
-6
lines changed Original file line number Diff line number Diff line change 85
85
<properties >
86
86
<skipITs >false</skipITs >
87
87
<quarkus .native.enabled>true</quarkus .native.enabled>
88
- <assembly .descriptor>src/main/assembly/assembly-native.xml</assembly .descriptor>
89
- <dist .final.name>${project.artifactId} -${project.version} -${os.detected.classifier} </dist .final.name>
90
88
</properties >
91
89
</profile >
92
90
<profile >
100
98
<configuration >
101
99
<attach >false</attach >
102
100
<appendAssemblyId >false</appendAssemblyId >
103
- <finalName >${dist.final.name} </finalName >
104
101
<outputDirectory >${distribution.directory} </outputDirectory >
105
102
<workDirectory >${project.build.directory} /assembly/work</workDirectory >
106
- <descriptors >
107
- <descriptor >${assembly.descriptor} </descriptor >
108
- </descriptors >
109
103
</configuration >
110
104
<executions >
111
105
<execution >
114
108
<goals >
115
109
<goal >single</goal >
116
110
</goals >
111
+ <configuration >
112
+ <finalName >${project.artifactId} -${project.version} </finalName >
113
+ <descriptors >
114
+ <descriptor >src/main/assembly/assembly.xml</descriptor >
115
+ </descriptors >
116
+ </configuration >
117
+ </execution >
118
+ </executions >
119
+ </plugin >
120
+ </plugins >
121
+ </build >
122
+ </profile >
123
+ <profile >
124
+ <id >dist-native</id >
125
+ <activation >
126
+ <property >
127
+ <name >native</name >
128
+ </property >
129
+ </activation >
130
+ <build >
131
+ <plugins >
132
+ <plugin >
133
+ <groupId >org.apache.maven.plugins</groupId >
134
+ <artifactId >maven-assembly-plugin</artifactId >
135
+ <version >${maven-assembly-plugin.version} </version >
136
+ <configuration >
137
+ <attach >false</attach >
138
+ <appendAssemblyId >false</appendAssemblyId >
139
+ <outputDirectory >${distribution.directory} </outputDirectory >
140
+ <workDirectory >${project.build.directory} /assembly/work</workDirectory >
141
+ </configuration >
142
+ <executions >
143
+ <execution >
144
+ <id >make-native-distribution</id >
145
+ <phase >package</phase >
146
+ <goals >
147
+ <goal >single</goal >
148
+ </goals >
149
+ <configuration >
150
+ <finalName >${project.artifactId} -${project.version} -${os.detected.classifier} </finalName >
151
+ <descriptors >
152
+ <descriptor >src/main/assembly/assembly-native.xml</descriptor >
153
+ </descriptors >
154
+ </configuration >
117
155
</execution >
118
156
</executions >
119
157
</plugin >
You can’t perform that action at this time.
0 commit comments