Skip to content

Commit

Permalink
library updates
Browse files Browse the repository at this point in the history
  • Loading branch information
eliasnogueira committed Dec 25, 2023
1 parent ea70ff2 commit be6730b
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 22 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,18 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: adopt
distribution: temurin
java-version: 21

- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn -B -DskipTests package --file pom.xml
Expand All @@ -30,9 +31,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: adopt
distribution: temurin
java-version: 21

- name: Removing -SNAPSHOT
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.10.3] - 25-12-2023

## Changed
- Updated the following libraries
- `spring-boot-starter-parent -> 3.2.1`
- `maven-compiler-plugin.version -> 3.12.1`
- `maven-surefire-plugin -> 3.2.3`

## [1.10.2] - 17-12-2023

### Changed
Expand Down
22 changes: 7 additions & 15 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.0</version>
<version>3.2.1</version>
</parent>

<groupId>com.eliasogueira.credit</groupId>
<artifactId>combined-credit-api</artifactId>
<version>1.10.2-SNAPSHOT</version>
<version>1.10.3-SNAPSHOT</version>

<distributionManagement>
<repository>
Expand All @@ -24,17 +24,16 @@

<properties>
<java.version>21</java.version>
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
<maven-surefire-plugin.version>3.2.2</maven-surefire-plugin.version>
<maven-compiler-plugin.version>3.12.1</maven-compiler-plugin.version>
<maven-surefire-plugin.version>3.2.3</maven-surefire-plugin.version>

<springdoc-openapi-starter-webmvc-ui.version>2.3.0</springdoc-openapi-starter-webmvc-ui.version>
<modelmapper.version>3.2.0</modelmapper.version>
<lombok.version>1.18.30</lombok.version>
<hibernate-jpamodelgen.version>6.4.1.Final</hibernate-jpamodelgen.version>
<jakarta-xml-bind-api.version>4.0.1</jakarta-xml-bind-api.version>
<jaxb-api.version>2.4.0-b180830.0359</jaxb-api.version>
<h2.version>2.2.224</h2.version>
<jib.version>3.4.0</jib.version>
<jib-maven-plugin.version>3.4.0</jib-maven-plugin.version>

<!-- security library updates -->
<commons-codec.version>1.16.0</commons-codec.version>
Expand Down Expand Up @@ -110,13 +109,6 @@
<artifactId>jakarta.xml.bind-api</artifactId>
<version>${jakarta-xml-bind-api.version}</version>
</dependency>

<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>${jaxb-api.version}</version>
</dependency>

</dependencies>

<build>
Expand All @@ -140,7 +132,7 @@
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
<version>${jib.version}</version>
<version>${jib-maven-plugin.version}</version>
<configuration>
<to>
<image>eliasnogueira/${project.name}:${project.version}</image>
Expand All @@ -153,4 +145,4 @@
</plugins>
</build>

</project>
</project>

0 comments on commit be6730b

Please sign in to comment.