|
@@ -1,64 +1,86 @@
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
- <modelVersion>4.0.0</modelVersion>
|
|
|
|
|
- <parent>
|
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
|
- <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
|
- <version>3.0.5</version>
|
|
|
|
|
- <relativePath/> <!-- lookup parent from repository -->
|
|
|
|
|
- </parent>
|
|
|
|
|
- <groupId>com.DeliveryProject</groupId>
|
|
|
|
|
- <artifactId>EasyDelivery</artifactId>
|
|
|
|
|
- <version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
- <packaging>war</packaging>
|
|
|
|
|
- <name>EasyDelivery</name>
|
|
|
|
|
- <description>EasyDelivery</description>
|
|
|
|
|
- <properties>
|
|
|
|
|
- <java.version>17</java.version>
|
|
|
|
|
- </properties>
|
|
|
|
|
- <dependencies>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
|
- <artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
- </dependency>
|
|
|
|
|
|
|
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
|
|
+ <parent>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
|
+ <version>2.7.10</version>
|
|
|
|
|
+ <relativePath/> <!-- lookup parent from repository -->
|
|
|
|
|
+ </parent>
|
|
|
|
|
+ <groupId>com.DeliveryProject</groupId>
|
|
|
|
|
+ <artifactId>EasyDelivery</artifactId>
|
|
|
|
|
+ <version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
+ <packaging>war</packaging>
|
|
|
|
|
+ <name>EasyDelivery</name>
|
|
|
|
|
+ <description>EasyDelivery</description>
|
|
|
|
|
+ <properties>
|
|
|
|
|
+ <java.version>11</java.version>
|
|
|
|
|
+ </properties>
|
|
|
|
|
+ <dependencies>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
+ <version>2.7.10</version>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
|
|
+ <scope>provided</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
+ <scope>test</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
|
- <artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
|
|
- <scope>provided</scope>
|
|
|
|
|
- </dependency>
|
|
|
|
|
|
|
+ <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>javax.servlet</groupId>
|
|
|
|
|
+ <artifactId>javax.servlet-api</artifactId>
|
|
|
|
|
+ <version>4.0.1</version>
|
|
|
|
|
+ <scope>provided</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-starter-security</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.keycloak</groupId>
|
|
|
|
|
+ <artifactId>keycloak-spring-boot-starter</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.keycloak</groupId>
|
|
|
|
|
+ <artifactId>keycloak-spring-security-adapter</artifactId>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
|
- <artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
- <scope>test</scope>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
|
- <artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
|
|
- </dependency>
|
|
|
|
|
|
|
+ </dependencies>
|
|
|
|
|
+ <dependencyManagement>
|
|
|
|
|
+ <dependencies>
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.keycloak.bom</groupId>
|
|
|
|
|
+ <artifactId>keycloak-adapter-bom</artifactId>
|
|
|
|
|
+ <version>10.0.0</version>
|
|
|
|
|
+ <type>pom</type>
|
|
|
|
|
+ <scope>import</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+ </dependencies>
|
|
|
|
|
+ </dependencyManagement>
|
|
|
|
|
+ <build>
|
|
|
|
|
+ <plugins>
|
|
|
|
|
+ <plugin>
|
|
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
|
|
|
- <!-- https://mvnrepository.com/artifact/javax.servlet/javax.servlet-api -->
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>javax.servlet</groupId>
|
|
|
|
|
- <artifactId>javax.servlet-api</artifactId>
|
|
|
|
|
- <version>4.0.1</version>
|
|
|
|
|
- <scope>provided</scope>
|
|
|
|
|
- </dependency>
|
|
|
|
|
-
|
|
|
|
|
- </dependencies>
|
|
|
|
|
-
|
|
|
|
|
- <build>
|
|
|
|
|
- <plugins>
|
|
|
|
|
- <plugin>
|
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
|
- <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
- </plugin>
|
|
|
|
|
- </plugins>
|
|
|
|
|
- </build>
|
|
|
|
|
|
|
+ </plugin>
|
|
|
|
|
+ </plugins>
|
|
|
|
|
+ </build>
|
|
|
|
|
|
|
|
</project>
|
|
</project>
|