mirror of
https://gitee.com/nutz/nutzboot.git
synced 2024-11-30 02:38:28 +08:00
42 lines
1.3 KiB
XML
42 lines
1.3 KiB
XML
<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>
|
|
<parent>
|
|
<groupId>org.nutz</groupId>
|
|
<artifactId>nutzboot-parent</artifactId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>nutzboot-starter-shiro</artifactId>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.nutz</groupId>
|
|
<artifactId>nutzboot-starter</artifactId>
|
|
<version>2.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.nutz</groupId>
|
|
<artifactId>nutz-integration-shiro</artifactId>
|
|
<version>1.r.65-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.shiro</groupId>
|
|
<artifactId>shiro-web</artifactId>
|
|
<version>1.3.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.shiro</groupId>
|
|
<artifactId>shiro-ehcache</artifactId>
|
|
<version>1.3.2</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>net.sf.ehcache</groupId>
|
|
<artifactId>ehcache-core</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.sf.ehcache</groupId>
|
|
<artifactId>ehcache</artifactId>
|
|
<version>2.10.4</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |