pom.xml 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Copyright 2016-present the original author or authors.
  4. ~
  5. ~ Licensed under the Apache License, Version 2.0 (the "License");
  6. ~ you may not use this file except in compliance with the License.
  7. ~ You may obtain a copy of the License at
  8. ~
  9. ~ https://www.apache.org/licenses/LICENSE-2.0
  10. ~
  11. ~ Unless required by applicable law or agreed to in writing, software
  12. ~ distributed under the License is distributed on an "AS IS" BASIS,
  13. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. ~ See the License for the specific language governing permissions and
  15. ~ limitations under the License.
  16. -->
  17. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  18. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  19. <modelVersion>4.0.0</modelVersion>
  20. <parent>
  21. <groupId>io.github.pnoker</groupId>
  22. <artifactId>dc3-center</artifactId>
  23. <version>2023.4.5</version>
  24. </parent>
  25. <artifactId>dc3-center-manager</artifactId>
  26. <packaging>jar</packaging>
  27. <description>IOT DC3 平台 全部设备集合管理服务,包括设备组注册、权限管理、设备管理等功能。</description>
  28. <dependencies>
  29. <!-- DC3 Api Manager -->
  30. <dependency>
  31. <groupId>io.github.pnoker</groupId>
  32. <artifactId>dc3-api-manager</artifactId>
  33. </dependency>
  34. <!-- DC3 Api Auth -->
  35. <dependency>
  36. <groupId>io.github.pnoker</groupId>
  37. <artifactId>dc3-api-auth</artifactId>
  38. </dependency>
  39. <!-- DC3 Api Data -->
  40. <dependency>
  41. <groupId>io.github.pnoker</groupId>
  42. <artifactId>dc3-api-data</artifactId>
  43. </dependency>
  44. <!-- DC3 Common RabbitMQ -->
  45. <dependency>
  46. <groupId>io.github.pnoker</groupId>
  47. <artifactId>dc3-common-rabbitmq</artifactId>
  48. </dependency>
  49. <!-- DC3 Common MySQL -->
  50. <dependency>
  51. <groupId>io.github.pnoker</groupId>
  52. <artifactId>dc3-common-mysql</artifactId>
  53. </dependency>
  54. <!-- DC3 Common Redis -->
  55. <dependency>
  56. <groupId>io.github.pnoker</groupId>
  57. <artifactId>dc3-common-redis</artifactId>
  58. </dependency>
  59. <!-- DC3 Common Mongo -->
  60. <dependency>
  61. <groupId>io.github.pnoker</groupId>
  62. <artifactId>dc3-common-mongo</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.alibaba.fastjson2</groupId>
  66. <artifactId>fastjson2</artifactId>
  67. <version>2.0.25</version>
  68. </dependency>
  69. <!--webService接口相关-->
  70. <dependency>
  71. <groupId>commons-discovery</groupId>
  72. <artifactId>commons-discovery</artifactId>
  73. <version>0.2</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.axis</groupId>
  77. <artifactId>axis</artifactId>
  78. <version>1.4</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.apache.axis</groupId>
  82. <artifactId>axis-jaxrpc</artifactId>
  83. <version>1.4</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.apache.axis</groupId>
  87. <artifactId>axis-saaj</artifactId>
  88. <version>1.4</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>wsdl4j</groupId>
  92. <artifactId>wsdl4j</artifactId>
  93. <version>1.6.3</version>
  94. </dependency>
  95. </dependencies>
  96. </project>