2023-11-02 16:33:24 +08:00
|
|
|
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<parent>
|
|
|
|
<groupId>com.haitonggauto.rtosc</groupId>
|
|
|
|
<artifactId>nuzar-customer</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>nuzar-customer-controller</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
|
<image.version>latest</image.version>
|
|
|
|
<docker.buildArg.artifactId>${project.artifactId}</docker.buildArg.artifactId>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- business -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.haitonggauto.rtosc</groupId>
|
|
|
|
<artifactId>nuzar-customer-business</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!-- 依赖web -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.nuzar</groupId>
|
|
|
|
<artifactId>nuzar-web-starter</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.nuzar</groupId>
|
|
|
|
<artifactId>nuzar-nacos-starter</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.nuzar</groupId>
|
|
|
|
<artifactId>nuzar-swagger-starter</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.itextpdf</groupId>
|
|
|
|
<artifactId>itext7-core</artifactId>
|
|
|
|
<version>${itext.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.asynchttpclient/async-http-client -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.asynchttpclient</groupId>
|
|
|
|
<artifactId>async-http-client</artifactId>
|
|
|
|
<version>2.12.3</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.nuzar</groupId>
|
|
|
|
<artifactId>nuzar-echo-starter</artifactId>
|
|
|
|
<!-- <version>${nuzar.cloud.version}</version>-->
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.nuzar</groupId>
|
|
|
|
<artifactId>nuzar-redis-starter</artifactId>
|
|
|
|
<!-- <version>${nuzar.cloud.version}</version>-->
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>jakarta.json</groupId>
|
|
|
|
<artifactId>jakarta.json-api</artifactId>
|
|
|
|
<version>2.0.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<artifactId>elasticsearch-rest-client</artifactId>
|
|
|
|
<groupId>org.elasticsearch.client</groupId>
|
|
|
|
<version>7.17.2</version>
|
|
|
|
</dependency>
|
2024-03-12 13:05:03 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.nuzar</groupId>
|
|
|
|
<artifactId>nuzar-xxl-starter</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.groovy</groupId>
|
|
|
|
<artifactId>groovy</artifactId>
|
|
|
|
<version>4.0.19</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
<version>2.9.0</version>
|
|
|
|
</dependency>
|
2023-11-02 16:33:24 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<version>2.6.11</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>repackage</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|