2022-10-08 11:14:23 -04:00
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
2022-10-20 01:02:17 -04:00
|
|
|
|
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>
|
2023-03-30 09:02:40 -04:00
|
|
|
|
<version>2.7.10</version>
|
2022-10-20 01:02:17 -04:00
|
|
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
|
|
|
</parent>
|
2023-03-29 17:10:35 -04:00
|
|
|
|
<groupId>com.northtecom.visafn</groupId>
|
|
|
|
|
<artifactId>sharkfly-wechat-service</artifactId>
|
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
<name>SharkFly-WeChat-Service</name>
|
|
|
|
|
<description>SharkFly WeChat Official Account For North Tecom</description>
|
2022-10-20 01:02:17 -04:00
|
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
|
<license>
|
|
|
|
|
<name>The MIT license</name>
|
|
|
|
|
<url>https://opensource.org/licenses/mit-license.php</url>
|
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
|
</license>
|
|
|
|
|
</licenses>
|
|
|
|
|
|
2022-11-06 09:48:55 -05:00
|
|
|
|
<dependencyManagement>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.amazonaws</groupId>
|
|
|
|
|
<artifactId>aws-java-sdk-bom</artifactId>
|
|
|
|
|
<version>1.12.120</version>
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|
|
2022-10-20 01:02:17 -04:00
|
|
|
|
<distributionManagement>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>ossez-repo</id>
|
|
|
|
|
<url>https://repo.ossez.com/repository/maven-releases/</url>
|
|
|
|
|
</repository>
|
|
|
|
|
|
|
|
|
|
<snapshotRepository>
|
|
|
|
|
<id>ossez-repo</id>
|
|
|
|
|
<url>https://repo.ossez.com/repository/maven-snapshots/</url>
|
|
|
|
|
</snapshotRepository>
|
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
|
|
|
|
<properties>
|
2023-03-29 17:10:35 -04:00
|
|
|
|
<java.version>17</java.version>
|
2022-10-20 01:02:17 -04:00
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
2023-02-06 09:17:11 -05:00
|
|
|
|
<!-- COM.OSSEZ -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ossez.openai</groupId>
|
|
|
|
|
<artifactId>openai-j-client</artifactId>
|
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ossez.wechat</groupId>
|
|
|
|
|
<artifactId>wechat-j-open</artifactId>
|
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ossez.wechat</groupId>
|
|
|
|
|
<artifactId>wechat-j-oa</artifactId>
|
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- SPRING -->
|
2022-12-15 07:55:16 -05:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
|
|
|
</dependency>
|
2022-10-20 01:02:17 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
</dependency>
|
2022-12-15 07:55:16 -05:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
|
|
</dependency>
|
2023-02-06 09:17:11 -05:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
|
</dependency>
|
2022-10-20 01:02:17 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</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-configuration-processor</artifactId>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2022-11-06 09:48:55 -05:00
|
|
|
|
<!-- APACHE COMMONS -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
|
<version>2.11.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- GUAVA -->
|
2022-10-20 01:02:17 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
<version>31.1-jre</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2022-12-05 08:00:41 -05:00
|
|
|
|
<!-- UTILS-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
2022-12-25 03:31:13 -05:00
|
|
|
|
|
2022-10-20 01:02:17 -04:00
|
|
|
|
<!-- swagger -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springdoc</groupId>
|
|
|
|
|
<artifactId>springdoc-openapi-ui</artifactId>
|
|
|
|
|
<version>1.6.11</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2022-11-05 23:40:48 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.flagsmith</groupId>
|
|
|
|
|
<artifactId>flagsmith-java-client</artifactId>
|
|
|
|
|
<version>5.0.6</version>
|
2022-10-20 01:02:17 -04:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- hibernate enhancement -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.vladmihalcea</groupId>
|
|
|
|
|
<artifactId>hibernate-types-55</artifactId>
|
2022-11-05 23:40:48 -04:00
|
|
|
|
<version>2.20.0</version>
|
2022-10-20 01:02:17 -04:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- DATABASE Client -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mariadb.jdbc</groupId>
|
|
|
|
|
<artifactId>mariadb-java-client</artifactId>
|
|
|
|
|
<version>3.0.7</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Crawl tools -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
|
|
<artifactId>jsoup</artifactId>
|
|
|
|
|
<version>1.15.3</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!--JWT-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
|
<artifactId>jjwt</artifactId>
|
|
|
|
|
<version>0.9.1</version>
|
2022-10-23 10:46:36 -04:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.javafaker</groupId>
|
|
|
|
|
<artifactId>javafaker</artifactId>
|
|
|
|
|
<version>1.0.2</version>
|
2022-10-20 01:02:17 -04:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
|
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
|
|
|
<version>2.13.4</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2023-01-05 13:20:53 -05:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.dom4j</groupId>
|
|
|
|
|
<artifactId>dom4j</artifactId>
|
|
|
|
|
<version>2.1.3</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2022-10-30 10:49:22 -04:00
|
|
|
|
<!--aws s3-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.amazonaws</groupId>
|
|
|
|
|
<artifactId>aws-java-sdk-s3</artifactId>
|
2022-11-06 09:48:55 -05:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.amazonaws</groupId>
|
|
|
|
|
<artifactId>aws-java-sdk-ssm</artifactId>
|
2022-10-30 10:49:22 -04:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-batch</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
2022-12-25 03:31:13 -05:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-data-mongodb</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
2022-10-20 01:02:17 -04:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.mailgun</groupId>
|
|
|
|
|
<artifactId>mailgun-java</artifactId>
|
2022-11-05 23:40:48 -04:00
|
|
|
|
<version>1.0.4</version>
|
2022-10-20 01:02:17 -04:00
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!--Thymeleaf support email template -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<!-- 没有该配置,devtools 不生效 -->
|
|
|
|
|
<!-- <addResources>true</addResources>-->
|
|
|
|
|
<!-- <excludes>-->
|
|
|
|
|
<!-- <exclude>-->
|
|
|
|
|
<!-- <groupId>org.projectlombok</groupId>-->
|
|
|
|
|
<!-- <artifactId>lombok</artifactId>-->
|
|
|
|
|
<!-- </exclude>-->
|
|
|
|
|
<!-- </excludes>-->
|
|
|
|
|
<!-- <image>-->
|
|
|
|
|
<!-- <!–配置镜像名称–>-->
|
|
|
|
|
<!-- <name>repo-docker.ossez.com/docker-hub/${project.name}:${project.version}</name>-->
|
|
|
|
|
<!-- <!–镜像打包完成后自动推送到镜像仓库–>-->
|
|
|
|
|
<!-- <publish>true</publish>-->
|
|
|
|
|
<!-- </image>-->
|
|
|
|
|
<!-- <docker>-->
|
|
|
|
|
<!--<!– <host>repo-docker.ossez.com</host>–>-->
|
|
|
|
|
<!-- <tlsVerify>false</tlsVerify>-->
|
|
|
|
|
<!-- <publishRegistry>-->
|
|
|
|
|
<!-- <username>${docker.credentials.username}</username>-->
|
|
|
|
|
<!-- <password>${docker.credentials.password}</password>-->
|
|
|
|
|
<!-- <url>https://repo-docker.ossez.com/docker-hub</url>-->
|
|
|
|
|
<!-- </publishRegistry>-->
|
|
|
|
|
<!-- </docker>-->
|
|
|
|
|
</configuration>
|
|
|
|
|
<!-- <executions>-->
|
|
|
|
|
<!-- <execution>-->
|
|
|
|
|
<!-- <goals>-->
|
|
|
|
|
<!-- <goal>build-image</goal>-->
|
|
|
|
|
<!-- </goals>-->
|
|
|
|
|
<!-- </execution>-->
|
|
|
|
|
<!-- </executions>-->
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<version>3.10.1</version>
|
|
|
|
|
<configuration>
|
2023-03-31 15:54:57 -04:00
|
|
|
|
<release>${java.version}</release>
|
2022-10-20 01:02:17 -04:00
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2023-02-07 13:06:32 -05:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
|
<version>3.0.0</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>default-deploy</id>
|
|
|
|
|
<phase>deploy</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>deploy</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2022-10-20 01:02:17 -04:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>io.fabric8</groupId>
|
|
|
|
|
<artifactId>docker-maven-plugin</artifactId>
|
|
|
|
|
<version>0.40.2</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
|
|
|
|
|
<pushRegistry>repo-docker.ossez.com/docker-hub</pushRegistry>
|
|
|
|
|
<verbose>true</verbose>
|
|
|
|
|
<images>
|
|
|
|
|
<image>
|
2023-04-06 18:17:44 -04:00
|
|
|
|
<name>${project.artifactId}:${project.version}</name>
|
2022-10-20 01:02:17 -04:00
|
|
|
|
<build>
|
|
|
|
|
<dockerFileDir>${project.basedir}</dockerFileDir>
|
|
|
|
|
</build>
|
|
|
|
|
</image>
|
|
|
|
|
</images>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>default</id>
|
|
|
|
|
<phase>deploy</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>build</goal>
|
|
|
|
|
<goal>push</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2022-10-08 11:14:23 -04:00
|
|
|
|
</project>
|