|
18 | 18 | <version>${jooby.version}</version> |
19 | 19 | </dependency> |
20 | 20 |
|
21 | | - <dependency> |
22 | | - <groupId>io.jooby</groupId> |
23 | | - <artifactId>jooby-kotlin</artifactId> |
24 | | - <version>${jooby.version}</version> |
25 | | - </dependency> |
26 | | - |
27 | 21 | <!-- JAXRS --> |
28 | 22 | <dependency> |
29 | 23 | <groupId>jakarta.ws.rs</groupId> |
|
34 | 28 | <dependency> |
35 | 29 | <groupId>org.ow2.asm</groupId> |
36 | 30 | <artifactId>asm</artifactId> |
37 | | - <optional>true</optional> |
38 | 31 | </dependency> |
39 | 32 |
|
40 | 33 | <dependency> |
41 | 34 | <groupId>org.ow2.asm</groupId> |
42 | 35 | <artifactId>asm-util</artifactId> |
43 | | - <optional>true</optional> |
44 | 36 | </dependency> |
45 | 37 |
|
46 | 38 | <dependency> |
|
106 | 98 | </dependency> |
107 | 99 |
|
108 | 100 | <!-- kotlin --> |
| 101 | + <dependency> |
| 102 | + <groupId>io.jooby</groupId> |
| 103 | + <artifactId>jooby-kotlin</artifactId> |
| 104 | + <version>${jooby.version}</version> |
| 105 | + <scope>test</scope> |
| 106 | + </dependency> |
| 107 | + |
109 | 108 | <dependency> |
110 | 109 | <groupId>org.jetbrains.kotlin</groupId> |
111 | 110 | <artifactId>kotlin-stdlib</artifactId> |
|
191 | 190 | </executions> |
192 | 191 | </plugin> |
193 | 192 |
|
194 | | - <plugin> |
195 | | - <groupId>org.apache.maven.plugins</groupId> |
196 | | - <artifactId>maven-shade-plugin</artifactId> |
197 | | - <executions> |
198 | | - <execution> |
199 | | - <id>fat-jar</id> |
200 | | - <goals> |
201 | | - <goal>shade</goal> |
202 | | - </goals> |
203 | | - <phase>package</phase> |
204 | | - <configuration> |
205 | | - <minimizeJar>true</minimizeJar> |
206 | | - <artifactSet> |
207 | | - <includes> |
208 | | - <include>org.ow2.asm:*</include> |
209 | | - </includes> |
210 | | - </artifactSet> |
211 | | - <relocations> |
212 | | - <relocation> |
213 | | - <pattern>org.objectweb.asm</pattern> |
214 | | - <shadedPattern>io.jooby.internal.openapi.asm</shadedPattern> |
215 | | - </relocation> |
216 | | - </relocations> |
217 | | - <transformers> |
218 | | - <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> |
219 | | - <manifestEntries> |
220 | | - <Automatic-Module-Name>io.jooby.openapi</Automatic-Module-Name> |
221 | | - </manifestEntries> |
222 | | - </transformer> |
223 | | - </transformers> |
224 | | - </configuration> |
225 | | - </execution> |
226 | | - </executions> |
227 | | - </plugin> |
| 193 | +<!-- <plugin>--> |
| 194 | +<!-- <groupId>org.apache.maven.plugins</groupId>--> |
| 195 | +<!-- <artifactId>maven-shade-plugin</artifactId>--> |
| 196 | +<!-- <executions>--> |
| 197 | +<!-- <execution>--> |
| 198 | +<!-- <id>fat-jar</id>--> |
| 199 | +<!-- <goals>--> |
| 200 | +<!-- <goal>shade</goal>--> |
| 201 | +<!-- </goals>--> |
| 202 | +<!-- <phase>package</phase>--> |
| 203 | +<!-- <configuration>--> |
| 204 | +<!-- <minimizeJar>true</minimizeJar>--> |
| 205 | +<!-- <artifactSet>--> |
| 206 | +<!-- <includes>--> |
| 207 | +<!-- <include>org.ow2.asm:*</include>--> |
| 208 | +<!-- </includes>--> |
| 209 | +<!-- </artifactSet>--> |
| 210 | +<!-- <relocations>--> |
| 211 | +<!-- <relocation>--> |
| 212 | +<!-- <pattern>org.objectweb.asm</pattern>--> |
| 213 | +<!-- <shadedPattern>io.jooby.internal.openapi.asm</shadedPattern>--> |
| 214 | +<!-- </relocation>--> |
| 215 | +<!-- </relocations>--> |
| 216 | +<!-- </configuration>--> |
| 217 | +<!-- </execution>--> |
| 218 | +<!-- </executions>--> |
| 219 | +<!-- </plugin>--> |
228 | 220 |
|
229 | 221 | </plugins> |
230 | 222 | </build> |
|
0 commit comments