pom.xml 5.0 KB

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