pom.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>device-server</artifactId>
  7. <groupId>cc.iotkit</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>mqtt-server</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-web</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.projectlombok</groupId>
  19. <artifactId>lombok</artifactId>
  20. <optional>true</optional>
  21. </dependency>
  22. <dependency>
  23. <groupId>commons-codec</groupId>
  24. <artifactId>commons-codec</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.bouncycastle</groupId>
  28. <artifactId>bcprov-jdk15on</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.eclipse.paho</groupId>
  32. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>cc.iotkit</groupId>
  36. <artifactId>model</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>cc.iotkit</groupId>
  40. <artifactId>common</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>cc.iotkit</groupId>
  44. <artifactId>device-api</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>cc.iotkit</groupId>
  48. <artifactId>gateway-client</artifactId>
  49. </dependency>
  50. </dependencies>
  51. <build>
  52. <plugins>
  53. <plugin>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-maven-plugin</artifactId>
  56. <configuration>
  57. <excludes>
  58. <exclude>
  59. <groupId>org.projectlombok</groupId>
  60. <artifactId>lombok</artifactId>
  61. </exclude>
  62. </excludes>
  63. </configuration>
  64. </plugin>
  65. </plugins>
  66. </build>
  67. </project>