pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.wsm</groupId>
  6. <artifactId>wsm-admin-web</artifactId>
  7. <version>1.0.0</version>
  8. <packaging>jar</packaging>
  9. <repositories>
  10. <repository>
  11. <id>nexus-aliyun</id>
  12. <url>http://maven.aliyun.com/nexus/content/groups/public</url>
  13. </repository>
  14. </repositories>
  15. <name>wsm-admin-web</name>
  16. <description>wsm admin web project</description>
  17. <parent>
  18. <groupId>com.wsm</groupId>
  19. <artifactId>wsm-base</artifactId>
  20. <version>1.0.0</version>
  21. <relativePath>../pom.xml</relativePath>
  22. </parent>
  23. <properties>
  24. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  25. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  26. <java.version>1.8</java.version>
  27. </properties>
  28. <dependencies>
  29. <dependency>
  30. <groupId>com.wsm</groupId>
  31. <artifactId>wsm-common</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.wsm</groupId>
  35. <artifactId>wsm-admin-dao</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.wsm</groupId>
  39. <artifactId>wsm-admin-service</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.github.theborakompanioni</groupId>
  43. <artifactId>thymeleaf-extras-shiro</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-websocket</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.eclipse.paho</groupId>
  51. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  52. <version>1.2.0</version>
  53. </dependency>
  54. </dependencies>
  55. </project>