pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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>iotkit-parent</artifactId>
  7. <groupId>cc.iotkit</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <relativePath>../../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>component-server</artifactId>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-web</artifactId>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.apache.pulsar</groupId>
  20. <artifactId>pulsar-client-all</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework</groupId>
  28. <artifactId>spring-context</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.slf4j</groupId>
  32. <artifactId>slf4j-api</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.projectlombok</groupId>
  36. <artifactId>lombok</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>converter</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>cc.iotkit</groupId>
  48. <artifactId>model</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>cc.iotkit</groupId>
  52. <artifactId>dao</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>cc.iotkit</groupId>
  56. <artifactId>component</artifactId>
  57. </dependency>
  58. </dependencies>
  59. </project>