Skip to content

Commit ee37d68

Browse files
authored
chore(pom.xml): update liquibase-parent-pom version from 0.3.0-SNAPSHOT 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
1 parent 96907d7 commit ee37d68

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

pom.xml

+6-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>org.liquibase</groupId>
55
<artifactId>liquibase-parent-pom</artifactId>
66
<name>Liquibase Parent POM</name>
7-
<version>0.3.0-SNAPSHOT</version>
7+
<version>0.2.4-SNAPSHOT</version>
88
<description>Liquibase Parent POM for all Extensions</description>
99
<url>https://github.com/liquibase/liquibase-parent-pom</url>
1010
<packaging>pom</packaging>
@@ -767,9 +767,6 @@
767767
</profile>
768768
<profile>
769769
<id>run-proguard</id>
770-
<activation>
771-
<activeByDefault>true</activeByDefault>
772-
</activation>
773770
<build>
774771
<plugins>
775772
<plugin>
@@ -800,6 +797,11 @@
800797
*;
801798
}
802799
</option>
800+
<option>-dontwarn software.amazon.**</option>
801+
<option>-dontwarn org.slf4j.**</option>
802+
<option>-dontwarn org.apache.**</option>
803+
<option>-dontwarn io.netty.**</option>
804+
<option>-dontwarn com.fasterxml.**</option>
803805
</options>
804806
</configuration>
805807
</execution>

0 commit comments

Comments
 (0)