76 lines
2.7 KiB
XML
76 lines
2.7 KiB
XML
<?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>
|
||
<artifactId>ho-cloud</artifactId>
|
||
<groupId>com.hoenergy</groupId>
|
||
<version>1.0</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
|
||
<artifactId>xxl-job</artifactId>
|
||
|
||
<properties>
|
||
<maven.compiler.source>8</maven.compiler.source>
|
||
<maven.compiler.target>8</maven.compiler.target>
|
||
<common-tools.version>1.0</common-tools.version>
|
||
<business-service-api.version>1.0</business-service-api.version>
|
||
</properties>
|
||
<dependencies>
|
||
<!-- xxl-job-core -->
|
||
<dependency>
|
||
<groupId>com.xuxueli</groupId>
|
||
<artifactId>xxl-job-core</artifactId>
|
||
</dependency>
|
||
<!--工具类-->
|
||
<dependency>
|
||
<groupId>com.hoenergy</groupId>
|
||
<artifactId>common-tools</artifactId>
|
||
<version>${common-tools.version}</version>
|
||
</dependency>
|
||
<!--business-service-api-->
|
||
<dependency>
|
||
<groupId>com.hoenergy</groupId>
|
||
<artifactId>business-service-api</artifactId>
|
||
<version>${business-service-api.version}</version>
|
||
</dependency>
|
||
<!--OpenFeign-->
|
||
<dependency>
|
||
<groupId>org.springframework.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
||
</dependency>
|
||
<!-- starter-web:spring-webmvc + autoconfigure + logback + yaml + tomcat -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-web</artifactId>
|
||
</dependency>
|
||
<!--SpringCloud ailibaba nacos -->
|
||
<dependency>
|
||
<groupId>com.alibaba.cloud</groupId>
|
||
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
||
</dependency>
|
||
|
||
</dependencies>
|
||
|
||
<build>
|
||
<finalName>${project.artifactId}</finalName>
|
||
<defaultGoal>compile</defaultGoal>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
<version>2.2.12.RELEASE</version>
|
||
</plugin>
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-surefire-plugin</artifactId>
|
||
<configuration>
|
||
<skipTests>true</skipTests>
|
||
</configuration>
|
||
</plugin>
|
||
|
||
</plugins>
|
||
</build>
|
||
|
||
</project> |