|
|
|
@ -38,9 +38,12 @@
|
|
|
|
|
<app.charset>UTF-8</app.charset>
|
|
|
|
|
<app.jdk.version>1.8</app.jdk.version>
|
|
|
|
|
<project.dependency.version>1.0-TEST-SNAPSHOT</project.dependency.version>
|
|
|
|
|
<log4j2.version>2.17.1</log4j2.version>
|
|
|
|
|
<qms.icloud.version>1.0.0.1</qms.icloud.version>
|
|
|
|
|
<eam.icloud.version>1.0.0.1</eam.icloud.version>
|
|
|
|
|
<log4j2.version>2.17.0</log4j2.version>
|
|
|
|
|
<jackson.databind.version>2.13.2.2</jackson.databind.version>
|
|
|
|
|
<jackson.core.version>2.13.2</jackson.core.version>
|
|
|
|
|
<jackson.annotation.version>2.13.2</jackson.annotation.version>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
@ -60,6 +63,18 @@
|
|
|
|
|
<version>${project.dependency.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
|
<version>5.0.16.RELEASE</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-webmvc</artifactId>
|
|
|
|
|
<version>5.0.16.RELEASE</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 微朝调用 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>i3plus.core</groupId>
|
|
|
|
@ -265,22 +280,22 @@
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.shiro</groupId>
|
|
|
|
|
<artifactId>shiro-core</artifactId>
|
|
|
|
|
<version>1.4.0</version>
|
|
|
|
|
<version>1.9.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.shiro</groupId>
|
|
|
|
|
<artifactId>shiro-web</artifactId>
|
|
|
|
|
<version>1.4.0</version>
|
|
|
|
|
<version>1.9.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.shiro</groupId>
|
|
|
|
|
<artifactId>shiro-spring</artifactId>
|
|
|
|
|
<version>1.4.0</version>
|
|
|
|
|
<version>1.9.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.shiro</groupId>
|
|
|
|
|
<artifactId>shiro-ehcache</artifactId>
|
|
|
|
|
<version>1.4.0</version>
|
|
|
|
|
<version>1.9.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- json -->
|
|
|
|
@ -346,7 +361,27 @@
|
|
|
|
|
<artifactId>elasticsearch</artifactId>
|
|
|
|
|
<version>7.5.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
|
<version>${jackson.databind.version}</version>
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
|
|
|
|
<version>${jackson.annotation.version}</version>
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
|
<version>${jackson.core.version}</version>
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|