Skip to content

Commit

Permalink
[1.4.6] - 2023-09-26
Browse files Browse the repository at this point in the history
  • Loading branch information
fugerit79 committed Sep 26, 2023
1 parent 2a6466b commit 607cdee
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 7 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.4.6] - 2023-09-26

### Added

- jackson dependency management set to 2.15.2
- opencsv dependency management set to 5.8

### Changed

- lombok-version set to 1.18.30
- mvn-shade-plugin-version set to 3.5.1

## [1.4.5] - 2023-09-24

### Changed
Expand Down
43 changes: 36 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>org.fugerit.java</groupId>
<artifactId>fj-bom</artifactId>

<version>1.4.5</version>
<version>1.4.6</version>
<packaging>pom</packaging>

<name>Fugerit Java Platform BOM</name>
Expand Down Expand Up @@ -78,7 +78,7 @@
<mvn-source-version>3.3.0</mvn-source-version>
<mvn-javadoc-version>3.6.0</mvn-javadoc-version>
<mvn-jar-version>3.3.0</mvn-jar-version>
<mvn-shade-version>3.4.1</mvn-shade-version>
<mvn-shade-version>3.5.1</mvn-shade-version>
<mvn-surefire-version>3.1.2</mvn-surefire-version>
<mvn-resources-version>3.3.1</mvn-resources-version>
<!-- maven plugin creation dependancies -->
Expand All @@ -103,7 +103,7 @@
<common-compress-version>1.24.0</common-compress-version>
<org.tukaani.xz-version>1.9</org.tukaani.xz-version>
<!-- development plugin -->
<lombok-version>1.18.28</lombok-version>
<lombok-version>1.18.30</lombok-version>
<!-- graal vm -->
<graalvm-mvn-native-version>0.9.24</graalvm-mvn-native-version>
<slf4j-simple-version>${slf4j-version}</slf4j-simple-version>
Expand All @@ -114,6 +114,11 @@
<licenseURL>http://www.apache.org/licenses/LICENSE-2.0.txt</licenseURL>
<!-- build helper -->
<build-helper-maven-plugin-version>3.4.0</build-helper-maven-plugin-version>
<!-- jackson version -->
<fasterxml-jackson-core-version>2.15.2</fasterxml-jackson-core-version>
<fasterxml-jackson-databind-version>2.15.2</fasterxml-jackson-databind-version>
<!-- opencsv version -->
<opencsv-version>5.8</opencsv-version>
</properties>

<dependencyManagement>
Expand All @@ -132,6 +137,12 @@
<version>${dbcp2-version}</version>
</dependency>

<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>${poi-version}</version>
</dependency>

<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
Expand Down Expand Up @@ -263,6 +274,24 @@
<version>${mvn-plugin-annotations-version}</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${fasterxml-jackson-core-version}</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${fasterxml-jackson-databind-version}</version>
</dependency>

<dependency>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>${opencsv-version}</version>
</dependency>

<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
Expand Down Expand Up @@ -359,14 +388,14 @@
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<version>${buildnumber-maven-plugin-version}</version>
</plugin>

</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>${build-helper-maven-plugin-version}</version>
</plugin>
</plugin>

</plugins>

</pluginManagement>
Expand Down

0 comments on commit 607cdee

Please sign in to comment.