Skip to content

Commit

Permalink
Merge pull request #527 from kdhrubo/feature/510_making_release_ready
Browse files Browse the repository at this point in the history
Feature/510 making release ready
  • Loading branch information
kdhrubo authored May 3, 2024
2 parents 60a4f47 + c44d9cd commit 9b4c4be
Show file tree
Hide file tree
Showing 17 changed files with 57 additions and 57 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dockerhub-github-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
settings-path: ${{ github.workspace }} # location for the settings.xml file

- name: Build with Maven
run: ./mvnw -B package --file pom.xml -DskipTests -P db2rest
run: ./mvnw -B package --file pom.xml -DskipTests

- name: Publish to GitHub Packages Apache Maven
run: ./mvnw deploy -s $GITHUB_WORKSPACE/settings.xml -DskipTests -P db2rest
run: ./mvnw deploy -s $GITHUB_WORKSPACE/settings.xml -DskipTests
env:
GITHUB_TOKEN: ${{ github.token }}

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM bellsoft/liberica-runtime-container:jre-21-cds-slim-musl


# Refer to Maven build -> finalName
ARG JAR_FILE=target/db2rest.jar
ARG JAR_FILE=api-rest/target/db2rest.jar

# cd /opt/app
WORKDIR /opt/app
Expand Down
10 changes: 5 additions & 5 deletions api-rest/pom-oracle9i.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</parent>

<artifactId>db2rest-oracle9i</artifactId>
<version>${parent.version}</version>
<version>${project.parent.version}</version>
<packaging>jar</packaging>
<name>db2rest-oracle9i</name>
<description>db2rest-oracle9i</description>
Expand All @@ -33,25 +33,25 @@
<dependency>
<groupId>com.github</groupId>
<artifactId>rest-common</artifactId>
<version>${project.version}</version>
<version>${project.parent.version}</version>
</dependency>

<dependency>
<groupId>com.github</groupId>
<artifactId>mongo-support</artifactId>
<version>${project.version}</version>
<version>${project.parent.version}</version>
</dependency>

<dependency>
<groupId>com.github</groupId>
<artifactId>rdbms-support</artifactId>
<version>${project.version}</version>
<version>${project.parent.version}</version>
</dependency>

<dependency>
<groupId>com.github</groupId>
<artifactId>oracle9i-dialect</artifactId>
<version>${project.version}</version>
<version>${project.parent.version}</version>
</dependency>

<dependency>
Expand Down
18 changes: 9 additions & 9 deletions api-rest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<parent>
<groupId>com.github</groupId>
<artifactId>db2rest-parent</artifactId>
<version>0.3.2-RC1</version>
<version>0.3.2-RC2</version>
<relativePath>../pom.xml</relativePath>

<!-- lookup parent from repository -->
</parent>

<artifactId>api-rest</artifactId>
<version>${parent.version}</version>
<version>${project.parent.version}</version>
<packaging>jar</packaging>
<name>api-rest</name>
<description>api-rest</description>
Expand All @@ -33,43 +33,43 @@
<dependency>
<groupId>com.github</groupId>
<artifactId>rest-common</artifactId>
<version>${project.version}</version>
<version>${project.parent.version}</version>
</dependency>

<dependency>
<groupId>com.github</groupId>
<artifactId>mongo-support</artifactId>
<version>${project.version}</version>
<version>${project.parent.version}</version>
</dependency>

<dependency>
<groupId>com.github</groupId>
<artifactId>rdbms-support</artifactId>
<version>${project.version}</version>
<version>${project.parent.version}</version>
</dependency>

<dependency>
<groupId>com.github</groupId>
<artifactId>pg-dialect</artifactId>
<version>${project.version}</version>
<version>${project.parent.version}</version>
</dependency>

<dependency>
<groupId>com.github</groupId>
<artifactId>mysql-dialect</artifactId>
<version>${project.version}</version>
<version>${project.parent.version}</version>
</dependency>

<dependency>
<groupId>com.github</groupId>
<artifactId>mariadb-dialect</artifactId>
<version>${project.version}</version>
<version>${project.parent.version}</version>
</dependency>

<dependency>
<groupId>com.github</groupId>
<artifactId>oracle-dialect</artifactId>
<version>${project.version}</version>
<version>${project.parent.version}</version>
</dependency>


Expand Down
4 changes: 2 additions & 2 deletions auth/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<parent>
<groupId>com.github</groupId>
<artifactId>db2rest-parent</artifactId>
<version>0.3.2-RC1</version>
<version>0.3.2-RC2</version>
<relativePath>../pom.xml</relativePath>

<!-- lookup parent from repository -->
</parent>

<artifactId>auth</artifactId>
<version>${parent.version}</version>
<version>${project.parent.version}</version>
<name>auth</name>
<description>auth</description>
<properties>
Expand Down
4 changes: 2 additions & 2 deletions db2rest-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<parent>
<groupId>com.github</groupId>
<artifactId>db2rest-parent</artifactId>
<version>0.3.2-RC1</version>
<version>0.3.2-RC2</version>
<relativePath>../pom.xml</relativePath>

<!-- lookup parent from repository -->
</parent>

<artifactId>db2rest-common</artifactId>
<version>${parent.version}</version>
<version>${project.parent.version}</version>
<name>db2rest-common</name>
<description>db2rest-common</description>
<properties>
Expand Down
4 changes: 2 additions & 2 deletions mariadb-dialect/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<parent>
<groupId>com.github</groupId>
<artifactId>db2rest-parent</artifactId>
<version>0.3.2-RC1</version>
<version>0.3.2-RC2</version>
<relativePath>../pom.xml</relativePath>

<!-- lookup parent from repository -->
</parent>

