|
@@ -0,0 +1,117 @@
|
|
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
|
+<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
+
|
|
|
+
|
|
|
+ <groupId>com.jiayue</groupId>
|
|
|
+ <artifactId>insu</artifactId>
|
|
|
+ <packaging>pom</packaging>
|
|
|
+ <version>1.0-SNAPSHOT</version>
|
|
|
+ <modules>
|
|
|
+ <module>in-cloud</module>
|
|
|
+ <module>in-client</module>
|
|
|
+ </modules>
|
|
|
+
|
|
|
+ <properties>
|
|
|
+ <maven.compiler.source>8</maven.compiler.source>
|
|
|
+ <maven.compiler.target>8</maven.compiler.target>
|
|
|
+ <!--springCloud boot 版本兼容网址-->
|
|
|
+ <!--https://github.com/alibaba/spring-cloud-alibaba/wiki/%E7%89%88%E6%9C%AC%E8%AF%B4%E6%98%8E-->
|
|
|
+ <spring.cloud.alibaba.version>2021.0.1.0</spring.cloud.alibaba.version>
|
|
|
+ <spring.cloud.version>2021.0.1</spring.cloud.version>
|
|
|
+ <spring.boot.version>2.6.3</spring.boot.version>
|
|
|
+
|
|
|
+ <jasypt.version>3.0.3</jasypt.version>
|
|
|
+ </properties>
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.cloud</groupId>
|
|
|
+ <artifactId>spring-cloud-starter-bootstrap</artifactId>
|
|
|
+ <version>3.0.4</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--配置文件加解密-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.github.ulisesbocchio</groupId>
|
|
|
+ <artifactId>jasypt-spring-boot-starter</artifactId>
|
|
|
+ <version>${jasypt.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!--Lombok-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.projectlombok</groupId>
|
|
|
+ <artifactId>lombok</artifactId>
|
|
|
+ <scope>provided</scope>
|
|
|
+ </dependency>
|
|
|
+ <!--测试依赖-->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-test</artifactId>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+
|
|
|
+
|
|
|
+ <dependencyManagement>
|
|
|
+
|
|
|
+ <dependencies>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-dependencies</artifactId>
|
|
|
+ <version>${spring.boot.version}</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba.cloud</groupId>
|
|
|
+ <artifactId>spring-cloud-alibaba-dependencies</artifactId>
|
|
|
+ <version>${spring.cloud.alibaba.version}</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- spring cloud 依赖 -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.cloud</groupId>
|
|
|
+ <artifactId>spring-cloud-dependencies</artifactId>
|
|
|
+ <version>${spring.cloud.version}</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
+ <version>${spring.boot.version}</version>
|
|
|
+ <exclusions>
|
|
|
+ <!--排除tomcat依赖-->
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ </dependencies>
|
|
|
+ </dependencyManagement>
|
|
|
+
|
|
|
+
|
|
|
+ <distributionManagement>
|
|
|
+ <repository>
|
|
|
+ <id>jiayue-csc-releases</id>
|
|
|
+ <url>http://49.4.68.219:8888/nexus/content/repositories/jiayue-csc-releases</url>
|
|
|
+
|
|
|
+ </repository>
|
|
|
+ <snapshotRepository>
|
|
|
+ <id>jiayue-csc-snapshots</id>
|
|
|
+ <url>http://49.4.68.219:8888/nexus/content/repositories/jiayue-csc-snapshots</url>
|
|
|
+ </snapshotRepository>
|
|
|
+ </distributionManagement>
|
|
|
+
|
|
|
+</project>
|