pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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>base-app</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <name>base-app</name>
  10. <url>http://maven.apache.org</url>
  11. <parent>
  12. <groupId>com.unis.springcloud</groupId>
  13. <artifactId>parent</artifactId>
  14. <version>0.0.4-SNAPSHOT</version>
  15. </parent>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.hibernate</groupId>
  19. <artifactId>hibernate-validator</artifactId>
  20. <version>5.1.0.Final</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.unis.springcloud</groupId>
  24. <artifactId>common</artifactId>
  25. <version>1.0.1</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.unis.flowable</groupId>
  29. <artifactId>flowable-client</artifactId>
  30. <version>0.0.1-SNAPSHOT</version>
  31. </dependency>
  32. <!-- feign远程调用 -->
  33. <dependency>
  34. <groupId>org.springframework.cloud</groupId>
  35. <artifactId>spring-cloud-starter-openfeign</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-web</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.cloud</groupId>
  43. <artifactId>spring-cloud-config-client</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.cloud</groupId>
  47. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.projectlombok</groupId>
  51. <artifactId>lombok</artifactId>
  52. </dependency>
  53. <dependency>
  54. <artifactId>indicator-client</artifactId>
  55. <groupId>com.unis.indicator</groupId>
  56. <version>1.0-SNAPSHOT</version>
  57. </dependency>
  58. <dependency>
  59. <artifactId>cbl-client</artifactId>
  60. <groupId>com.unis.cbl</groupId>
  61. <version>1.0</version>
  62. </dependency>
  63. <dependency>
  64. <artifactId>base-client</artifactId>
  65. <groupId>com.unis.base</groupId>
  66. <version>0.0.2-SNAPSHOT</version>
  67. </dependency>
  68. <!--<dependency>
  69. <artifactId>framework</artifactId>
  70. <groupId>com.unis</groupId>
  71. <version>0.0.4-SNAPSHOT</version>
  72. </dependency>-->
  73. </dependencies>
  74. <build>
  75. <finalName>${project.name}</finalName>
  76. <plugins>
  77. <plugin>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-maven-plugin</artifactId>
  80. <configuration>
  81. <mainClass>com.unis.base.app.BaseApp</mainClass>
  82. </configuration>
  83. </plugin>
  84. </plugins>
  85. </build>
  86. <repositories>
  87. <repository>
  88. <id>spring-milestones</id>
  89. <name>Spring Milestones</name>
  90. <url>https://repo.spring.io/milestone</url>
  91. <snapshots>
  92. <enabled>false</enabled>
  93. </snapshots>
  94. </repository>
  95. </repositories>
  96. </project>