我的maven项目常用配置

来源:互联网 发布:绝对领域 知乎 编辑:程序博客网 时间:2024/04/25 13:22
父项目pom配置:
<?xml version="1.0" encoding="UTF-8"?><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>XXXXXX</groupId>  <artifactId>XXXXX</artifactId>  <packaging>pom</packaging>  <version>2.0.0</version>    <name>XXXX</name>  <description>XXXXX</description>  <url>http://maven.apache.org</url><properties><project.build.sourceEncoding>UTF-8</project.build.sourceEncoding><project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding><spring.version>3.2.10.RELEASE</spring.version></properties><organization><name>joojee</name><url>http://www.joojee.cn/</url></organization><inceptionYear>2015</inceptionYear><repositories><repository><id>joojee</id><name>joojee Repository</name><layout>default</layout><url>http://192.168.1.186:8081/nexus/content/groups/public/</url></repository></repositories><build><plugins><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-compiler-plugin</artifactId><version>2.3.2</version><configuration><source>1.6</source><target>1.6</target><encoding>${project.build.sourceEncoding}</encoding></configuration></plugin><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-surefire-plugin</artifactId><version>2.4.2</version><configuration><skipTests>true</skipTests><testFailureIgnore>true</testFailureIgnore></configuration></plugin><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-site-plugin</artifactId><version>3.1</version><configuration><locales>zh_CN</locales></configuration></plugin></plugins></build><dependencies><dependency><groupId>junit</groupId><artifactId>junit</artifactId><version>4.8.2</version><!-- <scope>test</scope> --></dependency><!-- spring --> <!-- spring framework -->        <dependency>            <groupId>org.springframework</groupId>            <artifactId>spring-jms</artifactId>            <version>${spring.version}</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-webmvc</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-context-support</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-orm</artifactId>            <version>${spring.version}</version>        </dependency>        <dependency>            <groupId>org.springframework</groupId>            <artifactId>spring-jpa</artifactId>            <version>2.0.8</version>            <exclusions>                <exclusion>                    <groupId>org.springframework</groupId>                    <artifactId>spring-jdbc</artifactId>                </exclusion>            </exclusions>        </dependency>        <dependency>            <groupId>org.springframework</groupId>            <artifactId>spring-aspects</artifactId>            <version>${spring.version}</version>        </dependency>         <dependency>             <groupId>org.springframework</groupId>             <artifactId>spring-test</artifactId>             <version>${spring.version}</version>         </dependency>        <dependency>            <groupId>org.apache.commons</groupId>            <artifactId>commons-lang3</artifactId>            <version>3.0.1</version>            <type>jar</type>            <scope>compile</scope>        </dependency><dependency><groupId>org.aspectj</groupId><artifactId>aspectjweaver</artifactId><version>1.6.12</version></dependency><dependency><groupId>cglib</groupId><artifactId>cglib</artifactId><version>2.2</version></dependency><dependency>  <groupId>org.apache.httpcomponents</groupId>  <artifactId>httpclient</artifactId>  <version>4.3.3</version></dependency><dependency>  <groupId>org.apache.httpcomponents</groupId>  <artifactId>httpcore</artifactId>  <version>4.3.3</version></dependency><dependency><groupId>org.apache.httpcomponents</groupId><artifactId>httpmime</artifactId><version>4.1.1</version></dependency>                <dependency><groupId>commons-dbcp</groupId><artifactId>commons-dbcp</artifactId><version>20030825.184428</version></dependency><dependency><groupId>javax.servlet</groupId><artifactId>servlet-api</artifactId><version>2.5</version></dependency><dependency><groupId>org.tuckey</groupId><artifactId>urlrewritefilter</artifactId><version>3.1.0</version></dependency><dependency><groupId>javax.transaction</groupId><artifactId>jta</artifactId><version>1.1</version></dependency><dependency><groupId>javax.persistence</groupId><artifactId>persistence-api</artifactId><version>1.0</version></dependency><dependency><groupId>commons-logging</groupId><artifactId>commons-logging</artifactId><version>1.1.1</version></dependency><dependency><groupId>commons-beanutils</groupId><artifactId>commons-beanutils</artifactId><version>1.8.3</version></dependency><dependency><groupId>commons-fileupload</groupId><artifactId>commons-fileupload</artifactId><version>1.2.1</version></dependency><dependency><groupId>com.caucho</groupId><artifactId>hessian</artifactId><version>4.0.7</version></dependency>         <dependency>             <groupId>dom4j</groupId>             <artifactId>dom4j</artifactId>             <version>1.6.1</version>         </dependency>                  <dependency>             <groupId>jstl</groupId>             <artifactId>jstl</artifactId>             <version>1.2</version>         </dependency>        <!-- log support -->        <dependency>            <groupId>org.slf4j</groupId>            <artifactId>slf4j-api</artifactId>            <version>1.6.4</version>        </dependency>        <dependency>            <groupId>org.slf4j</groupId>            <artifactId>log4j-over-slf4j</artifactId>            <version>1.6.4</version>        </dependency>        <dependency>            <groupId>org.slf4j</groupId>            <artifactId>jcl-over-slf4j</artifactId>            <version>1.6.4</version>        </dependency>        <dependency>            <groupId>ch.qos.logback</groupId>            <artifactId>logback-classic</artifactId>            <version>1.0.12</version>        </dependency>        <!-- json -->        <dependency>            <groupId>com.alibaba</groupId>            <artifactId>fastjson</artifactId>            <version>1.1.26</version>        </dependency>        <!-- jedis -->        <dependency>            <groupId>redis.clients</groupId>            <artifactId>jedis</artifactId>            <version>2.1.0</version>        </dependency><!-- 数据导出 --><dependency>  <groupId>commons-codec</groupId>  <artifactId>commons-codec</artifactId>  <version>1.9</version></dependency>        <dependency>  <groupId>com.joojee.usercenter</groupId>  <artifactId>joojee-usercenter-passport</artifactId>  <version>1.0.0</version></dependency><dependency>  <groupId>com.joojee.usercenter</groupId>  <artifactId>joojee-usercenter-oauth</artifactId>  <version>1.0.0</version></dependency><dependency><groupId>com.fasterxml.jackson</groupId><artifactId>jackson-module-jaxb-annotations</artifactId><version>2.3.2</version></dependency><dependency>  <groupId>com.fasterxml.jackson</groupId>  <artifactId>jackson-core</artifactId>  <version>2.3.2</version></dependency><dependency><groupId>com.fasterxml.jackson</groupId><artifactId>jackson-databind</artifactId><version>2.3.2</version></dependency><dependency><groupId>com.fasterxml.jackson</groupId><artifactId>jackson-jaxrs-json-provider</artifactId><version>2.3.2</version></dependency><dependency><groupId>com.fasterxml.jackson</groupId><artifactId>jackson-jaxrs-base</artifactId><version>2.3.2</version></dependency><dependency>  <groupId>com.fasterxml.jackson</groupId>  <artifactId>jackson-annotations</artifactId>  <version>2.3.2</version></dependency><dependency>  <groupId>org.baidu</groupId>  <artifactId>ueditor</artifactId>  <version>1.1.1</version></dependency><dependency>  <groupId>org.json</groupId>  <artifactId>json</artifactId>  <version>1.0</version></dependency><dependency><groupId>commons-io</groupId><artifactId>commons-io</artifactId><version>2.4</version></dependency><dependency><groupId>org.jsoup</groupId><artifactId>jsoup</artifactId><version>1.8.1</version></dependency><dependency><groupId>commons-httpclient</groupId><artifactId>commons-httpclient</artifactId><version>3.0.1</version></dependency><!-- 个推依赖包 --><dependency><groupId>com.gexin.rp.sdk</groupId><artifactId>http</artifactId><version>2.0.0.9</version></dependency><dependency><groupId>com.gexin.rp.sdk</groupId><artifactId>template</artifactId><version>2.0.0.5</version></dependency><dependency><groupId>com.gexin.rp.sdk</groupId><artifactId>base</artifactId><version>2.0.0.5</version></dependency><dependency><groupId>org.apache.commons</groupId><artifactId>commons-httpclient</artifactId><version>3.0.1</version></dependency><dependency><groupId>com.gexin.rp.sdk</groupId><artifactId>jackson-all</artifactId><version>1.8.5</version></dependency><dependency><groupId>com.gexin.rp.sdk</groupId><artifactId>protobuf-java</artifactId><version>2.4.1</version></dependency><!-- cxf --><dependency>  <groupId>cn.joojee.webservice</groupId>  <artifactId>xmlschema-core</artifactId>  <version>2.0.3</version></dependency><dependency>  <groupId>cn.joojee.webservice</groupId>  <artifactId>cxf-core</artifactId>  <version>3.0.3</version></dependency><dependency>  <groupId>cn.joojee.webservice</groupId>  <artifactId>cxf-rt-bindings-coloc</artifactId>  <version>3.0.3</version></dependency><dependency>  <groupId>cn.joojee.webservice</groupId>  <artifactId>cxf-rt-bindings-soap</artifactId>  <version>3.0.3</version></dependency><dependency>  <groupId>cn.joojee.webservice</groupId>  <artifactId>cxf-rt-databinding-jaxb</artifactId>  <version>3.0.3</version></dependency><dependency>  <groupId>cn.joojee.webservice</groupId>  <artifactId>cxf-rt-frontend-jaxws</artifactId>  <version>3.0.3</version></dependency><dependency>  <groupId>cn.joojee.webservice</groupId>  <artifactId>cxf-rt-frontend-simple</artifactId>  <version>3.0.3</version></dependency><dependency>  <groupId>cn.joojee.webservice</groupId>  <artifactId>cxf-rt-transports-http</artifactId>  <version>3.0.3</version></dependency><dependency>  <groupId>cn.joojee.webservice</groupId>  <artifactId>cxf-rt-wsdl</artifactId>  <version>3.0.3</version></dependency><dependency>  <groupId>cn.joojee.webservice</groupId>  <artifactId>neethi</artifactId>  <version>3.0.3</version></dependency><dependency>  <groupId>cn.joojee.webservice</groupId>  <artifactId>stax2-api</artifactId>  <version>3.1.4</version></dependency><dependency>  <groupId>cn.joojee.webservice</groupId>  <artifactId>woodstox-core-asl</artifactId>  <version>4.4.1</version></dependency><dependency>  <groupId>cn.joojee.webservice</groupId>  <artifactId>wsdl4j</artifactId>  <version>1.6.3</version></dependency><dependency>  <groupId>cn.joojee.webservice</groupId>  <artifactId>asm</artifactId>  <version>3.3.1</version></dependency><dependency>  <groupId>cn.joojee.webservice</groupId>  <artifactId>cxf-rt-rs-client</artifactId>  <version>3.0.3</version></dependency><dependency>  <groupId>cn.joojee.webservice</groupId>  <artifactId>xml-resolver</artifactId>  <version>1.2</version></dependency>  <dependency>  <groupId>cn.joojee.webservice</groupId>  <artifactId>javax.ws.rs-api</artifactId>  <version>2.2.6</version> </dependency><!-- hessian --><dependency><groupId>com.caucho</groupId><artifactId>hessian</artifactId><version>4.0.7</version></dependency><!--   activemq相关依赖 -->  <dependency>          <groupId>org.apache.activemq</groupId>          <artifactId>activemq-core</artifactId>          <version>5.7.0</version>      </dependency>      <dependency>          <groupId>org.apache.activemq</groupId>          <artifactId>activemq-broker</artifactId>          <version>5.10.1</version>      </dependency>      <dependency>          <groupId>org.apache.xbean</groupId>          <artifactId>xbean-spring</artifactId>          <version>3.16</version></dependency></dependencies><modules><module>joojee-newsqt-mobile-web</module><module>joojee-newsqt-common</module><module>joojee-newsqt-service</module><module>joojee-newsqt-enterprise</module></modules><!-- 构件分发管理 --><!-- <distributionManagement><repository><id>joojee-releases</id><name>Joojee-releases Repository</name><url><span style="font-family: Arial, Helvetica, sans-serif;">joojee-releases</span><span style="font-family: Arial, Helvetica, sans-serif;">私服地址</url></span></repository><snapshotRepository><id>joojee-snapshots</id><name>Joojee-snapshots Repository</name><url><span style="font-family: Arial, Helvetica, sans-serif;">joojee-snapshots</span><span style="font-family: Arial, Helvetica, sans-serif;">私服地址</url></span></snapshotRepository></distributionManagement>  --></project>



