pomca
<?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"
?? ?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.1</version>
?? ??? ?<relativePath /> <!-- lookup parent from repository -->
?? ?</parent>
?? ?<groupId>campaign_esports</groupId>
?? ?<artifactId>campaign_esports</artifactId>
?? ?<packaging>war</packaging>
?? ?<version>0.0.1-SNAPSHOT</version>
?? ?<name>campaign_esports</name>
?? ?<description>campaign_esports</description>
?? ?<properties>
?? ??? ?<java.version>11</java.version>
?? ?</properties>
?? ?<!--Version管理用 -->
?? ?<dependencyManagement>
?? ??? ?<dependencies>
?? ??? ??? ?<!--Spring Cloud -->
?? ??? ??? ?<dependency>
?? ??? ??? ??? ?<groupId>org.springframework.cloud</groupId>
?? ??? ??? ??? ?<artifactId>spring-cloud-dependencies</artifactId>
?? ??? ??? ??? ?<version>2021.0.3</version>
?? ??? ??? ??? ?<type>pom</type>
?? ??? ??? ??? ?<scope>import</scope>
?? ??? ??? ?</dependency>
?? ??? ??? ?<!-- Spring Cloud AWS -->
?? ??? ??? ?<dependency>
?? ??? ??? ??? ?<groupId>io.awspring.cloud</groupId>
?? ??? ??? ??? ?<artifactId>spring-cloud-aws-dependencies</artifactId>
?? ??? ??? ??? ?<version>2.3.2</version>
?? ??? ??? ??? ?<type>pom</type>
?? ??? ??? ??? ?<scope>import</scope>
?? ??? ??? ?</dependency>
?? ??? ?</dependencies>
?? ?</dependencyManagement>
?? ?<dependencies>
?? ??? ?<!-- Spring Web -->
?? ??? ?<dependency>
?? ??? ??? ?<groupId>org.springframework.boot</groupId>
?? ??? ??? ?<artifactId>spring-boot-starter-web</artifactId>
?? ??? ?</dependency>
?? ??? ?<!-- forDeploy -->
?? ??? ?<dependency>
?? ??? ??? ?<groupId>org.springframework.boot</groupId>
?? ??? ??? ?<artifactId>spring-boot-starter-tomcat</artifactId>
?? ??? ??? ?<scope>provided</scope>
?? ??? ?</dependency>
?? ??? ?<!-- JPA -->
?? ??? ?<dependency>
?? ??? ??? ?<groupId>org.springframework.boot</groupId>
?? ??? ??? ?<artifactId>spring-boot-starter-data-jpa</artifactId>
?? ??? ?</dependency>
?? ??? ?<!-- Spring Security -->
?? ??? ?<dependency>
?? ??? ??? ?<groupId>org.springframework.boot</groupId>
?? ??? ??? ?<artifactId>spring-boot-starter-security</artifactId>
?? ??? ?</dependency>
?? ??? ?<!-- spring-retry -->
? ? ? ? <dependency>
? ? ? ? ? ? <groupId>org.springframework.retry</groupId>
? ? ? ? ? ? <artifactId>spring-retry</artifactId>
? ? ? ? </dependency>
?? ??? ?<!-- mail -->
?? ??? ?<dependency>
? ? ? ?? ? ? ?<groupId>org.springframework.boot</groupId>
? ? ? ?? ? ? ?<artifactId>spring-boot-starter-mail</artifactId>
? ? ? ?? ?</dependency>
?? ??? ?<!-- Validation -->
?? ??? ?<dependency>
?? ??? ??? ?<groupId>org.springframework.boot</groupId>
?? ??? ??? ?<artifactId>spring-boot-starter-validation</artifactId>
?? ??? ?</dependency>
?? ??? ?<!-- Thymeleaf -->
?? ??? ?<dependency>
?? ??? ??? ?<groupId>org.springframework.boot</groupId>
?? ??? ??? ?<artifactId>spring-boot-starter-thymeleaf</artifactId>
?? ??? ?</dependency>
?? ??? ?<dependency>
?? ??? ??? ?<groupId>org.thymeleaf.extras</groupId>
?? ??? ??? ?<artifactId>thymeleaf-extras-springsecurity5</artifactId>
?? ??? ?</dependency>
?? ??? ? <!-- MYSQL -->
?? ??? ?<dependency>
?? ??? ??? ?<groupId>mysql</groupId>
?? ??? ??? ?<artifactId>mysql-connector-java</artifactId>
?? ??? ??? ?<scope>runtime</scope>
?? ??? ?</dependency>
?? ??? ?<!-- S3 -->
?? ??? ?<dependency>
?? ??? ??? ?<groupId>com.amazonaws</groupId>
?? ??? ??? ?<artifactId>aws-java-sdk-s3</artifactId>
?? ??? ?</dependency>
?? ??? ?<!-- Lombok -->
?? ??? ?<dependency>
?? ??? ??? ?<groupId>org.projectlombok</groupId>
?? ??? ??? ?<artifactId>lombok</artifactId>
?? ??? ??? ?<optional>true</optional>
?? ??? ?</dependency>
?? ??? ?<!-- devtool -->
?? ??? ?<dependency>
?? ??? ??? ?<groupId>org.springframework.boot</groupId>
?? ??? ??? ?<artifactId>spring-boot-devtools</artifactId>
?? ??? ??? ?<scope>runtime</scope>
?? ??? ??? ?<optional>true</optional>
?? ??? ?</dependency>
?? ??? ?<!-- forLog -->
?? ??? ?<dependency>
?? ??? ??? ?<groupId>org.springframework.boot</groupId>
?? ??? ??? ?<artifactId>spring-boot-starter-aop</artifactId>
?? ??? ?</dependency>
?? ??? ?<!-- ログ制御用Terasoluna共通ライブラリ -->
? ? ? ? <dependency>
? ? ? ? ? ? <groupId>org.terasoluna.gfw</groupId>
? ? ? ? ? ? <artifactId>terasoluna-gfw-web-dependencies</artifactId>
? ? ? ? ? ? <type>pom</type>
?? ? ? ? ? ?<version>5.7.0.RELEASE</version>
? ? ? ? </dependency>
?? ??? ?<dependency>
? ? ? ? ? ? <groupId>org.terasoluna.gfw</groupId>
? ? ? ? ? ? <artifactId>terasoluna-gfw-web</artifactId>
? ? ? ? ? ? <type>pom</type>
?? ? ? ? ? ?<version>5.7.0.RELEASE</version>
? ? ? ? </dependency>
?? ??? ?<!-- commons-io -->
?? ??? ?<dependency>
?? ??? ??? ?<groupId>commons-io</groupId>
?? ??? ??? ?<artifactId>commons-io</artifactId>
?? ??? ??? ?<version>2.11.0</version>
?? ??? ?</dependency>
?? ??? ?<!-- AWS Java SDK DynamoDB Enhanced Client -->
?? ??? ?<dependency>
?? ??? ? ? ?<groupId>software.amazon.awssdk</groupId>
?? ??? ? ? ?<artifactId>dynamodb-enhanced</artifactId>
?? ??? ? ? ?<version>2.17.66</version>
?? ??? ?</dependency>
?? ??? ?<!--Validator -->
?? ??? ?<!-- Ascii印字可能文字の集合 -->
?? ??? ?<dependency>
?? ??? ??? ?<groupId>org.terasoluna.gfw</groupId>
?? ??? ??? ?<artifactId>terasoluna-gfw-codepoints</artifactId>
?? ??? ??? ?<version>5.7.0.RELEASE</version>
?? ??? ?</dependency>
?? ??? ?<!-- JIS X 0201 のカタカナの集合 -->
?? ??? ?<dependency>
?? ??? ??? ?<groupId>org.terasoluna.gfw.codepoints</groupId>
?? ??? ??? ?<artifactId>terasoluna-gfw-codepoints-jisx0201</artifactId>
?? ??? ??? ?<version>5.7.0.RELEASE</version>
?? ??? ?</dependency>
?? ??? ?<!-- JIS X 0208 の1-2區:特殊文字の集合 -->
?? ??? ?<!-- JIS X 0208 の3區:英數字の集合 -->
?? ??? ?<!-- JIS X 0208 の4區:ひらがなの集合 -->
?? ??? ?<!-- JIS X 0208 の6區:ギリシア文字の集合 -->
?? ??? ?<!-- JIS X 0208 の7區:キリル文字の集合 -->
?? ??? ?<dependency>
?? ??? ??? ?<groupId>org.terasoluna.gfw.codepoints</groupId>
?? ??? ??? ?<artifactId>terasoluna-gfw-codepoints-jisx0208</artifactId>
?? ??? ??? ?<version>5.7.0.RELEASE</version>
?? ??? ?</dependency>
?? ??? ?<!-- JIS X 0213:2004で規定される漢字10050字。第一?第二?第三?第四水準漢字 -->
?? ??? ?<dependency>
?? ??? ??? ?<groupId>org.terasoluna.gfw.codepoints</groupId>
?? ??? ??? ?<artifactId>terasoluna-gfw-codepoints-jisx0213kanji</artifactId>
?? ??? ??? ?<version>5.7.0.RELEASE</version>
?? ??? ?</dependency>
?? ??? ?<!-- 文字列操作用Terasoluna共通ライブラリ -->
?? ??? ?<dependency>
?? ??? ??? ?<groupId>org.terasoluna.gfw</groupId>
?? ??? ??? ?<artifactId>terasoluna-gfw-string</artifactId>
?? ??? ??? ?<version>5.7.0.RELEASE</version>
?? ??? ?</dependency>
?? ??? ?<!--ParameterStore -->
?? ??? ?<dependency>
?? ??? ??? ?<groupId>io.awspring.cloud</groupId>
?? ??? ??? ?<artifactId>spring-cloud-starter-aws-parameter-store-config</artifactId>
?? ??? ?</dependency>
?? ??? ?<dependency>
?? ??? ??? ?<groupId>org.springframework.cloud</groupId>
?? ??? ??? ?<artifactId>spring-cloud-starter-bootstrap</artifactId>
?? ??? ?</dependency>
??? ??? ?<!-- javax.mail -->
?? ??? ?<dependency>
? ? ? ? ? ? <groupId>com.sun.mail</groupId>
? ? ? ? ? ? <artifactId>javax.mail</artifactId>
? ? ? ? ? ? <version>1.6.2</version>
? ? ? ? </dependency>
? ? ? ??
? ? ? ? <!-- org.apache.velocity -->
? ? ? ? <dependency>
? ? ? ? ? ? <groupId>org.apache.velocity</groupId>
? ? ? ? ? ? ? ? <artifactId>velocity</artifactId>
? ? ? ? ? ? ? ? <version>1.7</version>
? ? ? ? ? ? </dependency>
?? ??? ?<!-- test -->
?? ??? ?<dependency>
?? ??? ??? ?<groupId>org.springframework.boot</groupId>
?? ??? ??? ?<artifactId>spring-boot-starter-test</artifactId>
?? ??? ??? ?<scope>test</scope>
?? ??? ??? ?<exclusions>
?? ??? ??? ??? ?<exclusion>
?? ??? ??? ??? ??? ?<groupId>org.junit.vintage</groupId>
?? ??? ??? ??? ??? ?<artifactId>junit-vintage-engine</artifactId>
?? ??? ??? ??? ?</exclusion>
?? ??? ??? ?</exclusions>
?? ??? ?</dependency>
?? ??? ?<dependency>
?? ??? ??? ?<groupId>org.json</groupId>
?? ??? ??? ?<artifactId>json</artifactId>
?? ??? ??? ?<version>20210307</version>
?? ??? ?</dependency>
?? ?</dependencies>
?? ?<build>
?? ??? ?<plugins>
?? ??? ??? ?<plugin>
?? ??? ??? ??? ?<groupId>org.springframework.boot</groupId>
?? ??? ??? ??? ?<artifactId>spring-boot-maven-plugin</artifactId>
?? ??? ??? ?</plugin>
?? ??? ??? ?<plugin>
?? ??? ??? ??? ?<groupId>com.samaxes.maven</groupId>
?? ??? ??? ??? ?<artifactId>minify-maven-plugin</artifactId>
?? ??? ??? ??? ?<version>1.7.6</version>
?? ??? ??? ??? ?<executions>
?? ??? ??? ??? ??? ?<execution>
?? ??? ??? ??? ??? ??? ?<id>minify-group-default</id>
?? ??? ??? ??? ??? ??? ?<phase>prepare-package</phase>
?? ??? ??? ??? ??? ??? ?<goals>
?? ??? ??? ??? ??? ??? ??? ?<goal>minify</goal>
?? ??? ??? ??? ??? ??? ?</goals>
?? ??? ??? ??? ??? ??? ?<configuration>
?? ??? ??? ??? ??? ??? ??? ?<webappSourceDir>${basedir}/src/main/resources</webappSourceDir>
?? ??? ??? ??? ??? ??? ??? ?<webappTargetDir>${project.build.directory}/classes</webappTargetDir>
?? ??? ??? ??? ??? ??? ??? ?<cssSourceDir>static</cssSourceDir>
?? ??? ??? ??? ??? ??? ??? ?<jsSourceDir>static</jsSourceDir>
?? ??? ??? ??? ??? ??? ??? ?<skipMerge>true</skipMerge>
?? ??? ??? ??? ??? ??? ??? ?<nosuffix>true</nosuffix>
?? ??? ??? ??? ??? ??? ??? ?<cssSourceIncludes>
?? ??? ??? ??? ??? ??? ??? ??? ?<cssSourceInclude>**/*.css</cssSourceInclude>
?? ??? ??? ??? ??? ??? ??? ?</cssSourceIncludes>
?? ??? ??? ??? ??? ??? ??? ?<cssSourceExcludes>
?? ??? ??? ??? ??? ??? ??? ??? ?<cssSourceExclude>**/*.min.css</cssSourceExclude>
?? ??? ??? ??? ??? ??? ??? ?</cssSourceExcludes>
?? ??? ??? ??? ??? ??? ??? ?<jsSourceIncludes>
?? ??? ??? ??? ??? ??? ??? ??? ?<jsSourceInclude>**/*.js</jsSourceInclude>
?? ??? ??? ??? ??? ??? ??? ?</jsSourceIncludes>
?? ??? ??? ??? ??? ??? ??? ?<jsSourceExcludes>
?? ??? ??? ??? ??? ??? ??? ??? ?<jsSourceExclude>**/*.min.js</jsSourceExclude>
?? ??? ??? ??? ??? ??? ??? ?</jsSourceExcludes>
?? ??? ??? ??? ??? ??? ?</configuration>
?? ??? ??? ??? ??? ?</execution>
?? ??? ??? ??? ?</executions>
?? ??? ??? ?</plugin>
?? ??? ?</plugins>
?? ?</build>
</project>
總結
- 上一篇: python弹性碰撞次数圆周率_高中物理
- 下一篇: html,图片下面附加文字说明