pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>org.jetlinks.community</groupId>
  8. <artifactId>jetlinks-manager</artifactId>
  9. <version>2.0.0-SNAPSHOT</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>device-manager</artifactId>
  13. <build>
  14. <plugins>
  15. <plugin>
  16. <groupId>org.apache.maven.plugins</groupId>
  17. <artifactId>maven-resources-plugin</artifactId>
  18. <configuration>
  19. <nonFilteredFileExtensions>
  20. <nonFilteredFileExtension>zip</nonFilteredFileExtension>
  21. <nonFilteredFileExtension>jar</nonFilteredFileExtension>
  22. </nonFilteredFileExtensions>
  23. </configuration>
  24. </plugin>
  25. </plugins>
  26. </build>
  27. <dependencies>
  28. <dependency>
  29. <groupId>org.hswebframework.web</groupId>
  30. <artifactId>hsweb-authorization-api</artifactId>
  31. <version>${hsweb.framework.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>${project.groupId}</groupId>
  35. <artifactId>elasticsearch-component</artifactId>
  36. <version>${project.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>${project.groupId}</groupId>
  40. <artifactId>io-component</artifactId>
  41. <version>${project.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.jetlinks</groupId>
  45. <artifactId>jetlinks-supports</artifactId>
  46. <version>${jetlinks.version}</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.jetlinks</groupId>
  50. <artifactId>jetlinks-core</artifactId>
  51. <version>${jetlinks.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.hswebframework.web</groupId>
  55. <artifactId>hsweb-starter</artifactId>
  56. <version>${hsweb.framework.version}</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>io.r2dbc</groupId>
  60. <artifactId>r2dbc-h2</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.hswebframework</groupId>
  64. <artifactId>hsweb-easy-orm-rdb</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>${project.groupId}</groupId>
  68. <artifactId>gateway-component</artifactId>
  69. <version>${project.version}</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.github.ben-manes.caffeine</groupId>
  73. <artifactId>caffeine</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.jetlinks.community</groupId>
  77. <artifactId>protocol-component</artifactId>
  78. <version>${project.version}</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.jetlinks.community</groupId>
  82. <artifactId>rule-engine-component</artifactId>
  83. <version>${project.version}</version>
  84. <scope>compile</scope>
  85. </dependency>
  86. </dependencies>
  87. </project>