pom.xml 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <?xml version="1.0"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0"
  5. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  6. <modelVersion>4.0.0</modelVersion>
  7. <parent>
  8. <groupId>com.unis.intelligence</groupId>
  9. <artifactId>intelligence-service</artifactId>
  10. <version>0.0.1-SNAPSHOT</version>
  11. </parent>
  12. <artifactId>intelligence-server</artifactId>
  13. <name>intelligence-server</name>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.alibaba</groupId>
  17. <artifactId>druid-spring-boot-starter</artifactId>
  18. <version>1.1.10</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.oracle</groupId>
  22. <artifactId>ojdbc14</artifactId>
  23. <version>10.2.0.5.0</version>
  24. </dependency>
  25. <dependency>
  26. <artifactId>intelligence-common</artifactId>
  27. <groupId>com.unis.intelligence</groupId>
  28. <version>${intelligence-service.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.unis.springcloud</groupId>
  32. <artifactId>common</artifactId>
  33. <version>1.0.0</version>
  34. <exclusions>
  35. <exclusion>
  36. <groupId>org.hibernate</groupId>
  37. <artifactId>hibernate-validator</artifactId>
  38. </exclusion>
  39. </exclusions>
  40. </dependency>
  41. <!-- 依赖gbase Jar包-->
  42. <!-- <dependency>-->
  43. <!-- <groupId>com.gbase8s</groupId>-->
  44. <!-- <artifactId>ifxjdbc</artifactId>-->
  45. <!-- <version>1.0</version>-->
  46. <!-- </dependency>-->
  47. <!-- <dependency>-->
  48. <!-- <groupId>com.gbase</groupId>-->
  49. <!-- <artifactId>druid</artifactId>-->
  50. <!-- <version>1.0.28</version>-->
  51. <!-- </dependency>-->
  52. <!-- <dependency>-->
  53. <!-- <groupId>org.springframework.boot</groupId>-->
  54. <!-- <artifactId>spring -boot-starter-data-jpa</artifactId>-->
  55. <!-- </dependency>-->
  56. <dependency>
  57. <groupId>org.hibernate</groupId>
  58. <artifactId>hibernate-core</artifactId>
  59. </dependency>
  60. <!-- ojdbc7数据源 -->
  61. <!-- <dependency>-->
  62. <!-- <groupId>com.alibaba</groupId>-->
  63. <!-- <artifactId>druid-spring-boot-starter</artifactId>-->
  64. <!-- </dependency>-->
  65. <!-- <dependency>-->
  66. <!-- <groupId>cn.easyproject</groupId>-->
  67. <!-- <artifactId>ojdbc7</artifactId>-->
  68. <!-- </dependency>-->
  69. <dependency>
  70. <groupId>org.springframework.boot</groupId>
  71. <artifactId>spring-boot-starter-web</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.mybatis.spring.boot</groupId>
  75. <artifactId>mybatis-spring-boot-starter</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>tk.mybatis</groupId>
  79. <artifactId>mapper-spring-boot-starter</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.cloud</groupId>
  83. <artifactId>spring-cloud-config-client</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.springframework.cloud</groupId>
  87. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.projectlombok</groupId>
  91. <artifactId>lombok</artifactId>
  92. <!--<optional>true</optional>-->
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-starter-test</artifactId>
  97. <scope>test</scope>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.alibaba</groupId>
  101. <artifactId>fastjson</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.google.guava</groupId>
  105. <artifactId>guava</artifactId>
  106. <version>26.0-jre</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.apache.commons</groupId>
  110. <artifactId>commons-lang3</artifactId>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.github.pagehelper</groupId>
  114. <artifactId>pagehelper-spring-boot-starter</artifactId>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.springframework.boot</groupId>
  118. <artifactId>spring-boot-devtools</artifactId>
  119. <optional>true</optional>
  120. <scope>true</scope>
  121. </dependency>
  122. <!-- rabbitmq -->
  123. <dependency>
  124. <groupId>org.springframework.cloud</groupId>
  125. <artifactId>spring-cloud-starter-stream-rabbit</artifactId>
  126. </dependency>
  127. <!--<dependency>
  128. <groupId>org.springframework.cloud</groupId>
  129. <artifactId>spring-cloud-openfeign-core</artifactId>
  130. <version>2.1.4.RELEASE</version>
  131. <scope>compile</scope>
  132. </dependency>-->
  133. <!-- rabbitmq -->
  134. <dependency>
  135. <groupId>org.springframework.cloud</groupId>
  136. <artifactId>spring-cloud-starter-openfeign</artifactId>
  137. </dependency>
  138. <dependency>
  139. <groupId>io.github.openfeign.form</groupId>
  140. <artifactId>feign-form-spring</artifactId>
  141. </dependency>
  142. </dependencies>
  143. <build>
  144. <finalName>${project.name}</finalName>
  145. <plugins>
  146. <plugin>
  147. <groupId>org.springframework.boot</groupId>
  148. <artifactId>spring-boot-maven-plugin</artifactId>
  149. <configuration>
  150. <mainClass>com.unis.intelligence.server.IntelligenceServer</mainClass>
  151. </configuration>
  152. </plugin>
  153. <plugin>
  154. <groupId>org.apache.maven.plugins</groupId>
  155. <artifactId>maven-surefire-plugin</artifactId>
  156. <configuration>
  157. <testFailureIgnore>true</testFailureIgnore>
  158. </configuration>
  159. </plugin>
  160. </plugins>
  161. </build>
  162. </project>