123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.wsm</groupId>
- <artifactId>wsm-admin-web</artifactId>
- <version>1.0.0</version>
- <packaging>jar</packaging>
- <repositories>
- <repository>
- <id>nexus-aliyun</id>
- <url>http://maven.aliyun.com/nexus/content/groups/public</url>
- </repository>
- </repositories>
- <name>wsm-admin-web</name>
- <description>wsm admin web project</description>
- <parent>
- <groupId>com.wsm</groupId>
- <artifactId>wsm-base</artifactId>
- <version>1.0.0</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <java.version>1.8</java.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.wsm</groupId>
- <artifactId>wsm-common</artifactId>
- </dependency>
- <dependency>
- <groupId>com.wsm</groupId>
- <artifactId>wsm-admin-dao</artifactId>
- </dependency>
- <dependency>
- <groupId>com.wsm</groupId>
- <artifactId>wsm-admin-service</artifactId>
- </dependency>
- <dependency>
- <groupId>com.github.theborakompanioni</groupId>
- <artifactId>thymeleaf-extras-shiro</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-websocket</artifactId>
- </dependency>
- <dependency>
- <groupId>org.eclipse.paho</groupId>
- <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
- <version>1.2.0</version>
- </dependency>
- </dependencies>
- </project>
|