dubbo war 配置文件
<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> <parent> <groupId>wusc.edu.pay.common</groupId> <artifactId>pay-common-parent</artifactId> <version>1.0-SNAPSHOT</version> <relativePath>../pay-common-parent</relativePath> </parent> <groupId>wusc.edu.pay.web</groupId> <artifactId>pay-web-boss</artifactId> <version>${pay-web-boss.version}</version> <packaging>war</packaging> <name>pay-web-boss</name> <url>http://maven.apache.org</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <log4j.leve>debug</log4j.leve> <log4j.ale>debug</log4j.ale> </properties> <!-- 过虑日志中的变量 --> <profiles> <profile> <build> <filters> <filter>WEB-INF/classes/log4j.properties</filter> </filters> </build> </profile> </profiles> <build> <finalName>pay-web-boss</finalName> <resources> <resource> <targetPath>${project.build.directory}/classes</targetPath> <directory>src/main/resources</directory> <filtering>true</filtering> <includes> <include>**/*.xml</include> <include>**/*.properties</include> <include>**/*.conf</include> <include>**/*.vm</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>2.1.1</version> <configuration> <webResources> <resource> <directory>deploy/${env}/image</directory> <targetPath>statics/themes/default/images</targetPath> </resource> <resource> <directory>deploy/${env}/fastdfs</directory> <targetPath>WEB-INF/classes/fastdfs</targetPath> </resource> </webResources> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>wusc.edu.pay.common</groupId> <artifactId>pay-common</artifactId> <version>${pay-common.version}</version> </dependency> <dependency> <groupId>wusc.edu.pay.common</groupId> <artifactId>pay-common-config</artifactId> <version>${env}-${pay-common-config.version}</version> </dependency> <dependency> <groupId>wusc.edu.pay.common</groupId> <artifactId>pay-common-core</artifactId> <version>${pay-common-core.version}</version> </dependency> <dependency> <groupId>wusc.edu.pay.common</groupId> <artifactId>pay-common-web</artifactId> <version>${pay-common-web.version}</version> </dependency> <dependency> <groupId>wusc.edu.pay.facade</groupId> <artifactId>pay-facade-account</artifactId> <version>${pay-facade-account.version}</version> </dependency> <dependency> <groupId>wusc.edu.pay.facade</groupId> <artifactId>pay-facade-bank</artifactId> <version>${pay-facade-bank.version}</version> </dependency> <dependency> <groupId>wusc.edu.pay.facade</groupId> <artifactId>pay-facade-boss</artifactId> <version>${pay-facade-boss.version}</version> </dependency> <dependency> <groupId>wusc.edu.pay.facade</groupId> <artifactId>pay-facade-fee</artifactId> <version>${pay-facade-fee.version}</version> </dependency> <dependency> <groupId>wusc.edu.pay.facade</groupId> <artifactId>pay-facade-settlement</artifactId> <version>${pay-facade-settlement.version}</version> </dependency> <dependency> <groupId>wusc.edu.pay.facade</groupId> <artifactId>pay-facade-payrule</artifactId> <version>${pay-facade-payrule.version}</version> </dependency> <dependency> <groupId>wusc.edu.pay.facade</groupId> <artifactId>pay-facade-cost</artifactId> <version>${pay-facade-cost.version}</version> </dependency> <dependency> <groupId>wusc.edu.pay.facade</groupId> <artifactId>pay-facade-limit</artifactId> <version>${pay-facade-limit.version}</version> </dependency> <dependency> <groupId>wusc.edu.pay.facade</groupId> <artifactId>pay-facade-trade</artifactId> <version>${pay-facade-trade.version}</version> </dependency> <dependency> <groupId>wusc.edu.pay.facade</groupId> <artifactId>pay-facade-notify</artifactId> <version>${pay-facade-notify.version}</version> </dependency> <dependency> <groupId>wusc.edu.pay.facade</groupId> <artifactId>pay-facade-remit</artifactId> <version>${pay-facade-remit.version}</version> </dependency> <dependency> <groupId>wusc.edu.pay.facade</groupId> <artifactId>pay-facade-report</artifactId> <version>${pay-facade-report.version}</version> </dependency> <dependency> <groupId>wusc.edu.pay.facade</groupId> <artifactId>pay-facade-user</artifactId> <version>${pay-facade-user.version}</version> </dependency> <!-- Common Dependency Begin --> <dependency> <groupId>antlr</groupId> <artifactId>antlr</artifactId> </dependency> <dependency> <groupId>aopalliance</groupId> <artifactId>aopalliance</artifactId> </dependency> <dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> </dependency> <dependency> <groupId>cglib</groupId> <artifactId>cglib</artifactId> </dependency> <dependency> <groupId>net.sf.json-lib</groupId> <artifactId>json-lib</artifactId> <classifier>jdk15</classifier> <scope>compile</scope> </dependency> <dependency> <groupId>ognl</groupId> <artifactId>ognl</artifactId> </dependency> <dependency> <groupId>oro</groupId> <artifactId>oro</artifactId> </dependency> <dependency> <groupId>commons-beanutils</groupId> <artifactId>commons-beanutils</artifactId> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> </dependency> <dependency> <groupId>commons-digester</groupId> <artifactId>commons-digester</artifactId> </dependency> <dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </dependency> <dependency> <groupId>commons-validator</groupId> <artifactId>commons-validator</artifactId> </dependency> <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> </dependency> <dependency> <groupId>net.sf.ezmorph</groupId> <artifactId>ezmorph</artifactId> </dependency> <dependency> <groupId>javassist</groupId> <artifactId>javassist</artifactId> </dependency> <dependency> <groupId>jstl</groupId> <artifactId>jstl</artifactId> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </dependency> <dependency> <groupId>com.belerweb</groupId> <artifactId>pinyin4j</artifactId> <version>2.5.0</version> </dependency> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity</artifactId> <version>1.7</version> </dependency> <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.4.7</version> </dependency> <dependency> <groupId>quartz</groupId> <artifactId>quartz</artifactId> <version>1.5.2</version> </dependency> <!-- Common Dependency End --> <!-- Spring Dependency Begin --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aop</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-aspects</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-beans</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context-support</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-expression</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-instrument</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-instrument-tomcat</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jdbc</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-jms</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-orm</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-oxm</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-struts</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc-portlet</artifactId> </dependency> <!-- Spring Dependency End --> <!-- MyBatis Dependency Begin --> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis-spring</artifactId> </dependency> <!-- MyBatis Dependency End --> <!-- Struts2 Dependency Begin --> <dependency> <groupId>org.apache.struts</groupId> <artifactId>struts2-json-plugin</artifactId> </dependency> <dependency> <groupId>org.apache.struts</groupId> <artifactId>struts2-convention-plugin</artifactId> </dependency> <dependency> <groupId>org.apache.struts</groupId> <artifactId>struts2-core</artifactId> </dependency> <dependency> <groupId>org.apache.struts</groupId> <artifactId>struts2-spring-plugin</artifactId> </dependency> <dependency> <groupId>org.apache.struts.xwork</groupId> <artifactId>xwork-core</artifactId> </dependency> <!-- Struts2 Dependency End --> <!-- Others Begin --> <dependency> <groupId>google.code</groupId> <artifactId>kaptcha</artifactId> </dependency> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>servlet-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.tomcat</groupId> <artifactId>jsp-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </dependency> <!-- Others End --> <!-- dubbo 需要的jar start --> <dependency> <groupId>org.jboss.netty</groupId> <artifactId>netty</artifactId> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>dubbo</artifactId> <exclusions> <exclusion> <groupId>org.springframework</groupId> <artifactId>spring</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.zookeeper</groupId> <artifactId>zookeeper</artifactId> </dependency> <dependency> <groupId>com.101tec</groupId> <artifactId>zkclient</artifactId> </dependency> <!-- dubbo 需要的jar end --> <dependency> <groupId>org.apache.activemq</groupId> <artifactId>activemq-all</artifactId> </dependency> <dependency> <groupId>org.apache.activemq</groupId> <artifactId>activemq-pool</artifactId> </dependency> </dependencies> </project>
posted on 2016-12-06 00:32 World_maker 阅读(218) 评论(0) 编辑 收藏 举报