| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 | <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-frame</artifactId>	<version>0.0.1-SNAPSHOT</version>	<dependencies>		<dependency>			<groupId>org.springframework</groupId>			<artifactId>spring-context</artifactId>		</dependency>		<dependency>			<groupId>javax.servlet</groupId>			<artifactId>servlet-api</artifactId>			<scope>provided</scope>		</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>com.yuanxd.tools</groupId>			<artifactId>x-tools-utils</artifactId>		</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>org.activiti</groupId>			<artifactId>activiti-engine</artifactId>		</dependency>		<dependency>			<groupId>org.activiti</groupId>			<artifactId>activiti-spring</artifactId>		</dependency>		<dependency>			<groupId>com.yuanxd.tools</groupId>			<artifactId>x-tools-io</artifactId>		</dependency>		<dependency>			<groupId>com.xt.js.gkaq</groupId>			<artifactId>gkaq-common</artifactId>		</dependency>		<dependency>			<groupId>junit</groupId>			<artifactId>junit</artifactId>		</dependency>	</dependencies>	<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>	<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>	<build>		<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>			<plugin>				<artifactId>maven-war-plugin</artifactId>			</plugin>			<!-- 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>			<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>	<properties>		<project.build.sourceEncoding>GBK</project.build.sourceEncoding>		<!-- java 版本 -->		<jdk.version>1.7</jdk.version>	</properties></project>
 |