Skip to content

Commit

Permalink
Dat 15992 (#62)
Browse files Browse the repository at this point in the history
* chore(pom.xml): update liquibase.version from 4.23.2 to 4.24.0 for the main project and snapshot profile
chore(pom.xml): update proguard-maven-plugin.version to 2.6.0 for the main project and snapshot profile
chore(ParentPomTest.java): rename ParTest class to ParentPomTest for better clarity and consistency

* chore(pom.xml): update liquibase-parent-pom version from 0.3.0-SNAPSHOT to 0.2.1-GROOVY-4.0-SNAPSHOT for consistency
chore(pom.xml): update groovy-all.version from 3.0.19 to 4.0.15 for compatibility with other dependencies
chore(pom.xml): update spock-core.version from 2.4-M1-groovy-3.0 to 2.4-M1-groovy-4.0 for compatibility with other dependencies
chore(pom.xml): update spock-reports.version from 2.5.1-groovy-3.0 to 2.5.1-groovy-4.0 for compatibility with other dependencies
chore(pom.xml): update groupId from org.codehaus.groovy to org.apache.groovy for consistency

* chore(pom.xml): update jacoco-maven-plugin version to ${jacoco-maven-plugin.version} for compatibility and bug fixes

* fix(pom.xml): use project.url variable instead of hardcoding the GitHub repository URL for the SCM connection and URL to improve flexibility and maintainability

* chore(pom.xml): update spock-core and spock-reports versions to 2.4-M1-groovy-3.0 and 2.5.1-groovy-3.0 respectively for compatibility with Groovy 3.0
chore(pom.xml): update groovy-all groupId from org.apache.groovy to org.codehaus.groovy for consistency

* chore(pom.xml): update liquibase-parent-pom version from 0.2.1-GROOVY-4.0-SNAPSHOT to 0.2.1-SNAPSHOT for consistency and clarity

* chore(pom.xml): update groovy-all.version from 4.0.15 to 3.0.19 to align with project requirements and dependencies
  • Loading branch information
jandroav authored Oct 10, 2023
1 parent abc80d1 commit 2919ddf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
14 changes: 8 additions & 6 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.1-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 @@ -39,7 +39,7 @@
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- Liquibase -->
<liquibase.version>4.23.2</liquibase.version>
<liquibase.version>4.24.0</liquibase.version>
<!-- SonarCloud -->
<sonar.organization>liquibase</sonar.organization>
<sonar.projectKey>liquibase_${project.artifactId}</sonar.projectKey>
Expand Down Expand Up @@ -84,6 +84,7 @@
<oracle.version>21.9.0.0</oracle.version>
<org-json.version>20230618</org-json.version>
<postgresql.version>42.6.0</postgresql.version>
<proguard-maven-plugin.version>2.6.0</proguard-maven-plugin.version>
<sonar-maven-plugin.version>3.9.1.2184</sonar-maven-plugin.version>
<snakeyaml.version>2.2</snakeyaml.version>
<spock-core.version>2.4-M1-groovy-3.0</spock-core.version>
Expand All @@ -93,8 +94,8 @@
</properties>

<scm>
<connection>scm:git:https://github.com/liquibase/${project.artifactId}.git</connection>
<url>https://github.com/liquibase/${project.artifactId}</url>
<connection>scm:git:${project.url}.git</connection>
<url>${project.url}</url>
<tag>HEAD</tag>
</scm>

Expand Down Expand Up @@ -507,7 +508,7 @@
<profile>
<id>snapshot</id>
<properties>
<liquibase.version>4.23.2</liquibase.version>
<liquibase.version>4.24.0</liquibase.version>
</properties>
<activation>
<activeByDefault>true</activeByDefault>
Expand Down Expand Up @@ -580,6 +581,7 @@
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco-maven-plugin.version}</version>
<configuration>
<fileSets>
<fileSet>
Expand Down Expand Up @@ -744,7 +746,7 @@
<plugin>
<groupId>com.github.wvengen</groupId>
<artifactId>proguard-maven-plugin</artifactId>
<version>2.6.0</version>
<version>${proguard-maven-plugin.version}</version>
<executions>
<execution>
<goals>
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/liquibase/parentpom/ParentPomTest.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

import org.junit.jupiter.api.Test;

public class ParTest {
public class ParentPomTest {

@Test
void whenTestCase_thenPass() {
Expand Down

0 comments on commit 2919ddf

Please sign in to comment.