pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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.inspectiontask</groupId>
  9. <artifactId>inspectiontask-service</artifactId>
  10. <version>0.0.1-SNAPSHOT</version>
  11. </parent>
  12. <artifactId>inspectiontask-server</artifactId>
  13. <name>inspectiontask-server</name>
  14. <!-- 张琪 maven 配置Hibernate -->
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.alibaba</groupId>
  18. <artifactId>druid-spring-boot-starter</artifactId>
  19. <version>1.1.10</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.oracle</groupId>
  23. <artifactId>ojdbc14</artifactId>
  24. <version>10.2.0.5.0</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.hibernate</groupId>
  28. <artifactId>hibernate-core</artifactId>
  29. </dependency>
  30. <dependency>
  31. <artifactId>inspectiontask-common</artifactId>
  32. <groupId>com.unis.inspectiontask</groupId>
  33. <version>0.0.1-SNAPSHOT</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-web</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.cloud</groupId>
  41. <artifactId>spring-cloud-commons</artifactId>
  42. </dependency>
  43. <!-- 依赖gbase Jar包 -->
  44. <!-- <dependency>-->
  45. <!-- <groupId>com.gbase8s</groupId>-->
  46. <!-- <artifactId>ifxjdbc</artifactId>-->
  47. <!-- <version>1.0</version>-->
  48. <!-- </dependency>-->
  49. <!-- <dependency>-->
  50. <!-- <groupId>com.gbase</groupId>-->
  51. <!-- <artifactId>druid</artifactId>-->
  52. <!-- <version>1.0.28</version>-->
  53. <!-- </dependency>-->
  54. <!-- ojdbc7数据源 -->
  55. <!-- <dependency>-->
  56. <!-- <groupId>com.alibaba</groupId>-->
  57. <!-- <artifactId>druid-spring-boot-starter</artifactId>-->
  58. <!-- </dependency>-->
  59. <!-- <dependency>-->
  60. <!-- <groupId>cn.easyproject</groupId>-->
  61. <!-- <artifactId>ojdbc7</artifactId>-->
  62. <!-- </dependency>-->
  63. <dependency>
  64. <groupId>org.mybatis.spring.boot</groupId>
  65. <artifactId>mybatis-spring-boot-starter</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>tk.mybatis</groupId>
  69. <artifactId>mapper-spring-boot-starter</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework.cloud</groupId>
  73. <artifactId>spring-cloud-config-client</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.cloud</groupId>
  77. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.projectlombok</groupId>
  81. <artifactId>lombok</artifactId>
  82. <!--<optional>true</optional>-->
  83. </dependency>
  84. <dependency>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-starter-test</artifactId>
  87. <scope>test</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-starter-web</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.alibaba</groupId>
  95. <artifactId>fastjson</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.google.guava</groupId>
  99. <artifactId>guava</artifactId>
  100. <version>26.0-jre</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.apache.commons</groupId>
  104. <artifactId>commons-lang3</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.github.pagehelper</groupId>
  108. <artifactId>pagehelper-spring-boot-starter</artifactId>
  109. <version>1.3.1</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.springframework.boot</groupId>
  113. <artifactId>spring-boot-devtools</artifactId>
  114. <optional>true</optional>
  115. <scope>true</scope>
  116. </dependency>
  117. <!-- rabbitmq -->
  118. <dependency>
  119. <groupId>org.springframework.cloud</groupId>
  120. <artifactId>spring-cloud-starter-stream-rabbit</artifactId>
  121. </dependency>
  122. <!-- rabbitmq -->
  123. </dependencies>
  124. <build>
  125. <finalName>${project.name}</finalName>
  126. <plugins>
  127. <plugin>
  128. <groupId>org.springframework.boot</groupId>
  129. <artifactId>spring-boot-maven-plugin</artifactId>
  130. <configuration>
  131. <mainClass>com.unis.inspectiontask.server.InspectiontaskServer</mainClass>
  132. </configuration>
  133. </plugin>
  134. <plugin>
  135. <groupId>org.apache.maven.plugins</groupId>
  136. <artifactId>maven-surefire-plugin</artifactId>
  137. <configuration>
  138. <testFailureIgnore>true</testFailureIgnore>
  139. </configuration>
  140. </plugin>
  141. </plugins>
  142. </build>
  143. </project>