Skip to content

Commit

Permalink
chore(pom.xml): update liquibase-hanadb version to 0-SNAPSHOT for dev…
Browse files Browse the repository at this point in the history
…elopment purposes

chore(pom.xml): update project name to "Liquibase Extension: SAP HANA support" for clarity
chore(pom.xml): update project description to reflect the purpose of the extension
chore(pom.xml): update organization name to "Liquibase" for consistency
chore(pom.xml): update license information to use Apache License, Version 2.0
chore(pom.xml): update issue management URL to point to the GitHub repository issues
chore(pom.xml): update SCM information to use Git and point to the GitHub repository
chore(pom.xml): update liquibase.version property to 0-SNAPSHOT for development purposes
chore(pom.xml): update project.build.sourceEncoding and project.reporting.outputEncoding to UTF-8
chore(pom.xml): update surefire-plugin version to 3.1.2 for compatibility
chore(pom.xml): update build-helper-maven-plugin version to 3.4.0 for compatibility
chore(pom.xml): update maven-javadoc-plugin version to 3.5.0 for compatibility
chore(pom.xml): update maven-source-plugin version to 3.3.0 for compatibility
chore(pom.xml): update jacoco-maven-plugin version to 0.8.11 for compatibility
chore(pom.xml): update sonar-maven-plugin version to 3.9.1.2184 for compatibility
chore(pom.xml): update liquibase-sdk-maven-plugin version to 0.10.20 for compatibility
  • Loading branch information
jandroav committed Oct 23, 2023
1 parent d7957d6 commit cb4218a
Showing 1 changed file with 137 additions and 39 deletions.
176 changes: 137 additions & 39 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,36 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-parent-pom</artifactId>
<version>0.2.6</version> <!-- Replace with the desired version -->
</parent>

<groupId>org.liquibase.ext</groupId>
<artifactId>liquibase-hanadb</artifactId>
<version>4.24.1-SNAPSHOT</version>
<version>0-SNAPSHOT</version>

<name>Liquibase Extension SAP HANA support</name>
<name>Liquibase Extension: SAP HANA support</name>
<description>Add this Liquibase extension to your project to support SAP HANA</description>
<url>https://github.com/liquibase/liquibase-hanadb</url>

<organization>
<name>Liquibase</name>
<url>http://www.liquibase.com</url>
</organization>

<licenses>
<license>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<name>Apache License, Version 2.0</name>
</license>
</licenses>

<issueManagement>
<url>https://github.com/liquibase/liquibase-hanadb/issues</url>
</issueManagement>

<scm>
<connection>scm:git:http://github.com/liquibase/liquibase-hanadb.git</connection>
<url>https://github.com/liquibase/liquibase-hanadb</url>
<tag>HEAD</tag>
</scm>

<developers>
<developer>
<id>liquibase</id>
Expand Down Expand Up @@ -46,12 +62,35 @@
<timezone>-6</timezone>
</developer>
</developers>

<properties>
<liquibase.version>4.24.0</liquibase.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<liquibase.version>0-SNAPSHOT</liquibase.version>
<liquibase.sdk.github.token>${env.GITHUB_TOKEN}</liquibase.sdk.github.token>

<sonar.organization>liquibase</sonar.organization>
<sonar.projectKey>${project.artifactId}</sonar.projectKey>
<sonar.projectName>${project.name}</sonar.projectName>
<sonar.projectDescription>${project.description}</sonar.projectDescription>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<sonar.scm.provider>git</sonar.scm.provider>
<sonar.qualitygate.wait>true</sonar.qualitygate.wait>

<jacoco.fileset.directory>target</jacoco.fileset.directory>
</properties>

<dependencies>
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-core</artifactId>
<version>${liquibase.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
<version>4.13.2</version>
</dependency>
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-test-harness</artifactId>
Expand All @@ -68,45 +107,104 @@

<build>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<configuration>
<release>8</release>
<optimize>true</optimize>
<debug>true</debug>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
<version>3.1.2</version>
<configuration>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
<reportFormat>plain</reportFormat>
<systemPropertyVariables>
<com.athaydes.spockframework.report.outputDir>${project.build.directory}/spock-reports</com.athaydes.spockframework.report.outputDir>
</systemPropertyVariables>
</configuration>
<dependencies>
<!-- Force using the latest JUnit 47 provider -->
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-junit47</artifactId>
<version>${maven-surefire-plugin.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${maven-failsafe-plugin.version}</version>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.4.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.5.0</version>
<configuration>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
<reportFormat>plain</reportFormat>
<systemPropertyVariables>
<com.athaydes.spockframework.report.outputDir>${project.build.directory}/spock-reports</com.athaydes.spockframework.report.outputDir>
</systemPropertyVariables>
<attach>true</attach>
<author>false</author>
<doctitle>Liquibase SAP HANA ${project.version} API</doctitle>
<quiet>true</quiet>
<doclint>none</doclint>
<encoding>UTF-8</encoding>

<includeDependencySources>false</includeDependencySources>
</configuration>
<dependencies>
<!-- Force using the latest JUnit 47 provider -->
<dependency>
<groupId>org.apache.maven.surefire</groupId>
<artifactId>surefire-junit47</artifactId>
<version>${maven-surefire-plugin.version}</version>
</dependency>
</dependencies>
<executions>
<execution>
<id>javadoc-default</id>
<goals>
<goal>jar</goal>
</goals>
<phase>package</phase>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.11</version>
<configuration>
<fileSets>
<fileSet>
<directory>${jacoco.fileset.directory}</directory>
<includes>
<include>**/jacoco.exec</include>
</includes>
</fileSet>
</fileSets>
</configuration>
</plugin>

<plugin>
<groupId>org.sonarsource.scanner.maven</groupId>
<artifactId>sonar-maven-plugin</artifactId>
<version>3.9.1.2184</version>
</plugin>

<plugin>
<groupId>org.liquibase.ext</groupId>
<artifactId>liquibase-sdk-maven-plugin</artifactId>
<version>0.10.20</version>
</plugin>
</plugins>
</build>

</project>
</build>
</project>

0 comments on commit cb4218a

Please sign in to comment.