From 4289b0e0ce3d56cdc29304c228926b53b7c408ae Mon Sep 17 00:00:00 2001 From: wu <731351411@qq.com> Date: 星期三, 07 八月 2024 16:28:31 +0800 Subject: [PATCH] 增加上片设备状态推送 --- hangzhoumesParent/moduleService/pom.xml | 80 ++++++++++++++++++++++++++++++++++++++++ 1 files changed, 80 insertions(+), 0 deletions(-) diff --git a/hangzhoumesParent/moduleService/pom.xml b/hangzhoumesParent/moduleService/pom.xml new file mode 100644 index 0000000..55ea5f6 --- /dev/null +++ b/hangzhoumesParent/moduleService/pom.xml @@ -0,0 +1,80 @@ +<?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>hangzhoumesParent</artifactId> + <groupId>com.mes</groupId> + <version>1.0-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> + <modelVersion>4.0.0</modelVersion> + + <artifactId>moduleService</artifactId> + <packaging>pom</packaging> + <modules> + <module>CacheGlassModule</module> + <module>CacheVerticalGlassModule</module> + <module>LoadGlassModule</module> + <module>TemperingGlassModule</module> + <module>UnLoadGlassModule</module> + <module>GlassStorageModule</module> + </modules> + + <properties> + <maven.compiler.source>8</maven.compiler.source> + <maven.compiler.target>8</maven.compiler.target> + </properties> + <dependencies> + <!--web 闇�瑕佸惎鍔ㄩ」鐩�--> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-web</artifactId> + </dependency> + + <dependency> + <groupId>org.apache.velocity</groupId> + <artifactId>velocity-engine-core</artifactId> + <version>2.0</version> + </dependency> + + <!--渚濊禆鏈嶅姟鐨勫伐鍏风被--> + <!-- <dependency>--> + <!-- <groupId>com.mes</groupId>--> + <!-- <artifactId>common</artifactId>--> + <!-- <version>1.0-SNAPSHOT</version>--> + <!-- </dependency>--> + + <dependency> + <artifactId>servicebase</artifactId> + <groupId>com.mes</groupId> + <version>1.0-SNAPSHOT</version> + </dependency> + <dependency> + <artifactId>springsecurity</artifactId> + <groupId>com.mes</groupId> + <version>1.0-SNAPSHOT</version> + </dependency> + + <!--寮�鍙戣�呭伐鍏�--> + <!-- <dependency>--> + <!-- <groupId>org.springframework.boot</groupId>--> + <!-- <artifactId>spring-boot-devtools</artifactId>--> + <!-- <optional>true</optional>--> + <!-- </dependency>--> + + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-test</artifactId> + <scope>test</scope> + </dependency> + </dependencies> + <build> + <plugins> + <plugin> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-maven-plugin</artifactId> + </plugin> + </plugins> + </build> +</project> \ No newline at end of file -- Gitblit v1.8.0