pom.xml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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-auth</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-web</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.github.ben-manes.caffeine</groupId>
  23. <artifactId>caffeine</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.projectlombok</groupId>
  27. <artifactId>lombok</artifactId>
  28. <optional>true</optional>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.apache.commons</groupId>
  32. <artifactId>commons-lang3</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>commons-codec</groupId>
  36. <artifactId>commons-codec</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>commons-beanutils</groupId>
  40. <artifactId>commons-beanutils</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.bouncycastle</groupId>
  44. <artifactId>bcprov-jdk15on</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>joda-time</groupId>
  48. <artifactId>joda-time</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>cc.iotkit</groupId>
  52. <artifactId>common</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>cc.iotkit</groupId>
  56. <artifactId>model</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>junit</groupId>
  60. <artifactId>junit</artifactId>
  61. <scope>test</scope>
  62. </dependency>
  63. </dependencies>
  64. <build>
  65. <plugins>
  66. <plugin>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-maven-plugin</artifactId>
  69. <configuration>
  70. <excludes>
  71. <exclude>
  72. <groupId>org.projectlombok</groupId>
  73. <artifactId>lombok</artifactId>
  74. </exclude>
  75. </excludes>
  76. </configuration>
  77. </plugin>
  78. </plugins>
  79. </build>
  80. </project>