284 lines
8.3 KiB
XML
284 lines
8.3 KiB
XML
|
|
<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.0</version>
|
||
|
|
<relativePath /> <!-- lookup parent from repository -->
|
||
|
|
</parent>
|
||
|
|
<groupId>com.example</groupId>
|
||
|
|
<artifactId>apiServer</artifactId>
|
||
|
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
|
<name>newApiServer</name>
|
||
|
|
<description>Demo project for Spring Boot</description>
|
||
|
|
<properties>
|
||
|
|
<env>real</env>
|
||
|
|
<java.version>17</java.version>
|
||
|
|
<maven.compiler.source>17</maven.compiler.source>
|
||
|
|
<maven.compiler.target>17</maven.compiler.target>
|
||
|
|
<repackage.classifier />
|
||
|
|
</properties>
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
||
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
||
|
|
<version>3.0.4</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-core</artifactId>
|
||
|
|
<version>6.0.12</version> <!-- Updated to match Spring Boot version -->
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>jakarta.validation</groupId>
|
||
|
|
<artifactId>jakarta.validation-api</artifactId>
|
||
|
|
<version>3.0.0</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.thymeleaf</groupId>
|
||
|
|
<artifactId>thymeleaf</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>nz.net.ultraq.thymeleaf</groupId>
|
||
|
|
<artifactId>thymeleaf-layout-dialect</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.session</groupId>
|
||
|
|
<artifactId>spring-session-core</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>mysql</groupId>
|
||
|
|
<artifactId>mysql-connector-java</artifactId>
|
||
|
|
<version>8.0.33</version>
|
||
|
|
<scope>runtime</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.mariadb.jdbc</groupId>
|
||
|
|
<artifactId>mariadb-java-client</artifactId>
|
||
|
|
<scope>runtime</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
||
|
|
<optional>true</optional>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.projectlombok</groupId>
|
||
|
|
<artifactId>lombok</artifactId>
|
||
|
|
<version>1.18.30</version>
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-webflux</artifactId>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>io.jsonwebtoken</groupId>
|
||
|
|
<artifactId>jjwt-api</artifactId>
|
||
|
|
<version>0.11.2</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>io.jsonwebtoken</groupId>
|
||
|
|
<artifactId>jjwt-impl</artifactId>
|
||
|
|
<version>0.11.2</version>
|
||
|
|
<scope>runtime</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>io.jsonwebtoken</groupId>
|
||
|
|
<artifactId>jjwt-jackson</artifactId>
|
||
|
|
<version>0.11.2</version>
|
||
|
|
<scope>runtime</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>io.jsonwebtoken</groupId>
|
||
|
|
<artifactId>jjwt-gson</artifactId>
|
||
|
|
<version>0.11.2</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>javax.xml.bind</groupId>
|
||
|
|
<artifactId>jaxb-api</artifactId>
|
||
|
|
<version>2.3.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.sun.xml.bind</groupId>
|
||
|
|
<artifactId>jaxb-core</artifactId>
|
||
|
|
<version>2.3.0.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.sun.xml.bind</groupId>
|
||
|
|
<artifactId>jaxb-impl</artifactId>
|
||
|
|
<version>2.3.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springdoc</groupId>
|
||
|
|
<artifactId>springdoc-openapi-ui</artifactId>
|
||
|
|
<version>1.5.4</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.json</groupId>
|
||
|
|
<artifactId>json</artifactId>
|
||
|
|
<version>20230227</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>net.sf.json-lib</groupId>
|
||
|
|
<artifactId>json-lib</artifactId>
|
||
|
|
<version>2.4</version>
|
||
|
|
<classifier>jdk15</classifier>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.jsoup</groupId>
|
||
|
|
<artifactId>jsoup</artifactId>
|
||
|
|
<version>1.14.3</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.httpcomponents</groupId>
|
||
|
|
<artifactId>httpclient</artifactId>
|
||
|
|
<version>4.5.13</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.httpcomponents.client5</groupId>
|
||
|
|
<artifactId>httpclient5</artifactId>
|
||
|
|
<version>5.4.2</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.squareup.okhttp3</groupId>
|
||
|
|
<artifactId>okhttp</artifactId>
|
||
|
|
<version>4.11.0</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
||
|
|
<version>3.1.4</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>io.micrometer</groupId>
|
||
|
|
<artifactId>micrometer-registry-prometheus</artifactId>
|
||
|
|
<scope>runtime</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.warrenstrange</groupId>
|
||
|
|
<artifactId>googleauth</artifactId>
|
||
|
|
<version>1.5.0</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.codehaus.jettison</groupId>
|
||
|
|
<artifactId>jettison</artifactId>
|
||
|
|
<version>1.4.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.httpcomponents.client5</groupId>
|
||
|
|
<artifactId>httpclient5</artifactId>
|
||
|
|
<version>5.3.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.webjars</groupId>
|
||
|
|
<artifactId>webjars-locator-core</artifactId>
|
||
|
|
<version>0.46</version> <!-- 호환되는 버전으로 업데이트 -->
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>io.github.classgraph</groupId>
|
||
|
|
<artifactId>classgraph</artifactId>
|
||
|
|
<version>4.8.90</version> <!-- 호환되는 버전으로 업데이트 -->
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>commons-io</groupId>
|
||
|
|
<artifactId>commons-io</artifactId>
|
||
|
|
<version>2.11.0</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework</groupId>
|
||
|
|
<artifactId>spring-messaging</artifactId>
|
||
|
|
<version>6.0.12</version> <!-- 프로젝트에 맞는 Spring 버전을 사용하세요 -->
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.integration</groupId>
|
||
|
|
<artifactId>spring-integration-security</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.integration</groupId>
|
||
|
|
<artifactId>spring-integration-stomp</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.integration</groupId>
|
||
|
|
<artifactId>spring-integration-websocket</artifactId>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>jakarta.servlet</groupId>
|
||
|
|
<artifactId>jakarta.servlet-api</artifactId>
|
||
|
|
<version>6.0.0</version> <!-- Match your Spring Boot version -->
|
||
|
|
<scope>provided</scope>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>io.netty</groupId>
|
||
|
|
<artifactId>netty-tcnative-boringssl-static</artifactId>
|
||
|
|
<version>2.0.61.Final</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
|
<configuration>
|
||
|
|
<excludes>
|
||
|
|
<exclude>
|
||
|
|
<groupId>org.projectlombok</groupId>
|
||
|
|
<artifactId>lombok</artifactId>
|
||
|
|
</exclude>
|
||
|
|
</excludes>
|
||
|
|
<classifier>${repackage.classifier}</classifier>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
<repositories>
|
||
|
|
<repository>
|
||
|
|
<id>spring-releases</id>
|
||
|
|
<name>Spring Releases</name>
|
||
|
|
<url>https://repo.spring.io/release</url>
|
||
|
|
</repository>
|
||
|
|
</repositories>
|
||
|
|
<pluginRepositories>
|
||
|
|
<pluginRepository>
|
||
|
|
<id>spring-releases</id>
|
||
|
|
<name>Spring Releases</name>
|
||
|
|
<url>https://repo.spring.io/release</url>
|
||
|
|
<snapshots>
|
||
|
|
<enabled>false</enabled>
|
||
|
|
</snapshots>
|
||
|
|
</pluginRepository>
|
||
|
|
</pluginRepositories>
|
||
|
|
</project>
|