Skip to content

Commit

Permalink
Merge pull request #2429 from liquibase/dont-shade-all-apache
Browse files Browse the repository at this point in the history
Don't repackage all org.apache.* classes.
  • Loading branch information
nvoxland committed Feb 7, 2022
2 parents c9dfcf0 + 34ef85d commit 5f00c17
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions liquibase-core/pom.xml
Expand Up @@ -262,8 +262,16 @@
</artifactSet>
<relocations>
<relocation>
<pattern>org.apache</pattern>
<shadedPattern>liquibase.repackaged.org.apache</shadedPattern>
<pattern>org.apache.commons.collections4</pattern>
<shadedPattern>liquibase.repackaged.org.apache.commons.collections4</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache.commons.lang3</pattern>
<shadedPattern>liquibase.repackaged.org.apache.commons.lang3</shadedPattern>
</relocation>
<relocation>
<pattern>org.apache.commons.text</pattern>
<shadedPattern>liquibase.repackaged.org.apache.commons.text</shadedPattern>
</relocation>
<relocation>
<pattern>com.opencsv</pattern>
Expand Down

0 comments on commit 5f00c17

Please sign in to comment.