mirror of
https://github.com/songoda/SongodaCore.git
synced 2025-02-27 17:01:44 +01:00
Shade asm into the core, not all java versions contains it. Fix shading for reactivestreams.
This commit is contained in:
parent
dcf9fa4a29
commit
cd3acd87f5
18
Core/pom.xml
18
Core/pom.xml
@ -94,6 +94,7 @@
|
||||
|
||||
<include>me.lucko:jar-relocator</include>
|
||||
<include>com.github.GeorgeV220:LibraryLoader</include>
|
||||
<include>org.ow2.asm:asm</include>
|
||||
</includes>
|
||||
</artifactSet>
|
||||
|
||||
@ -118,6 +119,11 @@
|
||||
<shadedPattern>com.craftaro.third_party.org.apache.commons</shadedPattern>
|
||||
</relocation>
|
||||
|
||||
<relocation>
|
||||
<pattern>org.reactivestreams</pattern>
|
||||
<shadedPattern>com.craftaro.third_party.org.reactivestreams</shadedPattern>
|
||||
</relocation>
|
||||
|
||||
<relocation>
|
||||
<pattern>org.jooq</pattern>
|
||||
<shadedPattern>com.craftaro.third_party.org.jooq</shadedPattern>
|
||||
@ -147,6 +153,11 @@
|
||||
<pattern>com.georgev22.api</pattern>
|
||||
<shadedPattern>com.craftaro.core.third_party.com.georgev22.api</shadedPattern>
|
||||
</relocation>
|
||||
|
||||
<relocation>
|
||||
<pattern>org.objectweb.asm</pattern>
|
||||
<shadedPattern>com.craftaro.core.third_party.org.objectweb.asm</shadedPattern>
|
||||
</relocation>
|
||||
</relocations>
|
||||
|
||||
<filters>
|
||||
@ -240,6 +251,13 @@
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.ow2.asm</groupId>
|
||||
<artifactId>asm</artifactId>
|
||||
<version>9.6</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- DB Stuff Start -->
|
||||
<dependency>
|
||||
<groupId>com.zaxxer</groupId>
|
||||
|
Loading…
Reference in New Issue
Block a user