New file |
| | |
| | | <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>cn.com.basic</groupId> |
| | | <artifactId>faceDiscern</artifactId> |
| | | <packaging>war</packaging> |
| | | <version>0.0.1-SNAPSHOT</version> |
| | | <name>faceDiscern Maven Webapp</name> |
| | | <url>http://maven.apache.org</url> |
| | | <dependencies> |
| | | <!-- spring相关 --> |
| | | <dependency> |
| | | <groupId>org.springframework</groupId> |
| | | <artifactId>spring-web</artifactId> |
| | | <version>4.0.0.RELEASE</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.springframework</groupId> |
| | | <artifactId>spring-aspects</artifactId> |
| | | <version>4.0.0.RELEASE</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.springframework</groupId> |
| | | <artifactId>spring-webmvc</artifactId> |
| | | <version>4.0.0.RELEASE</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.springframework</groupId> |
| | | <artifactId>spring-context-support</artifactId> |
| | | <version>4.0.0.RELEASE</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.springframework</groupId> |
| | | <artifactId>spring-mock</artifactId> |
| | | <version>2.0.8</version> |
| | | <scope>test</scope> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.springframework</groupId> |
| | | <artifactId>spring-tx</artifactId> |
| | | <version>4.0.0.RELEASE</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.springframework</groupId> |
| | | <artifactId>spring-jdbc</artifactId> |
| | | <version>4.0.0.RELEASE</version> |
| | | </dependency> |
| | | <!-- aspectj --> |
| | | <dependency> |
| | | <groupId>org.aspectj</groupId> |
| | | <artifactId>aspectjweaver</artifactId> |
| | | <version>1.7.4</version> |
| | | </dependency> |
| | | <!-- mybaits --> |
| | | <dependency> |
| | | <groupId>org.mybatis</groupId> |
| | | <artifactId>mybatis</artifactId> |
| | | <version>3.2.8</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.mybatis</groupId> |
| | | <artifactId>mybatis-spring</artifactId> |
| | | <version>1.2.2</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.mybatis.caches</groupId> |
| | | <artifactId>mybatis-ehcache</artifactId> |
| | | <version>1.0.2</version> |
| | | </dependency> |
| | | <!-- JDBC驱动 --> |
| | | <dependency> |
| | | <groupId>mysql</groupId> |
| | | <artifactId>mysql-connector-java</artifactId> |
| | | <version>5.1.32</version> |
| | | </dependency> |
| | | <!-- <dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc14</artifactId> |
| | | <version>10.2.0.5</version> </dependency> --> |
| | | <!-- 连接池 --> |
| | | <dependency> |
| | | <groupId>com.alibaba</groupId> |
| | | <artifactId>druid</artifactId> |
| | | <version>1.0.11</version> |
| | | </dependency> |
| | | <!-- 依赖的测试类库 --> |
| | | <dependency> |
| | | <groupId>junit</groupId> |
| | | <artifactId>junit</artifactId> |
| | | <version>4.12</version> |
| | | <scope>test</scope> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.springframework</groupId> |
| | | <artifactId>spring-test</artifactId> |
| | | <version>4.0.0.RELEASE</version> |
| | | </dependency> |
| | | <!-- 日志库 --> |
| | | <dependency> |
| | | <groupId>commons-logging</groupId> |
| | | <artifactId>commons-logging</artifactId> |
| | | <version>1.2</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.slf4j</groupId> |
| | | <artifactId>slf4j-log4j12</artifactId> |
| | | <version>1.7.7</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.slf4j</groupId> |
| | | <artifactId>slf4j-api</artifactId> |
| | | <version>1.7.7</version> |
| | | </dependency> |
| | | <!-- 依赖的WEB类库 --> |
| | | <dependency> |
| | | <groupId>javax.servlet</groupId> |
| | | <artifactId>javax.servlet-api</artifactId> |
| | | <version>3.1.0</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>javax.servlet</groupId> |
| | | <artifactId>jstl</artifactId> |
| | | <version>1.2</version> |
| | | </dependency> |
| | | <!-- 依赖的公共类库 --> |
| | | <dependency> |
| | | <groupId>commons-lang</groupId> |
| | | <artifactId>commons-lang</artifactId> |
| | | <version>2.6</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.apache.commons</groupId> |
| | | <artifactId>commons-collections4</artifactId> |
| | | <version>4.0</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>commons-dbcp</groupId> |
| | | <artifactId>commons-dbcp</artifactId> |
| | | <version>1.4</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>commons-pool</groupId> |
| | | <artifactId>commons-pool</artifactId> |
| | | <version>1.6</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>commons-io</groupId> |
| | | <artifactId>commons-io</artifactId> |
| | | <version>2.4</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>commons-fileupload</groupId> |
| | | <artifactId>commons-fileupload</artifactId> |
| | | <version>1.2.2</version> |
| | | </dependency> |
| | | |
| | | <!-- shiro权限控制 --> |
| | | <dependency> |
| | | <groupId>org.apache.shiro</groupId> |
| | | <artifactId>shiro-core</artifactId> |
| | | <version>1.2.2</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.apache.shiro</groupId> |
| | | <artifactId>shiro-web</artifactId> |
| | | <version>1.2.2</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.apache.shiro</groupId> |
| | | <artifactId>shiro-spring</artifactId> |
| | | <version>1.2.2</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.apache.shiro</groupId> |
| | | <artifactId>shiro-ehcache</artifactId> |
| | | <version>1.2.2</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.apache.shiro</groupId> |
| | | <artifactId>shiro-aspectj</artifactId> |
| | | <version>1.2.2</version> |
| | | </dependency> |
| | | |
| | | <!-- 缓存 --> |
| | | <dependency> |
| | | <groupId>net.sf.ehcache</groupId> |
| | | <artifactId>ehcache</artifactId> |
| | | <version>2.8.1</version> |
| | | </dependency> |
| | | <!-- json库 --> |
| | | <dependency> |
| | | <groupId>com.alibaba</groupId> |
| | | <artifactId>fastjson</artifactId> |
| | | <version>1.2.12</version> |
| | | </dependency> |
| | | <!-- 分页 --> |
| | | <dependency> |
| | | <groupId>com.github.pagehelper</groupId> |
| | | <artifactId>pagehelper</artifactId> |
| | | <version>3.7.5</version> |
| | | </dependency> |
| | | <!-- poi xml --> |
| | | <dependency> |
| | | <groupId>org.apache.poi</groupId> |
| | | <artifactId>poi</artifactId> |
| | | <version>3.8</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.apache.poi</groupId> |
| | | <artifactId>poi-ooxml</artifactId> |
| | | <version>3.8</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.apache.poi</groupId> |
| | | <artifactId>poi-ooxml-schemas</artifactId> |
| | | <version>3.8</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>xmlbeans</groupId> |
| | | <artifactId>xmlbeans</artifactId> |
| | | <version>2.3.0</version> |
| | | <type>pom</type> |
| | | </dependency> |
| | | |
| | | |
| | | <!-- 模板库 --> |
| | | <dependency> |
| | | <groupId>org.freemarker</groupId> |
| | | <artifactId>freemarker</artifactId> |
| | | <version>2.3.21</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.apache.velocity</groupId> |
| | | <artifactId>velocity</artifactId> |
| | | <version>1.7</version> |
| | | </dependency> |
| | | <!-- webservice jersey restful --> |
| | | <dependency> |
| | | <groupId>javax.ws.rs</groupId> |
| | | <artifactId>javax.ws.rs-api</artifactId> |
| | | <version>2.0.1</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>org.glassfish.jersey.core</groupId> |
| | | <artifactId>jersey-common</artifactId> |
| | | <version>2.19</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.sun.jersey</groupId> |
| | | <artifactId>jersey-core</artifactId> |
| | | <version>1.19</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.sun.jersey</groupId> |
| | | <artifactId>jersey-client</artifactId> |
| | | <version>1.19</version> |
| | | </dependency> |
| | | <!-- java mail --> |
| | | <dependency> |
| | | <groupId>javax.mail</groupId> |
| | | <artifactId>mail</artifactId> |
| | | <version>1.5.0-b01</version> |
| | | </dependency> |
| | | <!-- FasterXML/jackson --> |
| | | <dependency> |
| | | <groupId>com.fasterxml.jackson.core</groupId> |
| | | <artifactId>jackson-core</artifactId> |
| | | <version>2.5.4</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.fasterxml.jackson.core</groupId> |
| | | <artifactId>jackson-annotations</artifactId> |
| | | <version>2.5.4</version> |
| | | </dependency> |
| | | <dependency> |
| | | <groupId>com.fasterxml.jackson.core</groupId> |
| | | <artifactId>jackson-databind</artifactId> |
| | | <version>2.5.4</version> |
| | | </dependency> |
| | | <!-- oss sdk --> |
| | | <dependency> |
| | | <groupId>com.aliyun.oss</groupId> |
| | | <artifactId>aliyun-sdk-oss</artifactId> |
| | | <version>2.2.3</version> |
| | | </dependency> |
| | | |
| | | <!-- quartz --> |
| | | <dependency> |
| | | <groupId>org.quartz-scheduler</groupId> |
| | | <artifactId>quartz</artifactId> |
| | | <version>2.2.1</version> |
| | | </dependency> |
| | | |
| | | |
| | | <!-- jsp --> |
| | | |
| | | <!-- <dependency> --> |
| | | <!-- <groupId>javax.servlet</groupId> --> |
| | | <!-- <artifactId>servlet-api</artifactId> --> |
| | | <!-- <version>2.5</version> --> |
| | | <!-- <scope>provided</scope>注意!!!! --> |
| | | <!-- </dependency> --> |
| | | <!-- <dependency> --> |
| | | <!-- <groupId>javax.servlet.jsp</groupId> --> |
| | | <!-- <artifactId>jsp-api</artifactId> --> |
| | | <!-- <version>2.1.3-b06</version> --> |
| | | <!-- <scope>provided</scope>注意!!!! --> |
| | | <!-- </dependency> --> |
| | | |
| | | |
| | | </dependencies> |
| | | <build> |
| | | <finalName>jf-console</finalName> |
| | | <plugins> |
| | | <plugin> |
| | | <groupId>org.apache.maven.plugins</groupId> |
| | | <artifactId>maven-compiler-plugin</artifactId> |
| | | <version>2.3.2</version> |
| | | <configuration> |
| | | <source>1.7</source> |
| | | <target>1.7</target> |
| | | </configuration> |
| | | </plugin> |
| | | </plugins> |
| | | </build> |
| | | </project> |