Skip to content

Commit

Permalink
chore(pom.xml): update liquibase-parent-pom version from 0.3.0-SNAPSH…
Browse files Browse the repository at this point in the history
…OT to 0.2.4-SNAPSHOT for compatibility (#67)

refactor(pom.xml): remove activeByDefault flag from run-proguard profile to avoid unintended execution
refactor(pom.xml): add -dontwarn options for software.amazon, org.slf4j, org.apache, io.netty, and com.fasterxml to suppress warning messages during ProGuard execution
  • Loading branch information
jandroav authored Oct 13, 2023
1 parent 96907d7 commit ee37d68
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>org.liquibase</groupId>
<artifactId>liquibase-parent-pom</artifactId>
<name>Liquibase Parent POM</name>
<version>0.3.0-SNAPSHOT</version>
<version>0.2.4-SNAPSHOT</version>
<description>Liquibase Parent POM for all Extensions</description>
<url>https://github.com/liquibase/liquibase-parent-pom</url>
<packaging>pom</packaging>
Expand Down Expand Up @@ -767,9 +767,6 @@
</profile>
<profile>
<id>run-proguard</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
Expand Down Expand Up @@ -800,6 +797,11 @@
*;
}
</option>
<option>-dontwarn software.amazon.**</option>
<option>-dontwarn org.slf4j.**</option>
<option>-dontwarn org.apache.**</option>
<option>-dontwarn io.netty.**</option>
<option>-dontwarn com.fasterxml.**</option>
</options>
</configuration>
</execution>
Expand Down

0 comments on commit ee37d68

Please sign in to comment.