Skip to content

Commit

Permalink
fix: bump dependencies (#97)
Browse files Browse the repository at this point in the history
* fix: bump dependencies
- spring boot 2.6.2
- dgc lib 1.1.8
- sap cloud sdk 3.60.0

* Update pom.xml

* Update pom.xml

* fix: ensure classic pathmatching strategy

* Update pom.xml

* Update pom.xml

* Update Hibernate to 2.6.5

Co-authored-by: Felix Dittrich <[email protected]>
Co-authored-by: Felix Dittrich <[email protected]>
  • Loading branch information
3 people committed Jan 28, 2022
1 parent 9691187 commit b830dc9
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 30 deletions.
48 changes: 18 additions & 30 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- dependencies -->
<dgclib.version>1.1.7</dgclib.version>
<owasp.version>6.5.0</owasp.version>
<spring.boot.version>2.6.1</spring.boot.version>
<spring.cloud.openfeign.version>3.1.0</spring.cloud.openfeign.version>
<dgclib.version>1.1.10</dgclib.version>
<owasp.version>6.5.3</owasp.version>
<spring.boot.version>2.6.3</spring.boot.version>
<hibernate.version>5.6.5.Final</hibernate.version>
<spring.test.version>5.3.12</spring.test.version>
<spring.security.version>5.6.0</spring.security.version>
<lombok.version>1.18.22</lombok.version>
Expand All @@ -41,9 +41,9 @@
<bcpkix.version>1.70</bcpkix.version>
<okhttp.version>4.9.2</okhttp.version>
<shedlock.version>4.30.0</shedlock.version>
<sap.cloud.sdk.version>3.57.0</sap.cloud.sdk.version>
<sap.cloud.sdk.version>3.60.0</sap.cloud.sdk.version>
<slf4j.version>1.7.32</slf4j.version>
<log4j2.version>2.17.0</log4j2.version>
<h2.version>2.1.210</h2.version>
<!-- plugins -->
<plugin.checkstyle.version>3.1.2</plugin.checkstyle.version>
<plugin.sonar.version>3.6.1.1688</plugin.sonar.version>
Expand Down Expand Up @@ -91,38 +91,15 @@
<url>https://maven.pkg.github.com/${github.organization}/${github.project}</url>
</repository>
</distributionManagement>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-to-slf4j</artifactId>
<version>${log4j2.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j2.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j2.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring.boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-openfeign-dependencies</artifactId>
<version>${spring.cloud.openfeign.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
Expand Down Expand Up @@ -152,7 +129,6 @@
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>eu.europa.ec.dgc</groupId>
Expand All @@ -166,6 +142,17 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
<exclusions>
<exclusion>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>${hibernate.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down Expand Up @@ -223,6 +210,7 @@
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>${h2.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
Expand Down
3 changes: 3 additions & 0 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
server:
port: 8080
spring:
mvc:
pathmatch:
matching-strategy: ant_path_matcher
application:
name: dgca-issuance-service
datasource:
Expand Down

0 comments on commit b830dc9

Please sign in to comment.