You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
129 lines
4.2 KiB
129 lines
4.2 KiB
6 months ago
|
<?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.hnac.hzims</groupId>
|
||
|
<artifactId>hzims-service</artifactId>
|
||
|
<version>4.0.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<artifactId>hzims-simulate</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<properties>
|
||
|
<maven.compiler.source>8</maven.compiler.source>
|
||
|
<maven.compiler.target>8</maven.compiler.target>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
</properties>
|
||
|
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>com.xuxueli</groupId>
|
||
|
<artifactId>xxl-job-core</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.google.guava</groupId>
|
||
|
<artifactId>failureaccess</artifactId>
|
||
|
<version>1.0.1</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springblade</groupId>
|
||
|
<artifactId>blade-common</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springblade</groupId>
|
||
|
<artifactId>blade-core-boot</artifactId>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>org.springblade</groupId>
|
||
|
<artifactId>blade-core-cloud</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springblade</groupId>
|
||
|
<artifactId>blade-starter-http</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springblade</groupId>
|
||
|
<artifactId>blade-core-cloud</artifactId>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.springblade</groupId>
|
||
|
<artifactId>blade-starter-datascope</artifactId>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>com.hnac.hzims</groupId>
|
||
|
<artifactId>equipment-api</artifactId>
|
||
|
<version>4.0.0-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>com.hnac.hzims</groupId>
|
||
|
<artifactId>weather-api</artifactId>
|
||
|
<version>4.0.0-SNAPSHOT</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>com.hzinfo.framework</groupId>
|
||
|
<artifactId>hnac-framework-mqtt-starters</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>dom4j</groupId>
|
||
|
<artifactId>dom4j</artifactId>
|
||
|
<version>1.6.1</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springblade</groupId>
|
||
|
<artifactId>blade-core-cloud</artifactId>
|
||
|
<version>5.1.1.RELEASE.fix.1</version>
|
||
|
<scope>compile</scope>
|
||
|
</dependency>
|
||
|
|
||
|
</dependencies>
|
||
|
|
||
|
|
||
|
<build>
|
||
|
<finalName>${project.name}-${project.version}</finalName>
|
||
|
<resources>
|
||
|
<resource>
|
||
|
<directory>src/main/java</directory>
|
||
|
<includes>
|
||
|
<include>**/*.xml</include>
|
||
|
</includes>
|
||
|
<filtering>false</filtering>
|
||
|
</resource>
|
||
|
</resources>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
<version>2.6.6</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<goals>
|
||
|
<goal>repackage</goal>
|
||
|
</goals>
|
||
|
<configuration>
|
||
|
<classifier>exec</classifier>
|
||
|
</configuration>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
</project>
|