pom.xml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.unis.springcloud</groupId>
  7. <artifactId>inspection-app</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <parent>
  10. <groupId>com.unis.springcloud</groupId>
  11. <artifactId>parent</artifactId>
  12. <version>1.0.0</version>
  13. </parent>
  14. <dependencies>
  15. <dependency>
  16. <artifactId>base-client</artifactId>
  17. <groupId>com.unis.base</groupId>
  18. <version>0.0.2-SNAPSHOT</version>
  19. </dependency>
  20. <dependency>
  21. <artifactId>flowable-client</artifactId>
  22. <groupId>com.unis.flowable</groupId>
  23. <version>0.0.1-SNAPSHOT</version>
  24. </dependency>
  25. <dependency>
  26. <artifactId>inspectiontask-client</artifactId>
  27. <groupId>com.unis.inspectiontask</groupId>
  28. <version>0.0.1-SNAPSHOT</version>
  29. </dependency>
  30. <dependency>
  31. <artifactId>inspectionplan-client</artifactId>
  32. <groupId>com.unis.inspectionplan</groupId>
  33. <version>0.0.1-SNAPSHOT</version>
  34. </dependency>
  35. <dependency>
  36. <artifactId>inspectiontask-common</artifactId>
  37. <groupId>com.unis.inspectiontask</groupId>
  38. <version>0.0.1-SNAPSHOT</version>
  39. </dependency>
  40. <dependency>
  41. <artifactId>cbl-client</artifactId>
  42. <groupId>com.unis.cbl</groupId>
  43. <version>1.0</version>
  44. </dependency>
  45. <dependency>
  46. <artifactId>intelligence-client</artifactId>
  47. <groupId>com.unis.intelligence</groupId>
  48. <version>0.0.1-SNAPSHOT</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.unis.inspectionresult</groupId>
  52. <artifactId>inspectionresult-client</artifactId>
  53. <version>0.0.1-SNAPSHOT</version>
  54. </dependency>
  55. <!-- http://gitlab.unissoft-grp.com:9880/technical-platform/framework/springcloud-framework/common.git feature/Response分支文件,冲突解决暂时该版本 -->
  56. <dependency>
  57. <groupId>com.unis.springcloud</groupId>
  58. <artifactId>common</artifactId>
  59. <version>1.0.0</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>cn.hutool</groupId>
  63. <artifactId>hutool-all</artifactId>
  64. <version>5.0.4</version>
  65. </dependency>
  66. <!-- feign远程调用 -->
  67. <dependency>
  68. <groupId>org.springframework.cloud</groupId>
  69. <artifactId>spring-cloud-starter-openfeign</artifactId>
  70. </dependency>
  71. <dependency>
  72. <groupId>org.springframework.boot</groupId>
  73. <artifactId>spring-boot-starter-web</artifactId>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.cloud</groupId>
  77. <artifactId>spring-cloud-config-client</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.cloud</groupId>
  81. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.unis.inspectionresult</groupId>
  85. <artifactId>inspectionresult-client</artifactId>
  86. <version>0.0.1-SNAPSHOT</version>
  87. <scope>compile</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.unis.inspectionresult</groupId>
  91. <artifactId>inspectionresult-common</artifactId>
  92. <version>0.0.1-SNAPSHOT</version>
  93. <scope>compile</scope>
  94. </dependency>
  95. <!--<dependency>
  96. <artifactId>framework</artifactId>
  97. <groupId>com.unis</groupId>
  98. <version>0.0.4-SNAPSHOT</version>
  99. </dependency>-->
  100. <dependency>
  101. <groupId>com.alibaba</groupId>
  102. <artifactId>easyexcel</artifactId>
  103. <version>2.1.2</version>
  104. </dependency>
  105. <!-- 依赖gbase Jar包 -->
  106. <dependency>
  107. <groupId>com.gbase8s</groupId>
  108. <artifactId>ifxjdbc</artifactId>
  109. <version>1.0</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.gbase</groupId>
  113. <artifactId>druid</artifactId>
  114. <version>1.0.28</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>mysql</groupId>
  118. <artifactId>mysql-connector-java</artifactId>
  119. <version>8.0.18</version>
  120. </dependency>
  121. <!-- rabbitmq -->
  122. <dependency>
  123. <groupId>org.springframework.cloud</groupId>
  124. <artifactId>spring-cloud-starter-stream-rabbit</artifactId>
  125. </dependency>
  126. </dependencies>
  127. <build>
  128. <finalName>${project.name}</finalName>
  129. <plugins>
  130. <plugin>
  131. <groupId>org.springframework.boot</groupId>
  132. <artifactId>spring-boot-maven-plugin</artifactId>
  133. <configuration>
  134. <mainClass>com.unis.InspectionApplication</mainClass>
  135. </configuration>
  136. </plugin>
  137. </plugins>
  138. </build>
  139. <repositories>
  140. <repository>
  141. <id>spring-milestones</id>
  142. <name>Spring Milestones</name>
  143. <url>https://repo.spring.io/milestone</url>
  144. <snapshots>
  145. <enabled>false</enabled>
  146. </snapshots>
  147. </repository>
  148. </repositories>
  149. </project>