1. 程式人生 > >pom.xml中排除quartz包

pom.xml中排除quartz包

quartz

<dependency>
			<groupId>org.apache.shiro</groupId>
			<artifactId>shiro-all</artifactId>
			<version>1.4.0</version>
			<!-- 排除掉裏面的quartz包 -->
			<exclusions>
				<exclusion>
					<groupId>org.opensymphony.quartz</groupId>
					<artifactId>quartz</artifactId>
				</exclusion>
			</exclusions>
		</dependency>

pom.xml中引入了shiro包,裏面

本文出自 “JianBo” 博客,請務必保留此出處http://jianboli.blog.51cto.com/12075002/1982607

pom.xml中排除quartz包