pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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>message-app</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <parent>
  10. <groupId>com.unis.springcloud</groupId>
  11. <artifactId>parent</artifactId>
  12. <version>0.0.4-SNAPSHOT</version>
  13. </parent>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.gbase8s</groupId>
  17. <artifactId>ifxjdbc</artifactId>
  18. <version>1.0</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.gbase</groupId>
  22. <artifactId>druid</artifactId>
  23. <version>1.0.28</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>mysql</groupId>
  27. <artifactId>mysql-connector-java</artifactId>
  28. <version>8.0.18</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-web</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.cloud</groupId>
  36. <artifactId>spring-cloud-starter-config</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.cloud</groupId>
  40. <artifactId>spring-cloud-config-client</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.cloud</groupId>
  44. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.unis.springcloud</groupId>
  48. <artifactId>common</artifactId>
  49. <version>1.0.0</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>io.github.openfeign.form</groupId>
  53. <artifactId>feign-form-spring</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>io.github.openfeign.form</groupId>
  57. <artifactId>feign-form</artifactId>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.cloud</groupId>
  61. <artifactId>spring-cloud-starter-openfeign</artifactId>
  62. </dependency>
  63. <dependency>
  64. <artifactId>message-client</artifactId>
  65. <groupId>com.unis.message</groupId>
  66. <version>0.0.1-SNAPSHOT</version>
  67. </dependency>
  68. <!-- <dependency>
  69. <artifactId>message-client</artifactId>
  70. <groupId>com.unis.message</groupId>
  71. <version>1.0-SNAPSHOT</version>
  72. <scope>system</scope>
  73. <systemPath>
  74. ${project.basedir}/src/main/resources/lib/message-client-1.0-SNAPSHOT.jar
  75. </systemPath>
  76. </dependency>
  77. <dependency>
  78. <artifactId>message-common</artifactId>
  79. <groupId>com.unis.message</groupId>
  80. <version>1.0-SNAPSHOT</version>
  81. <scope>system</scope>
  82. <systemPath>
  83. ${project.basedir}/src/main/resources/lib/message-common-1.0-SNAPSHOT.jar
  84. </systemPath>
  85. </dependency>-->
  86. <dependency>
  87. <groupId>org.hibernate</groupId>
  88. <artifactId>hibernate-core</artifactId>
  89. <version>5.2.17.Final</version>
  90. </dependency>
  91. </dependencies>
  92. <build>
  93. <plugins>
  94. <plugin>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-maven-plugin</artifactId>
  97. <!-- <configuration> <layout>ZIP</layout> <includes> <include> <groupId>com.unis.integration.server</groupId>
  98. <artifactId>integration-server</artifactId> </include> </includes> </configuration> -->
  99. </plugin>
  100. </plugins>
  101. <finalName>message-app</finalName>
  102. </build>
  103. <repositories>
  104. <repository>
  105. <id>spring-milestones</id>
  106. <name>Spring Milestones</name>
  107. <url>https://repo.spring.io/milestone</url>
  108. <snapshots>
  109. <enabled>false</enabled>
  110. </snapshots>
  111. </repository>
  112. </repositories>
  113. </project>