| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 | 
							- <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-common</artifactId>
 
- 	<version>0.0.1-SNAPSHOT</version>
 
- 	<properties>
 
- 		<project.build.sourceEncoding>GBK</project.build.sourceEncoding>
 
- 		<!-- java 版本 -->
 
- 		<jdk.version>1.7</jdk.version>
 
- 	</properties>
 
- 	<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>
 
- 			</plugins>
 
- 		</pluginManagement>
 
- 		<plugins>
 
- 			<plugin>
 
- 				<groupId>org.apache.maven.plugins</groupId>
 
- 				<artifactId>maven-surefire-plugin</artifactId>
 
- 				<configuration>
 
- 					<skipTests>true</skipTests>
 
- 				</configuration>
 
- 			</plugin>
 
- 			<plugin>
 
- 				<groupId>org.apache.maven.plugins</groupId>
 
- 				<artifactId>maven-source-plugin</artifactId>
 
- 				<executions>
 
- 					<execution>
 
- 						<id>attach-sources</id>
 
- 						<goals>
 
- 							<goal>jar</goal>
 
- 						</goals>
 
- 					</execution>
 
- 				</executions>
 
- 			</plugin>
 
- 			<!-- compiler插件, 设定JDK版本 -->
 
- 			<plugin>
 
- 				<groupId>org.apache.maven.plugins</groupId>
 
- 				<artifactId>maven-compiler-plugin</artifactId>
 
- 				<configuration>
 
- 					<source>1.7</source>
 
- 					<target>1.7</target>
 
- 					<showWarnings>true</showWarnings>
 
- 				</configuration>
 
- 			</plugin>
 
- 		</plugins>
 
- 	</build>
 
- 	<distributionManagement>
 
- 		<repository>
 
- 			<id>xt-repository</id>
 
- 			<name>xt Repository</name>
 
- 			<url>${deploy.url}</url>
 
- 		</repository>
 
- 		<snapshotRepository>
 
- 			<id>xt-repository-snapshots</id>
 
- 			<name>xt Repository Snapshots</name>
 
- 			<url>${deploy.snapshots.url}</url>
 
- 		</snapshotRepository>
 
- 	</distributionManagement>
 
- 	<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>
 
- 	<dependencies>
 
- 		<dependency>
 
- 			<groupId>org.springframework</groupId>
 
- 			<artifactId>spring-jdbc</artifactId>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>com.yuanxd.tools</groupId>
 
- 			<artifactId>x-tools-utils</artifactId>
 
- 		</dependency>
 
- 		<dependency>
 
- 			<groupId>org.apache.shiro</groupId>
 
- 			<artifactId>shiro-core</artifactId>
 
- 		</dependency>
 
- 	</dependencies>
 
- </project>
 
 
  |