| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301 | <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>	<groupId>com.xt.js.gkaq</groupId>	<artifactId>gkaq-web</artifactId>	<version>0.0.1-SNAPSHOT</version>	<packaging>war</packaging>	<description>港口安全网页端</description>	<dependencies>		<dependency>			<groupId>org.springframework</groupId>			<artifactId>spring-webmvc</artifactId>			<scope>compile</scope>		</dependency>		<dependency>			<groupId>org.springframework</groupId>			<artifactId>spring-jdbc</artifactId>			<scope>compile</scope>		</dependency>		<dependency>			<groupId>org.springframework</groupId>			<artifactId>spring-test</artifactId>			<scope>test</scope>		</dependency>		<dependency>			<groupId>org.springframework</groupId>			<artifactId>spring-context-support</artifactId>			<scope>compile</scope>		</dependency>		<dependency>			<groupId>org.slf4j</groupId>			<artifactId>slf4j-log4j12</artifactId>			<scope>compile</scope>		</dependency>		<dependency>			<groupId>com.alibaba</groupId>			<artifactId>druid</artifactId>		</dependency>		<!-- mybatis分页插件 -->		<dependency>			<groupId>com.yuanxd.tools</groupId>			<artifactId>x-tools-pagehelper</artifactId>		</dependency>		<dependency>			<groupId>org.mybatis</groupId>			<artifactId>mybatis-spring</artifactId>			<scope>compile</scope>		</dependency>		<dependency>			<groupId>org.mybatis</groupId>			<artifactId>mybatis</artifactId>			<scope>compile</scope>		</dependency>		<dependency>			<groupId>javax.servlet</groupId>			<artifactId>servlet-api</artifactId>			<scope>provided</scope>		</dependency>		<dependency>			<groupId>javax.servlet</groupId>			<artifactId>jstl</artifactId>			<scope>provided</scope>		</dependency>		<dependency>			<groupId>taglibs</groupId>			<artifactId>standard</artifactId>			<scope>provided</scope>		</dependency>		<dependency>			<groupId>javax.servlet.jsp</groupId>			<artifactId>jsp-api</artifactId>			<scope>provided</scope>		</dependency>		<dependency>			<groupId>com.fasterxml.jackson.core</groupId>			<artifactId>jackson-core</artifactId>			<scope>compile</scope>		</dependency>		<dependency>			<groupId>com.fasterxml.jackson.core</groupId>			<artifactId>jackson-databind</artifactId>			<scope>compile</scope>		</dependency>		<dependency>			<groupId>com.alibaba</groupId>			<artifactId>fastjson</artifactId>		</dependency>		<dependency>			<groupId>org.aspectj</groupId>			<artifactId>aspectjrt</artifactId>			<scope>compile</scope>		</dependency>		<dependency>			<groupId>org.aspectj</groupId>			<artifactId>aspectjweaver</artifactId>			<scope>compile</scope>		</dependency>		<dependency>			<groupId>com.oracle</groupId>			<artifactId>ojdbc6</artifactId>		</dependency>		<dependency>			<groupId>com.h2database</groupId>			<artifactId>h2</artifactId>		</dependency>		<dependency>			<groupId>org.quartz-scheduler</groupId>			<artifactId>quartz</artifactId>		</dependency>		<dependency>			<groupId>com.yuanxd.tools</groupId>			<artifactId>x-tools-io</artifactId>		</dependency>		<dependency>			<groupId>org.apache.shiro</groupId>			<artifactId>shiro-core</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>		<dependency>			<groupId>com.xt.js.gkaq</groupId>			<artifactId>gkaq-frame</artifactId>		</dependency>		<dependency>			<groupId>com.xt.js.gkaq</groupId>			<artifactId>gkaq-common</artifactId>		</dependency>		<dependency>			<groupId>com.xt.js.gkaq</groupId>			<artifactId>gkaq-dwxx</artifactId>		</dependency>		<dependency>			<groupId>com.xt.js.gkaq</groupId>			<artifactId>gkaq-aqsp</artifactId>		</dependency>		<dependency>			<groupId>junit</groupId>			<artifactId>junit</artifactId>		</dependency>		<dependency>			<groupId>org.apache.poi</groupId>			<artifactId>poi</artifactId>		</dependency>		<dependency>		    <groupId>com.fasterxml.uuid</groupId>		    <artifactId>java-uuid-generator</artifactId>		    <version>3.1.3</version>		</dependency>		<dependency>		  <groupId>commons-fileupload</groupId>		  <artifactId>commons-fileupload</artifactId>		  <version>1.2.2</version>		</dependency>		<dependency>		  <groupId>commons-io</groupId>		  <artifactId>commons-io</artifactId>		  <version>2.0.1</version>		</dependency>	</dependencies>	<build>		<!-- 插件配置 -->		<pluginManagement>			<plugins>				<!-- compiler插件, 设定JDK版本 -->				<plugin>					<groupId>org.apache.maven.plugins</groupId>					<artifactId>maven-compiler-plugin</artifactId>					<version>3.0</version>					<configuration>						<source>${jdk.version}</source>						<target>${jdk.version}</target>						<showWarnings>true</showWarnings>					</configuration>				</plugin>				<!-- war插件, 设定war名称不带版本号 -->				<plugin>					<groupId>org.apache.maven.plugins</groupId>					<artifactId>maven-war-plugin</artifactId>					<version>2.2</version>					<configuration>						<warName>${project.artifactId}</warName>					</configuration>				</plugin>				<!-- resource插件, 设定编码 -->				<plugin>					<groupId>org.apache.maven.plugins</groupId>					<artifactId>maven-resources-plugin</artifactId>					<version>2.5</version>					<configuration>						<encoding>${project.build.sourceEncoding}</encoding>					</configuration>				</plugin>				<!-- jar相关插件 -->				<plugin>					<groupId>org.apache.maven.plugins</groupId>					<artifactId>maven-jar-plugin</artifactId>					<version>2.4</version>					<configuration>						<archive>							<manifest>								<addDefaultImplementationEntries>true</addDefaultImplementationEntries>								<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>							</manifest>						</archive>					</configuration>				</plugin>				<!-- clean插件 -->				<plugin>					<groupId>org.apache.maven.plugins</groupId>					<artifactId>maven-clean-plugin</artifactId>					<version>2.4.1</version>				</plugin>				<!-- eclipse插件,设定下载Source并屏蔽.svn文件 -->				<plugin>					<groupId>org.apache.maven.plugins</groupId>					<artifactId>maven-eclipse-plugin</artifactId>					<version>2.9</version>					<configuration>						<sourceExcludes>							<sourceExclude>**/.svn/</sourceExclude>						</sourceExcludes>						<downloadSources>true</downloadSources>						<downloadJavadocs>false</downloadJavadocs>					</configuration>				</plugin>				<!-- source attach plugin -->				<plugin>					<groupId>org.apache.maven.plugins</groupId>					<artifactId>maven-source-plugin</artifactId>					<version>2.1.2</version>					<executions>						<execution>							<id>attach-sources</id>							<goals>								<goal>jar</goal>							</goals>						</execution>					</executions>				</plugin>			</plugins>		</pluginManagement>		<plugins>			<plugin>				<artifactId>maven-war-plugin</artifactId>			</plugin>			<!-- compiler插件, 设定JDK版本 -->			<plugin>				<groupId>org.mybatis.generator</groupId>				<artifactId>mybatis-generator-maven-plugin</artifactId>				<version>1.3.2</version>				<dependencies>					<dependency>						<groupId>com.oracle</groupId>						<artifactId>ojdbc6</artifactId>						<version>11.2.0</version>					</dependency>					<dependency>						<groupId>com.h2database</groupId>						<artifactId>h2</artifactId>						<version>1.4.192</version>					</dependency>				</dependencies>				<configuration>					<configurationFile>${basedir}\src\main\resources\generatorConfig.xml</configurationFile>					<overwrite>true</overwrite>				</configuration>			</plugin>		</plugins>	</build>	<dependencyManagement>		<dependencies>			<dependency>				<groupId>com.xt.js.gkaq</groupId>				<artifactId>gkaq-bom</artifactId>				<version>0.0.1-SNAPSHOT</version>				<type>pom</type>				<scope>import</scope>			</dependency>		</dependencies>	</dependencyManagement>	<properties>		<project.build.sourceEncoding>GBK</project.build.sourceEncoding>		<!-- java 版本 -->		<jdk.version>1.7</jdk.version>	</properties></project>
 |