pom.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. <parent>
  6. <groupId>com.lc.ibps.cloud</groupId>
  7. <artifactId>ibps-basic-root</artifactId>
  8. <version>3.3.7-LC.RELEASE</version>
  9. <relativePath>../../pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>ibps-basic-config</artifactId>
  13. <properties>
  14. <docker.repostory>bpmhome.cn</docker.repostory>
  15. <docker.registry.name>lc</docker.registry.name>
  16. <maven.build.timestamp.format>yyyyMMdd-HHmmss</maven.build.timestamp.format>
  17. <java.version>1.8</java.version>
  18. <maven.compiler.source>1.8</maven.compiler.source>
  19. <maven.compiler.target>1.8</maven.compiler.target>
  20. <undertow.version>1.4.0.Final</undertow.version>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.springframework.cloud</groupId>
  25. <artifactId>spring-cloud-context</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework</groupId>
  29. <artifactId>spring-context</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-autoconfigure</artifactId>
  34. <scope>provided</scope>
  35. </dependency>
  36. <!--
  37. <dependency>
  38. <groupId>org.springframework.cloud</groupId>
  39. <artifactId>spring-cloud-starter-consul-bus</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.cloud</groupId>
  43. <artifactId>spring-cloud-starter-consul-config</artifactId>
  44. </dependency>
  45. -->
  46. <!-- apollo client start -->
  47. <dependency>
  48. <groupId>com.ctrip.framework.apollo</groupId>
  49. <artifactId>apollo-client</artifactId>
  50. </dependency>
  51. <!-- apollo client end -->
  52. </dependencies>
  53. <build>
  54. <plugins>
  55. <plugin>
  56. <artifactId>maven-clean-plugin</artifactId>
  57. <version>3.0.0</version>
  58. <configuration>
  59. <source>1.8</source>
  60. <target>1.8</target>
  61. <encoding>UTF-8</encoding>
  62. </configuration>
  63. </plugin>
  64. <plugin>
  65. <artifactId>maven-compiler-plugin</artifactId>
  66. <version>3.0</version>
  67. <configuration>
  68. <source>1.8</source>
  69. <target>1.8</target>
  70. <fork>true</fork>
  71. <encoding>UTF-8</encoding>
  72. </configuration>
  73. </plugin>
  74. </plugins>
  75. </build>
  76. </project>