|
|
@ -9,7 +9,7 @@
|
|
|
|
<properties>
|
|
|
|
<properties>
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<spring-boot.version>2.5.2</spring-boot.version>
|
|
|
|
<spring.boot.version>2.5.2</spring.boot.version>
|
|
|
|
</properties>
|
|
|
|
</properties>
|
|
|
|
<modules>
|
|
|
|
<modules>
|
|
|
|
<module>admin-core</module>
|
|
|
|
<module>admin-core</module>
|
|
|
@ -17,14 +17,17 @@
|
|
|
|
<module>web</module>
|
|
|
|
<module>web</module>
|
|
|
|
<module>admin-test</module>
|
|
|
|
<module>admin-test</module>
|
|
|
|
</modules>
|
|
|
|
</modules>
|
|
|
|
<parent>
|
|
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
|
|
|
|
<version>2.5.2</version>
|
|
|
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<!-- Add typical dependencies for a web application -->
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<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>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.ibeetl</groupId>
|
|
|
|
<groupId>com.ibeetl</groupId>
|
|
|
|
<artifactId>admin-core</artifactId>
|
|
|
|
<artifactId>admin-core</artifactId>
|
|
|
@ -45,11 +48,13 @@
|
|
|
|
<dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
|
|
|
|
|
<version>${spring.boot.version}</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
|
|
|
<version>${spring.boot.version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
@ -94,6 +99,11 @@
|
|
|
|
</exclusion>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
|
|
<groupId>com.auth0</groupId>
|
|
|
|
|
|
|
|
<artifactId>java-jwt</artifactId>
|
|
|
|
|
|
|
|
<version>4.0.0</version>
|
|
|
|
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
|
|
<build>
|
|
|
|