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>
|
2022-10-29 05:42:24 -04:00
|
|
|
|
<version>2.7.5</version>
|
2022-10-20 01:02:17 -04:00
|
|
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
|
|
|
</parent>
|
|
|
|
|
<groupId>com.northtecom.visatrack</groupId>
|
|
|
|
|
<artifactId>api</artifactId>
|
2023-01-04 18:24:51 -05:00
|
|
|
|
<version>0.0.5-SNAPSHOT</version>
|
2022-10-20 01:02:17 -04:00
|
|
|
|
<name>usvisartrackapi</name>
|
|
|
|
|
<description>Visa track API project for North Tecom</description>
|
|
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
<java.version>11</java.version>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
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>
|
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>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
|
|
<version>4.10.0</version>
|
|
|
|
|
</dependency>
|
2022-12-25 03:31:13 -05:00
|
|
|
|
<!-- <dependency>-->
|
|
|
|
|
<!-- <groupId>com.ossez</groupId>-->
|
|
|
|
|
<!-- <artifactId>sitemap-j</artifactId>-->
|
|
|
|
|
<!-- <version>1.0.1-SNAPSHOT</version>-->
|
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
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>
|
|
|
|
|
|
|
|
|
|
<!-- hutool -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
<artifactId>hutool-all</artifactId>
|
2022-11-05 23:40:48 -04:00
|
|
|
|
<version>5.8.9</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<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>
|
2022-10-09 11:26:03 -04:00
|
|
|
|
|
2022-10-08 11:14:23 -04:00
|
|
|
|
|
2022-10-20 01:02:17 -04:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<!-- 没有该配置,devtools 不生效 -->
|
|
|
|
|
<fork>true</fork>
|
|
|
|
|
<!-- <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>
|
|
|
|
|
<source>11</source>
|
2022-10-20 01:05:20 -04:00
|
|
|
|
<target>11</target>
|
2022-10-20 01:02:17 -04:00
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<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>
|
|
|
|
|
<name>${project.name}:${project.version}</name>
|
|
|
|
|
<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>
|