123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330 |
- <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>com.esiu.city</groupId>
- <artifactId>city_base</artifactId>
- <packaging>war</packaging>
- <version>0.0.1-SNAPSHOT</version>
- <name>city_base</name>
- <url>http://www.esiu.com.cn</url>
- <properties>
- <junit-version>4.12</junit-version>
- <servlet-version>3.0.1</servlet-version>
- <jsp-version>2.2</jsp-version>
- <standard-version>1.2.5</standard-version>
- <slf4j>1.7.13</slf4j>
- <commons-lang>3.4</commons-lang>
- <commons-collection-version>3.2.2</commons-collection-version>
- <gson-version>2.5</gson-version>
- <spring-version>4.2.4.RELEASE</spring-version>
- <aspectj-version>1.8.7</aspectj-version>
- <commons-fileupload-version>1.3.1</commons-fileupload-version>
- <commons-beanutils-version>1.7.0</commons-beanutils-version>
- <jackson-version>2.6.4</jackson-version>
- <hibernate-version>4.3.11.Final</hibernate-version>
- <ojdbc-version>1.0</ojdbc-version>
- <shiro-version>1.2.4</shiro-version>
- <jsoup-version>1.8.3</jsoup-version>
- <org.apache.poi>3.13</org.apache.poi>
- <ueditor-version>1.1.2</ueditor-version>
- <json-version>20160212</json-version>
- <commons-codec>1.10</commons-codec>
- </properties>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>${junit-version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- <version>${servlet-version}</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>${jsp-version}</version>
- <scope>provided</scope>
- </dependency>
- <!-- 公共基础支撑 start -->
- <!-- jstl start -->
- <dependency>
- <groupId>org.apache.taglibs</groupId>
- <artifactId>taglibs-standard-spec</artifactId>
- <version>${standard-version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.taglibs</groupId>
- <artifactId>taglibs-standard-impl</artifactId>
- <version>${standard-version}</version>
- </dependency>
- <!-- jstl end -->
- <!-- commons -->
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-lang3</artifactId>
- <version>${commons-lang}</version>
- </dependency>
- <dependency>
- <groupId>commons-collections</groupId>
- <artifactId>commons-collections</artifactId>
- <version>${commons-collection-version}</version>
- </dependency>
- <dependency>
- <groupId>commons-beanutils</groupId>
- <artifactId>commons-beanutils</artifactId>
- <version>${commons-beanutils-version}</version>
- <exclusions>
- <exclusion>
- <groupId>commons-logging</groupId>
- <artifactId>commons-logging</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- loggin start -->
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <version>${slf4j}</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-log4j12</artifactId>
- <version>${slf4j}</version>
- </dependency>
- <!-- loggin end -->
- <!-- gson -->
- <dependency>
- <groupId>com.google.code.gson</groupId>
- <artifactId>gson</artifactId>
- <version>${gson-version}</version>
- </dependency>
- <!-- 公共基础支撑 end -->
- <!-- spring 配置 start -->
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-core</artifactId>
- <version>${spring-version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-context</artifactId>
- <version>${spring-version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-beans</artifactId>
- <version>${spring-version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-orm</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-tx</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-aop</artifactId>
- <version>${spring-version}</version>
- </dependency>
- <!-- spring mvc -->
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-webmvc</artifactId>
- <version>${spring-version}</version>
- </dependency>
- <!-- spring test -->
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-test</artifactId>
- <version>${spring-version}</version>
- </dependency>
- <!--spring 文件上传支持 -->
- <dependency>
- <groupId>commons-fileupload</groupId>
- <artifactId>commons-fileupload</artifactId>
- <version>${commons-fileupload-version}</version>
- </dependency>
- <!-- sping json支持 -->
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- <version>${jackson-version}</version>
- </dependency>
- <!-- spring 配置 end -->
- <!--AOP支持 aspectj 配置 start -->
- <dependency>
- <groupId>org.aspectj</groupId>
- <artifactId>aspectjrt</artifactId>
- <version>${aspectj-version}</version>
- </dependency>
- <dependency>
- <groupId>org.aspectj</groupId>
- <artifactId>aspectjweaver</artifactId>
- <version>${aspectj-version}</version>
- </dependency>
- <!-- aspectj 配置 end -->
- <!-- hibernate 配置 start -->
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-core</artifactId>
- <version>${hibernate-version}</version>
- </dependency>
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-entitymanager</artifactId>
- <version>${hibernate-version}</version>
- </dependency>
- <!-- c3p0 -->
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-c3p0</artifactId>
- <version>${hibernate-version}</version>
- </dependency>
- <!-- oracle驱动 私服第三方库 -->
- <dependency>
- <groupId>oracle</groupId>
- <artifactId>oracle-ojdbc6</artifactId>
- <version>${ojdbc-version}</version>
- </dependency>
- <!--shiro-->
- <dependency>
- <groupId>org.apache.shiro</groupId>
- <artifactId>shiro-core</artifactId>
- <version>${shiro-version}</version>
- </dependency>
- <!--jsoup-->
- <dependency>
- <groupId>org.jsoup</groupId>
- <artifactId>jsoup</artifactId>
- <version>${jsoup-version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-ooxml</artifactId>
- <version>${org.apache.poi}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.ant</groupId>
- <artifactId>ant</artifactId>
- <version>1.9.4</version>
- </dependency>
- <!-- 二级缓存
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-ehcache</artifactId>
- <version>${hibernate-version}</version>
- </dependency>-->
- <!-- hibernate 配置 end -->
- <!--ue-->
- <dependency>
- <groupId>com.baidu</groupId>
- <artifactId>ueditor</artifactId>
- <version>${ueditor-version}</version>
- </dependency>
- <dependency>
- <groupId>org.json</groupId>
- <artifactId>json</artifactId>
- <version>${json-version}</version>
- </dependency>
- <dependency>
- <groupId>commons-codec</groupId>
- <artifactId>commons-codec</artifactId>
- <version>${commons-codec}</version>
- </dependency>
- </dependencies>
- <distributionManagement>
- <repository>
- <id>deploy-release</id>
- <name>repository for deplay</name>
- <url>http://10.0.1.208:10000/nexus/content/groups/public/</url>
- </repository>
- <snapshotRepository>
- <id>deploy-snapshot</id>
- <name>repository for deplay</name>
- <url>http://10.0.1.208:10000/nexus/content/groups/public/</url>
- </snapshotRepository>
- </distributionManagement>
- <build>
- <plugins>
- <!-- 修改编译器插件版本 -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.3</version>
- <configuration>
- <source>1.7</source>
- <target>1.7</target>
- </configuration>
- </plugin>
- <!--解决测试乱码问题-->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>2.7.2</version>
- <configuration>
- <forkMode>once</forkMode>
- <argLine>-Dfile.encoding=UTF-8</argLine>
- <systemProperties>
- <property>
- <name>net.sourceforge.cobertura.datafile</name>
- <value>target/cobertura/cobertura.ser</value>
- </property>
- </systemProperties>
- </configuration>
- </plugin>
- </plugins>
- <finalName>city_base</finalName>
- </build>
- </project>
|