pom.xml 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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>sailun-allsteel-sys-provider</artifactId>
  7. <groupId>io.platform.sailun.allsteel</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>io.platform.sailun.allsteel</groupId>
  12. <artifactId>sailun-allsteel-sys-service</artifactId>
  13. <version>1.0-SNAPSHOT</version>
  14. <packaging>jar</packaging>
  15. <dependencies>
  16. <dependency>
  17. <groupId>io.platform.sailun.allsteel</groupId>
  18. <artifactId>sailun-allsteel-sys-api</artifactId>
  19. <version>1.0-SNAPSHOT</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-test</artifactId>
  24. <scope>test</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.boot</groupId>
  28. <artifactId>spring-boot-starter-web</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-aop</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework</groupId>
  36. <artifactId>spring-context-support</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-configuration-processor</artifactId>
  41. <optional>true</optional>
  42. </dependency>
  43. <dependency>
  44. <groupId>io.platform.spring.boot</groupId>
  45. <artifactId>dubbo-spring-boot-starter</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.101tec</groupId>
  49. <artifactId>zkclient</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.apache.curator</groupId>
  53. <artifactId>curator-framework</artifactId>
  54. </dependency>
  55. <!-- mybatis-plus begin -->
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-jdbc</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.baomidou</groupId>
  62. <artifactId>mybatis-plus-boot-starter</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.baomidou</groupId>
  66. <artifactId>mybatis-plus</artifactId>
  67. </dependency>
  68. <!--<dependency>-->
  69. <!--<groupId>com.oracle</groupId>-->
  70. <!--<artifactId>ojdbc14</artifactId>-->
  71. <!--<version>10.2.0.3.0</version>-->
  72. <!--</dependency>-->
  73. <dependency>
  74. <groupId>com.oracle</groupId>
  75. <artifactId>ojdbc6</artifactId>
  76. <version>11.2.0.1.0</version>
  77. </dependency>
  78. <!--<dependency>-->
  79. <!--<groupId>oracle</groupId>-->
  80. <!--<artifactId>oracle-jdbc</artifactId>-->
  81. <!--<version>12.1.0.2</version>-->
  82. <!--</dependency>-->
  83. <dependency>
  84. <groupId>com.alibaba</groupId>
  85. <artifactId>druid</artifactId>
  86. <version>1.1.10</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.alibaba</groupId>
  90. <artifactId>fastjson</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-starter-data-redis</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>junit</groupId>
  98. <artifactId>junit</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-test</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.apache.shiro</groupId>
  106. <artifactId>shiro-core</artifactId>
  107. </dependency>
  108. <dependency>
  109. <groupId>cn.jpush.api</groupId>
  110. <artifactId>jpush-client</artifactId>
  111. <version>3.3.10</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>cn.jpush.api</groupId>
  115. <artifactId>jiguang-common</artifactId>
  116. <version>1.1.4</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>io.netty</groupId>
  120. <artifactId>netty-all</artifactId>
  121. <version>4.1.6.Final</version>
  122. <scope>compile</scope>
  123. </dependency>
  124. </dependencies>
  125. <build>
  126. <plugins>
  127. <plugin>
  128. <groupId>org.springframework.boot</groupId>
  129. <artifactId>spring-boot-maven-plugin</artifactId>
  130. <configuration>
  131. <fork>true</fork>
  132. </configuration>
  133. </plugin>
  134. <plugin>
  135. <groupId>org.apache.maven.plugins</groupId>
  136. <artifactId>maven-deploy-plugin</artifactId>
  137. <configuration>
  138. <skip>true</skip>
  139. </configuration>
  140. </plugin>
  141. </plugins>
  142. </build>
  143. </project>