pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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>cbl-client</artifactId>
  37. <groupId>com.unis.cbl</groupId>
  38. <version>1.0</version>
  39. </dependency>
  40. <dependency>
  41. <artifactId>intelligence-client</artifactId>
  42. <groupId>com.unis.intelligence</groupId>
  43. <version>0.0.1-SNAPSHOT</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.unis.inspectionresult</groupId>
  47. <artifactId>inspectionresult-client</artifactId>
  48. <version>0.0.1-SNAPSHOT</version>
  49. </dependency>
  50. <!-- http://gitlab.unissoft-grp.com:9880/technical-platform/framework/springcloud-framework/common.git feature/Response分支文件,冲突解决暂时该版本 -->
  51. <dependency>
  52. <groupId>com.unis.springcloud</groupId>
  53. <artifactId>common</artifactId>
  54. <version>1.0.0</version>
  55. </dependency>
  56. <!-- feign远程调用 -->
  57. <dependency>
  58. <groupId>org.springframework.cloud</groupId>
  59. <artifactId>spring-cloud-starter-openfeign</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-web</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.cloud</groupId>
  67. <artifactId>spring-cloud-config-client</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.springframework.cloud</groupId>
  71. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.unis.inspectionresult</groupId>
  75. <artifactId>inspectionresult-client</artifactId>
  76. <version>0.0.1-SNAPSHOT</version>
  77. <scope>compile</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.unis.inspectionresult</groupId>
  81. <artifactId>inspectionresult-common</artifactId>
  82. <version>0.0.1-SNAPSHOT</version>
  83. <scope>compile</scope>
  84. </dependency>
  85. <!--<dependency>
  86. <artifactId>framework</artifactId>
  87. <groupId>com.unis</groupId>
  88. <version>0.0.4-SNAPSHOT</version>
  89. </dependency>-->
  90. <dependency>
  91. <groupId>com.alibaba</groupId>
  92. <artifactId>easyexcel</artifactId>
  93. <version>2.1.2</version>
  94. </dependency>
  95. <!-- rabbitmq -->
  96. <dependency>
  97. <groupId>org.springframework.cloud</groupId>
  98. <artifactId>spring-cloud-starter-stream-rabbit</artifactId>
  99. </dependency>
  100. </dependencies>
  101. <build>
  102. <finalName>${project.name}</finalName>
  103. <plugins>
  104. <plugin>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-maven-plugin</artifactId>
  107. <configuration>
  108. <mainClass>com.unis.InspectionApplication</mainClass>
  109. </configuration>
  110. </plugin>
  111. </plugins>
  112. </build>
  113. <repositories>
  114. <repository>
  115. <id>spring-milestones</id>
  116. <name>Spring Milestones</name>
  117. <url>https://repo.spring.io/milestone</url>
  118. <snapshots>
  119. <enabled>false</enabled>
  120. </snapshots>
  121. </repository>
  122. </repositories>
  123. </project>