| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457 | 
							- <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.jtgh.hb</groupId>
 
- 	<artifactId>dataServer</artifactId>
 
- 	<version>0.0.1-SNAPSHOT</version>
 
- 	<packaging>war</packaging>
 
- 	<dependencies>
 
- 		<dependency>
 
- 			<groupId>org.springframework</groupId>
 
- 			<artifactId>spring-context</artifactId>
 
- 			<version>${spring.version}</version>
 
- 			<scope>compile</scope>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>org.springframework</groupId>
 
- 			<artifactId>spring-test</artifactId>
 
- 			<version>${spring.version}</version>
 
- 			<scope>compile</scope>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>org.springframework</groupId>
 
- 			<artifactId>spring-webmvc</artifactId>
 
- 			<version>${spring.version}</version>
 
- 			<scope>compile</scope>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>org.springframework</groupId>
 
- 			<artifactId>spring-context-support</artifactId>
 
- 			<version>${spring.version}</version>
 
- 			<scope>compile</scope>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>com.fasterxml.jackson.core</groupId>
 
- 			<artifactId>jackson-core</artifactId>
 
- 			<version>2.6.0</version>
 
- 			<scope>compile</scope>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>com.fasterxml.jackson.core</groupId>
 
- 			<artifactId>jackson-databind</artifactId>
 
- 			<version>2.6.0</version>
 
- 			<scope>compile</scope>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>org.springframework</groupId>
 
- 			<artifactId>spring-jdbc</artifactId>
 
- 			<version>${spring.version}</version>
 
- 			<scope>compile</scope>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>org.mybatis</groupId>
 
- 			<artifactId>mybatis-spring</artifactId>
 
- 			<version>1.2.3</version>
 
- 			<scope>compile</scope>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>org.mybatis</groupId>
 
- 			<artifactId>mybatis</artifactId>
 
- 			<version>3.3.0</version>
 
- 			<scope>compile</scope>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>com.github.pagehelper</groupId>
 
- 			<artifactId>pagehelper</artifactId>
 
- 			<version>4.0.1</version>
 
- 			<scope>compile</scope>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>javax.servlet</groupId>
 
- 			<artifactId>servlet-api</artifactId>
 
- 			<version>2.5</version>
 
- 			<scope>provided</scope>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>javax.servlet</groupId>
 
- 			<artifactId>jstl</artifactId>
 
- 			<version>1.2</version>
 
- 			<scope>provided</scope>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>taglibs</groupId>
 
- 			<artifactId>standard</artifactId>
 
- 			<version>1.1.2</version>
 
- 			<scope>provided</scope>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>javax.servlet.jsp</groupId>
 
- 			<artifactId>jsp-api</artifactId>
 
- 			<version>2.2</version>
 
- 			<scope>provided</scope>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>com.alibaba</groupId>
 
- 			<artifactId>druid</artifactId>
 
- 			<version>1.0.16</version>
 
- 			<scope>compile</scope>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>mysql</groupId>
 
- 			<artifactId>mysql-connector-java</artifactId>
 
- 			<version>5.1.25</version>
 
- 			<scope>compile</scope>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>junit</groupId>
 
- 			<artifactId>junit</artifactId>
 
- 			<version>4.11</version>
 
- 			<scope>test</scope>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>org.slf4j</groupId>
 
- 			<artifactId>slf4j-api</artifactId>
 
- 			<version>1.7.12</version>
 
- 			<scope>compile</scope>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>org.slf4j</groupId>
 
- 			<artifactId>slf4j-log4j12</artifactId>
 
- 			<version>1.7.12</version>
 
- 			<scope>compile</scope>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>org.aspectj</groupId>
 
- 			<artifactId>aspectjrt</artifactId>
 
- 			<version>1.8.5</version>
 
- 			<scope>compile</scope>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>org.aspectj</groupId>
 
- 			<artifactId>aspectjweaver</artifactId>
 
- 			<version>1.8.5</version>
 
- 			<scope>compile</scope>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>commons-codec</groupId>
 
- 			<artifactId>commons-codec</artifactId>
 
