pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>com.sunwin</groupId>
  6. <artifactId>swismp</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <groupId>com.sunwin.swismp</groupId>
  11. <artifactId>provider</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <name>provider</name>
  14. <description>provider</description>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.sunwin.swismp</groupId>
  21. <artifactId>swismp-api</artifactId>
  22. <version>0.0.1-SNAPSHOT</version>
  23. </dependency>
  24. <!--工具类-->
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-web</artifactId>
  28. <exclusions>
  29. <exclusion>
  30. <artifactId>log4j-to-slf4j</artifactId>
  31. <groupId>org.apache.logging.log4j</groupId>
  32. </exclusion>
  33. </exclusions>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-test</artifactId>
  38. <scope>test</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.alibaba.spring.boot</groupId>
  42. <artifactId>dubbo-spring-boot-starter</artifactId>
  43. <version>2.0.0</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-jdbc</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-aop</artifactId>
  52. </dependency>
  53. <!-- postgresql-->
  54. <dependency>
  55. <groupId>org.postgresql</groupId>
  56. <artifactId>postgresql</artifactId>
  57. <scope>runtime</scope>
  58. </dependency>
  59. <!--阿里数据库连接池-->
  60. <dependency>
  61. <groupId>com.alibaba</groupId>
  62. <artifactId>druid</artifactId>
  63. <version>1.2.11</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.alibaba</groupId>
  67. <artifactId>druid-spring-boot-starter</artifactId>
  68. <version>1.2.11</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.apache.zookeeper</groupId>
  72. <artifactId>zookeeper</artifactId>
  73. <version>3.5.5</version>
  74. <exclusions>
  75. <exclusion>
  76. <artifactId>slf4j-log4j12</artifactId>
  77. <groupId>org.slf4j</groupId>
  78. </exclusion>
  79. <exclusion>
  80. <groupId>io.netty</groupId>
  81. <artifactId>netty</artifactId>
  82. </exclusion>
  83. <exclusion>
  84. <artifactId>log4j</artifactId>
  85. <groupId>log4j</groupId>
  86. </exclusion>
  87. </exclusions>
  88. </dependency>
  89. <!-- https://mvnrepository.com/artifact/org.apache.curator/curator-framework -->
  90. <dependency>
  91. <groupId>org.apache.curator</groupId>
  92. <artifactId>curator-framework</artifactId>
  93. <version>2.13.0</version>
  94. </dependency>
  95. <!-- https://mvnrepository.com/artifact/org.apache.curator/curator-recipes -->
  96. <dependency>
  97. <groupId>org.apache.curator</groupId>
  98. <artifactId>curator-recipes</artifactId>
  99. <version>2.13.0</version>
  100. </dependency>
  101. <!-- https://mvnrepository.com/artifact/org.apache.curator/curator-client -->
  102. <dependency>
  103. <groupId>org.apache.curator</groupId>
  104. <artifactId>curator-client</artifactId>
  105. <version>2.13.0</version>
  106. <exclusions>
  107. <exclusion>
  108. <groupId>com.google.guava</groupId>
  109. <artifactId>guava</artifactId>
  110. </exclusion>
  111. </exclusions>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.101tec</groupId>
  115. <artifactId>zkclient</artifactId>
  116. <version>0.10</version>
  117. </dependency>
  118. <!--mybatis-->
  119. <dependency>
  120. <groupId>org.mybatis.spring.boot</groupId>
  121. <artifactId>mybatis-spring-boot-starter</artifactId>
  122. <version>2.1.1</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.mybatis</groupId>
  126. <artifactId>mybatis-typehandlers-jsr310</artifactId>
  127. <version>1.0.2</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.jvnet.hudson</groupId>
  131. <artifactId>ganymed-ssh2</artifactId>
  132. <version>build210-hudson-1</version>
  133. </dependency>
  134. </dependencies>
  135. </project>