pom.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.unis.springcloud</groupId>
  7. <artifactId>parent</artifactId>
  8. <version>0.0.4-SNAPSHOT</version>
  9. </parent>
  10. <groupId>com.unis.intelligence</groupId>
  11. <artifactId>intelligence-app</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <packaging>jar</packaging>
  14. <name>intelligence-app</name>
  15. <url>http://maven.apache.org</url>
  16. <dependencies>
  17. <dependency>
  18. <artifactId>intelligence-client</artifactId>
  19. <groupId>com.unis.intelligence</groupId>
  20. <version>0.0.1-SNAPSHOT</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.unis.springcloud</groupId>
  24. <artifactId>common</artifactId>
  25. <version>0.0.5-SNAPSHOT</version>
  26. </dependency>
  27. <!-- feign远程调用 -->
  28. <dependency>
  29. <groupId>org.springframework.cloud</groupId>
  30. <artifactId>spring-cloud-starter-openfeign</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-web</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.cloud</groupId>
  38. <artifactId>spring-cloud-config-client</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.cloud</groupId>
  42. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  43. </dependency>
  44. <dependency>
  45. <artifactId>flowable-client</artifactId>
  46. <groupId>com.unis.flowable</groupId>
  47. <version>0.0.1-SNAPSHOT</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.unis.base</groupId>
  51. <artifactId>base-client</artifactId>
  52. <version>0.0.2-SNAPSHOT</version>
  53. <scope>compile</scope>
  54. </dependency>
  55. <!-- 依赖gbase Jar包-->
  56. <dependency>
  57. <groupId>com.gbase8s</groupId>
  58. <artifactId>ifxjdbc</artifactId>
  59. <version>1.0</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.gbase</groupId>
  63. <artifactId>druid</artifactId>
  64. <version>1.0.28</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>mysql</groupId>
  68. <artifactId>mysql-connector-java</artifactId>
  69. <version>8.0.18</version>
  70. </dependency>
  71. </dependencies>
  72. <build>
  73. <finalName>${project.name}</finalName>
  74. <plugins>
  75. <plugin>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-maven-plugin</artifactId>
  78. <configuration>
  79. <mainClass>com.unis.intelligence.app.IntelligenceApp</mainClass>
  80. </configuration>
  81. </plugin>
  82. </plugins>
  83. </build>
  84. <repositories>
  85. <repository>
  86. <id>spring-milestones</id>
  87. <name>Spring Milestones</name>
  88. <url>https://repo.spring.io/milestone</url>
  89. <snapshots>
  90. <enabled>false</enabled>
  91. </snapshots>
  92. </repository>
  93. </repositories>
  94. </project>