| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 | <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>com.xtframe</groupId>		<artifactId>xtproject-oa</artifactId>		<version>0.1.3-SNAPSHOT</version>		<relativePath>../../</relativePath>	</parent>	<artifactId>xtSecurity-oa</artifactId>	<dependencies>		<dependency>			<groupId>com.xtframe</groupId>			<artifactId>xtCore-oa</artifactId>		</dependency>		<!-- SECURITY begin -->		<dependency>			<groupId>org.apache.shiro</groupId>			<artifactId>shiro-core</artifactId>		</dependency>		<dependency>			<groupId>org.apache.shiro</groupId>			<artifactId>shiro-cas</artifactId>		</dependency>		<dependency>			<groupId>org.apache.shiro</groupId>			<artifactId>shiro-spring</artifactId>		</dependency>		<dependency>			<groupId>org.apache.shiro</groupId>			<artifactId>shiro-web</artifactId>		</dependency>		<dependency>			<groupId>org.apache.shiro</groupId>			<artifactId>shiro-ehcache</artifactId>		</dependency>		<!-- SECURITY end -->		<!-- spring -->		<dependency>			<groupId>org.springframework</groupId>			<artifactId>spring-context</artifactId>		</dependency>		<dependency>			<groupId>org.springframework</groupId>			<artifactId>spring-web</artifactId>		</dependency>		<dependency>			<groupId>org.springframework.data</groupId>			<artifactId>spring-data-jpa</artifactId>		</dependency>		<dependency>			<groupId>javax.servlet</groupId>			<artifactId>servlet-api</artifactId>			<scope>provided</scope>		</dependency>		<dependency>			<groupId>javax.servlet</groupId>			<artifactId>jstl</artifactId>		</dependency>		<dependency>			<groupId>taglibs</groupId>			<artifactId>standard</artifactId>		</dependency>		<!-- hibernate -->		<dependency>			<groupId>org.hibernate</groupId>			<artifactId>hibernate-core</artifactId>		</dependency>		<dependency>			<groupId>org.hibernate</groupId>			<artifactId>hibernate-entitymanager</artifactId>		</dependency>		<!-- json -->		<dependency>			<groupId>com.fasterxml.jackson.core</groupId>			<artifactId>jackson-annotations</artifactId>		</dependency>		<dependency>			<groupId>com.fasterxml.jackson.core</groupId>			<artifactId>jackson-core</artifactId>		</dependency>		<dependency>			<groupId>com.fasterxml.jackson.core</groupId>			<artifactId>jackson-databind</artifactId>		</dependency>		<dependency>			<groupId>org.quartz-scheduler</groupId>			<artifactId>quartz</artifactId>			<version>2.2.1</version>		</dependency>		<dependency>			<groupId>org.quartz-scheduler</groupId>			<artifactId>quartz-jobs</artifactId>			<version>2.2.1</version>		</dependency>		<dependency>			<groupId>junit</groupId>			<artifactId>junit</artifactId>		</dependency>		<dependency>			<groupId>net.sf.json-lib</groupId>			<artifactId>json-lib</artifactId>			<version>2.4</version>			<classifier>jdk15</classifier>		</dependency>	</dependencies>	<name>框架安全包</name>	<description>提供框架核心用户、角色、组织等服务接口实现,提供权限管理</description></project>
 |