2016-02-02 05:46:18 +00:00
|
|
|
|
<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/maven-v4_0_0.xsd">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<groupId>osc.git.eh3</groupId>
|
|
|
|
|
<artifactId>useful-code</artifactId>
|
|
|
|
|
<packaging>war</packaging>
|
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
|
|
|
|
|
<name>useful-code Maven Webapp</name>
|
|
|
|
|
<url>http://maven.apache.org</url>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<spring.version>4.2.4.RELEASE</spring.version>
|
2016-03-03 07:11:03 +00:00
|
|
|
|
<servlet.version>2.5</servlet.version>
|
2016-03-07 07:40:49 +00:00
|
|
|
|
<mybatis.version>3.2.7</mybatis.version>
|
|
|
|
|
<mybatis.spring.version>1.1.1</mybatis.spring.version>
|
|
|
|
|
<mybatis.paging.version>0.0.1</mybatis.paging.version>
|
|
|
|
|
<mybatis.generator.core.version>1.3.2</mybatis.generator.core.version>
|
2016-04-10 13:26:13 +00:00
|
|
|
|
<file_encoding>utf-8</file_encoding>
|
2016-02-02 05:46:18 +00:00
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
|
<version>4.11</version>
|
2016-03-23 08:25:08 +00:00
|
|
|
|
<!-- <scope>test</scope> -->
|
2016-02-02 05:46:18 +00:00
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
|
<version>1.1.3</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.shiro</groupId>
|
|
|
|
|
<artifactId>shiro-core</artifactId>
|
|
|
|
|
<version>1.2.2</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-oxm</artifactId>
|
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-tx</artifactId>
|
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-jdbc</artifactId>
|
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-webmvc</artifactId>
|
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-aop</artifactId>
|
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-context-support</artifactId>
|
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
|
</dependency>
|
2016-02-02 07:15:26 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
|
<version>1.6</version>
|
|
|
|
|
</dependency>
|
2016-02-20 01:59:10 +00:00
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>net.sf.json-lib</groupId>
|
|
|
|
|
<artifactId>json-lib</artifactId>
|
|
|
|
|
<version>2.4</version>
|
|
|
|
|
<classifier>jdk15</classifier>
|
|
|
|
|
</dependency>
|
2016-03-03 07:11:03 +00:00
|
|
|
|
|
2016-02-24 01:53:51 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.caucho</groupId>
|
|
|
|
|
<artifactId>hessian</artifactId>
|
|
|
|
|
<version>4.0.38</version>
|
|
|
|
|
</dependency>
|
2016-03-03 07:11:03 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>redis.clients</groupId>
|
|
|
|
|
<artifactId>jedis</artifactId>
|
|
|
|
|
<version>2.8.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
<version>5.1.38</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- servlet -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
|
<artifactId>servlet-api</artifactId>
|
|
|
|
|
<version>${servlet.version}</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2016-03-11 06:39:10 +00:00
|
|
|
|
|
2016-03-07 07:40:49 +00:00
|
|
|
|
<!-- mybatis start -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mybatis</groupId>
|
|
|
|
|
<artifactId>mybatis</artifactId>
|
|
|
|
|
<version>${mybatis.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mybatis</groupId>
|
|
|
|
|
<artifactId>mybatis-spring</artifactId>
|
|
|
|
|
<version>${mybatis.spring.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.loafer</groupId>
|
|
|
|
|
<artifactId>mybatis-paging</artifactId>
|
|
|
|
|
<version>${mybatis.paging.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mybatis.generator</groupId>
|
|
|
|
|
<artifactId>mybatis-generator-core</artifactId>
|
|
|
|
|
<version>${mybatis.generator.core.version}</version>
|
|
|
|
|
</dependency>
|
2016-03-11 06:39:10 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>c3p0</groupId>
|
|
|
|
|
<artifactId>c3p0</artifactId>
|
|
|
|
|
<version>0.9.1.2</version>
|
|
|
|
|
</dependency>
|
2016-03-07 07:40:49 +00:00
|
|
|
|
<!-- mybatis end -->
|
2016-03-18 07:55:04 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
|
<version>4.5.2</version>
|
|
|
|
|
</dependency>
|
2016-04-08 05:37:28 +00:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-frontend-jaxws</artifactId>
|
|
|
|
|
<version>3.1.6</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-transports-http</artifactId>
|
|
|
|
|
<version>3.1.6</version>
|
|
|
|
|
</dependency>
|
2016-02-02 05:46:18 +00:00
|
|
|
|
</dependencies>
|
|
|
|
|
<build>
|
|
|
|
|
<finalName>useful-code</finalName>
|
2016-03-07 07:40:49 +00:00
|
|
|
|
<pluginManagement>
|
|
|
|
|
<plugins>
|
2016-03-23 08:25:08 +00:00
|
|
|
|
<!-- mybatis-generator 插件; Run AS——>Maven Build… ——>在Goals框中输入:mybatis-generator:generate -->
|
2016-03-07 07:40:49 +00:00
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.mybatis.generator</groupId>
|
|
|
|
|
<artifactId>mybatis-generator-maven-plugin</artifactId>
|
|
|
|
|
<version>1.3.2</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<verbose>true</verbose>
|
|
|
|
|
<overwrite>true</overwrite>
|
|
|
|
|
</configuration>
|
2016-04-09 15:38:02 +00:00
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
<version>5.1.38</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
2016-03-07 07:40:49 +00:00
|
|
|
|
</plugin>
|
2016-03-23 08:25:08 +00:00
|
|
|
|
|
|
|
|
|
<!-- 指定JDK编译版本 -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>1.7</source>
|
|
|
|
|
<target>1.7</target>
|
|
|
|
|
<encoding>${file_encoding}</encoding>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<!-- jetty 服务器; Maven build... -> jetty:run -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
|
|
|
<artifactId>jetty-maven-plugin</artifactId>
|
|
|
|
|
<version>8.1.15.v20140411</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<webApp>
|
|
|
|
|
<contextPath>/usefull-code</contextPath>
|
|
|
|
|
</webApp>
|
|
|
|
|
<stopKey>exit</stopKey>
|
|
|
|
|
<stopPort>9090</stopPort>
|
|
|
|
|
<scanIntervalSeconds>1</scanIntervalSeconds>
|
|
|
|
|
<connectors>
|
|
|
|
|
<connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector">
|
|
|
|
|
<port>8080</port>
|
|
|
|
|
<maxIdleTime>60000</maxIdleTime>
|
|
|
|
|
</connector>
|
|
|
|
|
</connectors>
|
|
|
|
|
<requestLog implementation="org.eclipse.jetty.server.NCSARequestLog">
|
|
|
|
|
<filename>target/access.log</filename>
|
|
|
|
|
<retainDays>90</retainDays>
|
|
|
|
|
<append>false</append>
|
|
|
|
|
<extended>false</extended>
|
|
|
|
|
<logTimeZone>GMT+8:00</logTimeZone>
|
|
|
|
|
</requestLog>
|
|
|
|
|
<!-- <systemProperties> <systemProperty> <name>productionMode</name>
|
|
|
|
|
<value>${productionMode}</value> </systemProperty> </systemProperties> -->
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2016-03-07 07:40:49 +00:00
|
|
|
|
</plugins>
|
|
|
|
|
</pluginManagement>
|
2016-03-23 08:25:08 +00:00
|
|
|
|
<defaultGoal>compile</defaultGoal>
|
2016-02-02 05:46:18 +00:00
|
|
|
|
</build>
|
|
|
|
|
</project>
|