日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程资源 > 编程问答 >内容正文

编程问答

pomca

發(fā)布時(shí)間:2024/1/18 编程问答 27 豆豆
生活随笔 收集整理的這篇文章主要介紹了 pomca 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

<?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區(qū):特殊文字の集合 -->
?? ??? ?<!-- JIS X 0208 の3區(qū):英數(shù)字の集合 -->
?? ??? ?<!-- JIS X 0208 の4區(qū):ひらがなの集合 -->
?? ??? ?<!-- JIS X 0208 の6區(qū):ギリシア文字の集合 -->
?? ??? ?<!-- JIS X 0208 の7區(qū):キリル文字の集合 -->
?? ??? ?<dependency>
?? ??? ??? ?<groupId>org.terasoluna.gfw.codepoints</groupId>
?? ??? ??? ?<artifactId>terasoluna-gfw-codepoints-jisx0208</artifactId>
?? ??? ??? ?<version>5.7.0.RELEASE</version>
?? ??? ?</dependency>
?? ??? ?<!-- JIS X 0213:2004で規(guī)定される漢字10050字。第一?第二?第三?第四水準(zhǔn)漢字 -->
?? ??? ?<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>

總結(jié)

以上是生活随笔為你收集整理的pomca的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。