<artifactId>mariadb-dialect</artifactId>
<version>${parent.version}</version>
<version>${project.parent.version}</version>
<name>mariadb-dialect</name>
<description>mariadb-dialect</description>
<properties>
Expand Down
6 changes: 3 additions & 3 deletions mongo-support/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<parent>
<groupId>com.github</groupId>
<artifactId>db2rest-parent</artifactId>
<version>0.3.2-RC1</version>
<version>0.3.2-RC2</version>
<relativePath>../pom.xml</relativePath>

<!-- lookup parent from repository -->
</parent>

<artifactId>mongo-support</artifactId>
<version>${parent.version}</version>
<version>${project.parent.version}</version>
<name>mongo-support</name>
<description>mongo-support</description>
<properties>
Expand All @@ -29,7 +29,7 @@
<dependency>
<groupId>com.github</groupId>
<artifactId>db2rest-common</artifactId>
<version>${parent.version}</version>
<version>${project.parent.version}</version>
</dependency>

</dependencies>
Expand Down
6 changes: 3 additions & 3 deletions mysql-dialect/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<parent>
<groupId>com.github</groupId>
<artifactId>db2rest-parent</artifactId>
<version>0.3.2-RC1</version>
<version>0.3.2-RC2</version>
<relativePath>../pom.xml</relativePath>

<!-- lookup parent from repository -->
</parent>

<artifactId>mysql-dialect</artifactId>
<version>${parent.version}</version>
<version>${project.parent.version}</version>
<name>mysql-dialect</name>
<description>mysql-dialect</description>
<properties>
Expand All @@ -27,7 +27,7 @@
<dependency>
<groupId>com.github</groupId>
<artifactId>rdbms-common</artifactId>
<version>${parent.version}</version>
<version>${project.parent.version}</version>
</dependency>
</dependencies>

Expand Down
6 changes: 3 additions & 3 deletions oracle-dialect/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<parent>
<groupId>com.github</groupId>
<artifactId>db2rest-parent</artifactId>
<version>0.3.2-RC1</version>
<version>0.3.2-RC2</version>
<relativePath>../pom.xml</relativePath>

<!-- lookup parent from repository -->
</parent>

<artifactId>oracle-dialect</artifactId>
<version>${parent.version}</version>
<version>${project.parent.version}</version>
<name>oracle-dialect</name>
<description>oracle-dialect</description>
<properties>
Expand All @@ -29,7 +29,7 @@
<dependency>
<groupId>com.github</groupId>
<artifactId>rdbms-common</artifactId>
<version>${parent.version}</version>
<version>${project.parent.version}</version>
</dependency>
</dependencies>

Expand Down
6 changes: 3 additions & 3 deletions oracle9i-dialect/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<parent>
<groupId>com.github</groupId>
<artifactId>db2rest-parent</artifactId>
<version>0.3.2-RC1</version>
<version>0.3.2-RC2</version>
<relativePath>../pom.xml</relativePath>

<!-- lookup parent from repository -->
</parent>

<artifactId>oracle9i-dialect</artifactId>
<version>${parent.version}</version>
<version>${project.parent.version}</version>
<name>oracle9i-dialect</name>
<description>oracle9i-dialect</description>
<properties>
Expand All @@ -29,7 +29,7 @@
<dependency>
<groupId>com.github</groupId>
<artifactId>rdbms-common</artifactId>
<version>${parent.version}</version>
<version>${project.parent.version}</version>
</dependency>
</dependencies>

Expand Down
6 changes: 3 additions & 3 deletions pg-dialect/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<parent>
<groupId>com.github</groupId>
<artifactId>db2rest-parent</artifactId>
<version>0.3.2-RC1</version>
<version>0.3.2-RC2</version>
<relativePath>../pom.xml</relativePath>

<!-- lookup parent from repository -->
</parent>

<artifactId>pg-dialect</artifactId>
<version>${parent.version}</version>
<version>${project.parent.version}</version>
<name>pg-dialect</name>
<description>pg-dialect</description>
<properties>
Expand All @@ -34,7 +34,7 @@
<dependency>
<groupId>com.github</groupId>
<artifactId>rdbms-common</artifactId>
<version>${parent.version}</version>
<version>${project.parent.version}</version>
</dependency>


Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
</parent>
<groupId>com.github</groupId>
<artifactId>db2rest-parent</artifactId>
<version>0.3.2-RC1</version>
<version>0.3.2-RC2</version>
<packaging>pom</packaging>
<name>db2rest-parent</name>
<description>db2rest-parent</description>
<properties>
<db2rest.version>0.3.2-RC1</db2rest.version>
<db2rest.version>0.3.2-RC2</db2rest.version>
<java.version>21</java.version>
<spring-restdocs.version>3.0.1</spring-restdocs.version>
</properties>
Expand Down
6 changes: 3 additions & 3 deletions rdbms-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
<parent>
<groupId>com.github</groupId>
<artifactId>db2rest-parent</artifactId>
<version>0.3.2-RC1</version>
<version>0.3.2-RC2</version>
<relativePath>../pom.xml</relativePath>

<!-- lookup parent from repository -->
</parent>

<artifactId>rdbms-common</artifactId>
<version>${parent.version}</version>
<version>${project.parent.version}</version>
<name>rdbms-common</name>
<description>rdbms-common</description>
<properties>
Expand All @@ -23,7 +23,7 @@
<dependency>
<groupId>com.github</groupId>
<artifactId>db2rest-common</artifactId>
<version>${parent.version}</version>
<version>${project.parent.version}</version>
</dependency>

</dependencies>
Expand Down
Loading

0 comments on commit 9b4c4be

Please sign in to comment.