- 			<version>1.10</version>
 
- 			<scope>compile</scope>
 
- 		</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>com.alibaba</groupId>
 
- 			<artifactId>fastjson</artifactId>
 
- 			<version>1.2.6</version>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>org.apache.httpcomponents</groupId>
 
- 			<artifactId>httpclient</artifactId>
 
- 			<version>4.3</version>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>com.google.code.gson</groupId>
 
- 			<artifactId>gson</artifactId>
 
- 			<version>2.3.1</version>
 
- 		</dependency>
 
- 		<!-- 网页解析工具 -->
 
- 		<dependency>
 
- 			<groupId>org.htmlparser</groupId>
 
- 			<artifactId>htmlparser</artifactId>
 
- 			<version>1.6</version>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>com.yuanxd.tools</groupId>
 
- 			<artifactId>x-tools-hscbdt</artifactId>
 
- 			<version>1.0-SNAPSHOT</version>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>com.oracle</groupId>
 
- 			<artifactId>ojdbc6</artifactId>
 
- 			<version>11.2.0</version>
 
- 		</dependency>
 
- 		<!-- mybatis分页插件 -->
 
- 		<dependency>
 
- 			<groupId>com.yuanxd.tools</groupId>
 
- 			<artifactId>x-tools-pagehelper</artifactId>
 
- 			<version>0.0.1-SNAPSHOT</version>
 
- 		</dependency>
 
- 		<!-- 地图相关操作 -->
 
- 		<dependency>
 
- 			<groupId>com.vividsolutions</groupId>
 
- 			<artifactId>jts</artifactId>
 
- 			<version>1.13</version>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>dom4j</groupId>
 
- 			<artifactId>dom4j</artifactId>
 
- 			<version>1.6.1</version>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>jaxen</groupId>
 
- 			<artifactId>jaxen</artifactId>
 
- 			<version>1.1.6</version>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>net.sf.ehcache</groupId>
 
- 			<artifactId>ehcache</artifactId>
 
- 			<version>2.10.1</version>
 
- 		</dependency>
 
- 		<!-- solr -->
 
- 		<dependency>
 
- 			<groupId>org.apache.solr</groupId>
 
- 			<artifactId>solr-solrj</artifactId>
 
- 			<version>5.2.1</version>
 
- 		</dependency>
 
- 		<!-- activemq 相关maven依赖 -->
 
- 		<!-- <dependency> -->
 
- 		<!-- <groupId>javax.jms</groupId> -->
 
- 		<!-- <artifactId>jms</artifactId> -->
 
- 		<!-- <version>1.1</version> -->
 
- 		<!-- </dependency> -->
 
- 		<!-- <dependency> -->
 
- 		<!-- <groupId>org.springframework</groupId> -->
 
- 		<!-- <artifactId>spring-jms</artifactId> -->
 
- 		<!-- <version>${spring.version}</version> -->
 
- 		<!-- </dependency> -->
 
- 		<!-- <dependency> -->
 
- 		<!-- <groupId>org.apache.activemq</groupId> -->
 
- 		<!-- <artifactId>activemq-core</artifactId> -->
 
- 		<!-- <version>5.5.0</version> -->
 
- 		<!-- </dependency> -->
 
- 		<!-- <dependency> -->
 
- 		<!-- <groupId>org.apache.activemq</groupId> -->
 
- 		<!-- <artifactId>activemq-pool</artifactId> -->
 
- 		<!-- <version>5.7.0</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>
 
- 				<!-- test插件, 增大内存且仅测试名称为*Test的类 -->
 
- 				<plugin>
 
- 					<groupId>org.apache.maven.plugins</groupId>
 
- 					<artifactId>maven-surefire-plugin</artifactId>
 
- 					<version>2.12.4</version>
 
- 					<configuration>
 
- 						<includes>
 
