Merge pull request #35 from HideyoshiNakazone/devel

Devel - Updates Spring and Other Dependencies
This commit is contained in:
2023-11-10 17:42:41 -03:00
committed by GitHub

18
pom.xml
View File

@@ -5,16 +5,16 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.5</version>
<version>2.7.17</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.hideyoshi</groupId>
<artifactId>backend-template</artifactId>
<artifactId>backend-api</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>backend-template</name>
<description>Backend Template</description>
<name>backend-api</name>
<description>Backend API</description>
<properties>
<java.version>11</java.version>
<java.version>17</java.version>
</properties>
<dependencies>
<dependency>
@@ -24,7 +24,7 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
<version>2.7.5</version>
<version>3.0.4</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
@@ -50,12 +50,12 @@
<dependency>
<groupId>com.auth0</groupId>
<artifactId>java-jwt</artifactId>
<version>4.2.1</version>
<version>4.3.0</version>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.5.1</version>
<version>42.5.4</version>
<scope>runtime</scope>
</dependency>
<dependency>
@@ -105,7 +105,7 @@
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.13</version>
<version>4.5.14</version>
</dependency>
</dependencies>