pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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.jiayue</groupId>
  7. <artifactId>insu</artifactId>
  8. <packaging>pom</packaging>
  9. <version>1.0-SNAPSHOT</version>
  10. <modules>
  11. <module>in-cloud</module>
  12. <module>in-client</module>
  13. </modules>
  14. <properties>
  15. <maven.compiler.source>8</maven.compiler.source>
  16. <maven.compiler.target>8</maven.compiler.target>
  17. <!--springCloud boot 版本兼容网址-->
  18. <!--https://github.com/alibaba/spring-cloud-alibaba/wiki/%E7%89%88%E6%9C%AC%E8%AF%B4%E6%98%8E-->
  19. <spring.cloud.alibaba.version>2021.0.1.0</spring.cloud.alibaba.version>
  20. <spring.cloud.version>2021.0.1</spring.cloud.version>
  21. <spring.boot.version>2.6.3</spring.boot.version>
  22. <jasypt.version>3.0.3</jasypt.version>
  23. </properties>
  24. <dependencies>
  25. <dependency>
  26. <groupId>org.springframework.cloud</groupId>
  27. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  28. <version>3.0.4</version>
  29. </dependency>
  30. <!--配置文件加解密-->
  31. <dependency>
  32. <groupId>com.github.ulisesbocchio</groupId>
  33. <artifactId>jasypt-spring-boot-starter</artifactId>
  34. <version>${jasypt.version}</version>
  35. </dependency>
  36. <!--Lombok-->
  37. <dependency>
  38. <groupId>org.projectlombok</groupId>
  39. <artifactId>lombok</artifactId>
  40. <scope>provided</scope>
  41. </dependency>
  42. <!--测试依赖-->
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-test</artifactId>
  46. <scope>test</scope>
  47. </dependency>
  48. </dependencies>
  49. <dependencyManagement>
  50. <dependencies>
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-dependencies</artifactId>
  54. <version>${spring.boot.version}</version>
  55. <type>pom</type>
  56. <scope>import</scope>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.alibaba.cloud</groupId>
  60. <artifactId>spring-cloud-alibaba-dependencies</artifactId>
  61. <version>${spring.cloud.alibaba.version}</version>
  62. <type>pom</type>
  63. <scope>import</scope>
  64. </dependency>
  65. <!-- spring cloud 依赖 -->
  66. <dependency>
  67. <groupId>org.springframework.cloud</groupId>
  68. <artifactId>spring-cloud-dependencies</artifactId>
  69. <version>${spring.cloud.version}</version>
  70. <type>pom</type>
  71. <scope>import</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-web</artifactId>
  76. <version>${spring.boot.version}</version>
  77. <exclusions>
  78. <!--排除tomcat依赖-->
  79. <exclusion>
  80. <artifactId>spring-boot-starter-tomcat</artifactId>
  81. <groupId>org.springframework.boot</groupId>
  82. </exclusion>
  83. </exclusions>
  84. </dependency>
  85. </dependencies>
  86. </dependencyManagement>
  87. <distributionManagement>
  88. <repository>
  89. <id>jiayue-csc-releases</id>
  90. <url>http://49.4.68.219:8888/nexus/content/repositories/jiayue-csc-releases</url>
  91. </repository>
  92. <snapshotRepository>
  93. <id>jiayue-csc-snapshots</id>
  94. <url>http://49.4.68.219:8888/nexus/content/repositories/jiayue-csc-snapshots</url>
  95. </snapshotRepository>
  96. </distributionManagement>
  97. </project>