- 							<include>**/*Test.java</include>
 
- 						</includes>
 
- 						<skipTests>true</skipTests>
 
- 					</configuration>
 
- 				</plugin>
 
- 				<plugin>
 
- 					<groupId>org.apache.maven.plugins</groupId>
 
- 					<artifactId>maven-failsafe-plugin</artifactId>
 
- 					<version>2.12</version>
 
- 					<executions>
 
- 						<execution>
 
- 							<id>integration-test</id>
 
- 							<goals>
 
- 								<goal>integration-test</goal>
 
- 							</goals>
 
- 						</execution>
 
- 					</executions>
 
- 				</plugin>
 
- 				<!-- cobertura插件 -->
 
- 				<plugin>
 
- 					<groupId>org.codehaus.mojo</groupId>
 
- 					<artifactId>cobertura-maven-plugin</artifactId>
 
- 					<version>2.5.1</version>
 
- 				</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>
 
- 				<!-- install插件 -->
 
- 				<plugin>
 
- 					<groupId>org.apache.maven.plugins</groupId>
 
- 					<artifactId>maven-install-plugin</artifactId>
 
- 					<version>2.3.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>
 
- 				<!-- jetty插件,设定重载模式 -->
 
- 				<plugin>
 
- 					<groupId>org.mortbay.jetty</groupId>
 
- 					<artifactId>jetty-maven-plugin</artifactId>
 
- 					<version>${jetty.version}</version>
 
- 					<configuration>
 
- 						<reload>manual</reload>
 
- 					</configuration>
 
- 				</plugin>
 
- 				<!-- dependency插件 -->
 
- 				<plugin>
 
- 					<groupId>org.apache.maven.plugins</groupId>
 
- 					<artifactId>maven-dependency-plugin</artifactId>
 
- 					<version>2.6</version>
 
- 				</plugin>
 
- 				<plugin>
 
- 					<groupId>org.codehaus.mojo</groupId>
 
- 					<artifactId>versions-maven-plugin</artifactId>
 
- 					<version>1.2</version>
 
- 				</plugin>
 
- 				<!-- ant插件 -->
 
- 				<plugin>
 
- 					<groupId>org.apache.maven.plugins</groupId>
 
- 					<artifactId>maven-antrun-plugin</artifactId>
 
- 					<version>1.7</version>
 
- 				</plugin>
 
- 				<!-- assembly插件 -->
 
- 				<plugin>
 
- 					<groupId>org.apache.maven.plugins</groupId>
 
- 					<artifactId>maven-assembly-plugin</artifactId>
 
- 					<version>2.4</version>
 
- 				</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>
 
- 				<plugin>
 
- 					<groupId>org.apache.tomcat.maven</groupId>
 
- 					<artifactId>tomcat6-maven-plugin</artifactId>
 
- 					<version>2.0-beta-1</version>
 
- 				</plugin>
 
- 				<plugin>
 
- 					<groupId>org.apache.tomcat.maven</groupId>
 
- 					<artifactId>tomcat7-maven-plugin</artifactId>
 
- 					<version>2.0-beta-1</version>
 
- 				</plugin>
 
- 				<plugin>
 
- 					<groupId>org.apache.maven.plugins</groupId>
 
- 					<artifactId>maven-javadoc-plugin</artifactId>
 
- 					<version>2.8.1</version>
 
- 					<configuration>
 
- 						<aggregate>true</aggregate>
 
- 						<charset>${project.build.sourceEncoding}</charset>
 
- 						<encoding>${project.build.sourceEncoding}</encoding>
 
- 						<docencoding>${project.build.sourceEncoding}</docencoding>
 
- 					</configuration>
 
- 					<executions>
 
- 						<execution>
 
- 							<id>attach-javadocs</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>
 
- 				</dependencies>
 
- 				<configuration>
 
- 					<configurationFile>${basedir}\src\main\resources\generatorConfigAq.xml</configurationFile>
 
- 					<overwrite>true</overwrite>
 
- 				</configuration>
 
- 			</plugin>
 
- 		</plugins>
 
- 	</build>
 
- 	<properties>
 
- 		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 
- 		<!-- java 版本 -->
 
- 		<jdk.version>1.7</jdk.version>
 
- 		<spring.version>4.2.4.RELEASE</spring.version>
 
- 	</properties>
 
- </project>
 
 
  |