子项目pom配置:

<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>joojee.newsqt.servicedirect</groupId><artifactId>joojee-newsqt-servicedirect</artifactId><version>2.0.0</version><packaging>war</packaging><name>joojee-newsqt-servicedirect</name><url>http://maven.apache.org</url><properties><project.build.sourceEncoding>UTF-8</project.build.sourceEncoding><package.environment>dohko</package.environment><spring.version>3.2.10.RELEASE</spring.version></properties><organization><name>joojee</name><url>http://www.joojee.cn/</url></organization>    <repositories><repository><id>joojee</id><name>joojee Repository</name><layout>default</layout><url>http://192.168.1.186:8081/nexus/content/groups/public/</url></repository></repositories>      <profiles><profile><id>localhost</id><properties><package.environment>localhost</package.environment></properties></profile><profile><id>test</id><properties><package.environment>test</package.environment></properties></profile><profile><id>www</id><properties><package.environment>www</package.environment></properties></profile><profile><id>dohko</id><properties><package.environment>dohko</package.environment></properties></profile>  </profiles>    <build>  <!-- <finalName>ROOT</finalName> --><plugins><plugin><测试插件配置><groupId>org.apache.maven.plugins</groupId><artifactId>maven-surefire-plugin</artifactId><version>2.5</version><configuration><skipTests>true</skipTests></configuration></plugin><plugin><war打包插件配置><artifactId>maven-war-plugin</artifactId><configuration><warName>ROOT</warName><webXml>${basedir}/WebRoot/WEB-INF/web.xml</webXml><failOnMissingWebXml>true</failOnMissingWebXml><filters><filter>${basedir}/src/main/resources/env/${package.environment}.properties</filter></filters><webResources><resource><directory>${basedir}/WebRoot</directory><includes><include>**/*.*</include></includes></resource><resource><filtering>true</filtering><directory>src/main/resources</directory><excludes><exclude>env/*.*</exclude></excludes><targetPath>WEB-INF/classes</targetPath></resource></webResources></configuration></plugin><plugin><jetty插件配置><groupId>org.mortbay.jetty</groupId><artifactId>jetty-maven-plugin</artifactId><version>8.1.2.v20120308</version><configuration><webApp><contextPath>/</contextPath></webApp><war>${project.build.directory}/${project.build.finalName}.war</war><webAppSourceDirectory>${basedir}/WebRoot</webAppSourceDirectory></configuration></plugin></plugins></build>  <dependencies>        <dependency>            <groupId>org.springframework</groupId>            <artifactId>spring-jms</artifactId>            <version>${spring.version}</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-webmvc</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-context-support</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-orm</artifactId>            <version>${spring.version}</version>        </dependency>        <dependency>            <groupId>org.springframework</groupId>            <artifactId>spring-jpa</artifactId>            <version>2.0.8</version>            <exclusions>                <exclusion>                    <groupId>org.springframework</groupId>                    <artifactId>spring-jdbc</artifactId>                </exclusion>            </exclusions>        </dependency>        <dependency>            <groupId>org.springframework</groupId>            <artifactId>spring-aspects</artifactId>            <version>${spring.version}</version>        </dependency>         <dependency>             <groupId>org.springframework</groupId>             <artifactId>spring-test</artifactId>             <version>${spring.version}</version>         </dependency>        <dependency>            <groupId>org.apache.commons</groupId>            <artifactId>commons-lang3</artifactId>            <version>3.0.1</version>            <type>jar</type>            <scope>compile</scope>        </dependency><dependency><groupId>org.aspectj</groupId><artifactId>aspectjweaver</artifactId><version>1.6.12</version></dependency><dependency><groupId>cglib</groupId><artifactId>cglib</artifactId><version>2.2</version></dependency><dependency>  <groupId>org.apache.httpcomponents</groupId>  <artifactId>httpclient</artifactId>  <version>4.3.3</version></dependency><dependency>  <groupId>org.apache.httpcomponents</groupId>  <artifactId>httpcore</artifactId>  <version>4.3.3</version></dependency><dependency><groupId>org.apache.httpcomponents</groupId><artifactId>httpmime</artifactId><version>4.1.1</version></dependency>                <dependency><groupId>commons-dbcp</groupId><artifactId>commons-dbcp</artifactId><version>20030825.184428</version></dependency><dependency><groupId>javax.servlet</groupId><artifactId>servlet-api</artifactId><version>2.5</version></dependency><dependency><groupId>org.tuckey</groupId><artifactId>urlrewritefilter</artifactId><version>3.1.0</version></dependency><dependency><groupId>javax.transaction</groupId><artifactId>jta</artifactId><version>1.1</version></dependency><dependency><groupId>javax.persistence</groupId><artifactId>persistence-api</artifactId><version>1.0</version></dependency><dependency><groupId>commons-logging</groupId><artifactId>commons-logging</artifactId><version>1.1.1</version></dependency><dependency><groupId>commons-beanutils</groupId><artifactId>commons-beanutils</artifactId><version>1.8.3</version></dependency><dependency><groupId>commons-fileupload</groupId><artifactId>commons-fileupload</artifactId><version>1.2.1</version></dependency><dependency><groupId>com.caucho</groupId><artifactId>hessian</artifactId><version>4.0.7</version></dependency>         <dependency>             <groupId>dom4j</groupId>             <artifactId>dom4j</artifactId>             <version>1.6.1</version>         </dependency>                  <dependency>             <groupId>jstl</groupId>             <artifactId>jstl</artifactId>             <version>1.2</version>         </dependency>        <!-- log support -->        <dependency>            <groupId>org.slf4j</groupId>            <artifactId>slf4j-api</artifactId>            <version>1.6.4</version>        </dependency>        <dependency>            <groupId>org.slf4j</groupId>            <artifactId>log4j-over-slf4j</artifactId>            <version>1.6.4</version>        </dependency>        <dependency>            <groupId>org.slf4j</groupId>            <artifactId>jcl-over-slf4j</artifactId>            <version>1.6.4</version>        </dependency>        <dependency>            <groupId>ch.qos.logback</groupId>            <artifactId>logback-classic</artifactId>            <version>1.0.12</version>        </dependency>        <!-- json -->        <dependency>            <groupId>com.alibaba</groupId>            <artifactId>fastjson</artifactId>            <version>1.1.26</version>        </dependency>        <!-- jedis -->        <dependency>            <groupId>redis.clients</groupId>            <artifactId>jedis</artifactId>            <version>2.1.0</version>        </dependency><!-- 数据导出 --><dependency>  <groupId>commons-codec</groupId>  <artifactId>commons-codec</artifactId>  <version>1.9</version></dependency>        <dependency>  <groupId>com.joojee.usercenter</groupId>  <artifactId>joojee-usercenter-passport</artifactId>  <version>1.0.0</version></dependency><dependency>  <groupId>com.joojee.usercenter</groupId>  <artifactId>joojee-usercenter-oauth</artifactId>  <version>1.0.0</version></dependency><dependency><groupId>com.fasterxml.jackson</groupId><artifactId>jackson-module-jaxb-annotations</artifactId><version>2.3.2</version></dependency><dependency>  <groupId>com.fasterxml.jackson</groupId>  <artifactId>jackson-core</artifactId>  <version>2.3.2</version></dependency><dependency><groupId>com.fasterxml.jackson</groupId><artifactId>jackson-databind</artifactId><version>2.3.2</version></dependency><dependency><groupId>com.fasterxml.jackson</groupId><artifactId>jackson-jaxrs-json-provider</artifactId><version>2.3.2</version></dependency><dependency><groupId>com.fasterxml.jackson</groupId><artifactId>jackson-jaxrs-base</artifactId><version>2.3.2</version></dependency><dependency>  <groupId>com.fasterxml.jackson</groupId>  <artifactId>jackson-annotations</artifactId>  <version>2.3.2</version></dependency><dependency>  <groupId>org.baidu</groupId>  <artifactId>ueditor</artifactId>  <version>1.1.1</version></dependency><dependency>  <groupId>org.json</groupId>  <artifactId>json</artifactId>  <version>1.0</version></dependency><dependency><groupId>commons-io</groupId><artifactId>commons-io</artifactId><version>2.4</version></dependency><dependency><groupId>org.jsoup</groupId><artifactId>jsoup</artifactId><version>1.8.1</version></dependency><dependency><groupId>commons-httpclient</groupId><artifactId>commons-httpclient</artifactId><version>3.0.1</version></dependency><!-- 个推依赖包 --><!-- <dependency><groupId>com.gexin.rp.sdk</groupId><artifactId>http</artifactId><version>2.0.0.9</version></dependency><dependency><groupId>com.gexin.rp.sdk</groupId><artifactId>template</artifactId><version>2.0.0.5</version></dependency><dependency><groupId>com.gexin.rp.sdk</groupId><artifactId>base</artifactId><version>2.0.0.5</version></dependency><dependency><groupId>org.apache.commons</groupId><artifactId>commons-httpclient</artifactId><version>3.0.1</version></dependency><dependency><groupId>com.gexin.rp.sdk</groupId><artifactId>jackson-all</artifactId><version>1.8.5</version></dependency><dependency><groupId>com.gexin.rp.sdk</groupId><artifactId>protobuf-java</artifactId><version>2.4.1</version></dependency> --><!-- cxf --><dependency><groupId>cn.joojee.webservice</groupId><artifactId>xmlschema-core</artifactId><version>2.0.3</version></dependency><dependency><groupId>cn.joojee.webservice</groupId><artifactId>cxf-core</artifactId><version>3.0.3</version></dependency><dependency><groupId>cn.joojee.webservice</groupId><artifactId>cxf-rt-bindings-coloc</artifactId><version>3.0.3</version></dependency><dependency><groupId>cn.joojee.webservice</groupId><artifactId>cxf-rt-bindings-soap</artifactId><version>3.0.3</version></dependency><dependency><groupId>cn.joojee.webservice</groupId><artifactId>cxf-rt-databinding-jaxb</artifactId><version>3.0.3</version></dependency><dependency><groupId>cn.joojee.webservice</groupId><artifactId>cxf-rt-frontend-jaxws</artifactId><version>3.0.3</version></dependency><dependency><groupId>cn.joojee.webservice</groupId><artifactId>cxf-rt-frontend-simple</artifactId><version>3.0.3</version></dependency><dependency><groupId>cn.joojee.webservice</groupId><artifactId>cxf-rt-transports-http</artifactId><version>3.0.3</version></dependency><dependency><groupId>cn.joojee.webservice</groupId><artifactId>cxf-rt-wsdl</artifactId><version>3.0.3</version></dependency><dependency><groupId>cn.joojee.webservice</groupId><artifactId>neethi</artifactId><version>3.0.3</version></dependency><dependency><groupId>cn.joojee.webservice</groupId><artifactId>stax2-api</artifactId><version>3.1.4</version></dependency><dependency><groupId>cn.joojee.webservice</groupId><artifactId>woodstox-core-asl</artifactId><version>4.4.1</version></dependency><dependency><groupId>cn.joojee.webservice</groupId><artifactId>wsdl4j</artifactId><version>1.6.3</version></dependency><dependency><groupId>cn.joojee.webservice</groupId><artifactId>asm</artifactId><version>3.3.1</version></dependency><dependency><groupId>cn.joojee.webservice</groupId><artifactId>cxf-rt-rs-client</artifactId><version>3.0.3</version></dependency><dependency><groupId>cn.joojee.webservice</groupId><artifactId>xml-resolver</artifactId><version>1.2</version></dependency><dependency><groupId>cn.joojee.webservice</groupId><artifactId>javax.ws.rs-api</artifactId><version>2.2.6</version></dependency><!-- hessian --><dependency><groupId>com.caucho</groupId><artifactId>hessian</artifactId><version>4.0.7</version></dependency><!-- activemq相关依赖 <dependency><groupId>org.apache.activemq</groupId><artifactId>activemq-core</artifactId><version>5.7.0</version></dependency><dependency><groupId>org.apache.activemq</groupId><artifactId>activemq-broker</artifactId><version>5.10.1</version></dependency><dependency><groupId>org.apache.xbean</groupId><artifactId>xbean-spring</artifactId><version>3.16</version></dependency> --><dependency><groupId>com.joojee.sqt</groupId><artifactId>joojee-newsqt-hessianclient</artifactId><version>1.0.0</version></dependency>  </dependencies></project>


0 0