201 lines
6.7 KiB
XML
201 lines
6.7 KiB
XML
<!--
|
|
- Copyright 1999-2011 Alibaba Group.
|
|
-
|
|
- Licensed under the Apache License, Version 2.0 (the "License");
|
|
- you may not use this file except in compliance with the License.
|
|
- You may obtain a copy of the License at
|
|
-
|
|
- http://www.apache.org/licenses/LICENSE-2.0
|
|
-
|
|
- Unless required by applicable law or agreed to in writing, software
|
|
- distributed under the License is distributed on an "AS IS" BASIS,
|
|
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
- See the License for the specific language governing permissions and
|
|
- limitations under the License.
|
|
-->
|
|
<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>com.alibaba</groupId>
|
|
<artifactId>dubbo-parent</artifactId>
|
|
<version>2.0.10-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>dubbo</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>Dubbo All In One</name>
|
|
<description>The all in one project of dubbo</description>
|
|
<properties>
|
|
<skip_maven_deploy>false</skip_maven_deploy>
|
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>dubbo-config</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
<artifactId>jetty</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>dubbo-remoting-netty</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>dubbo-remoting-mina</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.apache.mina</groupId>
|
|
<artifactId>mina-core</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>dubbo-remoting-grizzly</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.glassfish.grizzly</groupId>
|
|
<artifactId>grizzly-core</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>dubbo-remoting-http</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.mortbay.jetty</groupId>
|
|
<artifactId>jetty</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
<artifactId>httpclient</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>dubbo-rpc-default</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>dubbo-rpc-injvm</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>dubbo-rpc-rmi</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>dubbo-rpc-hessian</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.caucho</groupId>
|
|
<artifactId>hessian</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>dubbo-registry-default</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>dubbo-registry-multicast</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>dubbo-registry-zookeeper</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.apache.zookeeper</groupId>
|
|
<artifactId>zookeeper</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba</groupId>
|
|
<artifactId>dubbo-monitor-default</artifactId>
|
|
<version>${project.parent.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<phase>none</phase>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
<version>1.4</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>shade</goal>
|
|
</goals>
|
|
<configuration>
|
|
<createSourcesJar>true</createSourcesJar>
|
|
<promoteTransitiveDependencies>true</promoteTransitiveDependencies>
|
|
<artifactSet>
|
|
<includes>
|
|
<include>com.alibaba:hessian-lite</include>
|
|
<include>com.alibaba:dubbo-common</include>
|
|
<include>com.alibaba:dubbo-remoting</include>
|
|
<include>com.alibaba:dubbo-remoting-netty</include>
|
|
<include>com.alibaba:dubbo-remoting-mina</include>
|
|
<include>com.alibaba:dubbo-remoting-grizzly</include>
|
|
<include>com.alibaba:dubbo-remoting-http</include>
|
|
<include>com.alibaba:dubbo-rpc</include>
|
|
<include>com.alibaba:dubbo-rpc-default</include>
|
|
<include>com.alibaba:dubbo-rpc-injvm</include>
|
|
<include>com.alibaba:dubbo-rpc-rmi</include>
|
|
<include>com.alibaba:dubbo-rpc-hessian</include>
|
|
<include>com.alibaba:dubbo-cluster</include>
|
|
<include>com.alibaba:dubbo-registry</include>
|
|
<include>com.alibaba:dubbo-registry-default</include>
|
|
<include>com.alibaba:dubbo-registry-multicast</include>
|
|
<include>com.alibaba:dubbo-registry-zookeeper</include>
|
|
<include>com.alibaba:dubbo-monitor</include>
|
|
<include>com.alibaba:dubbo-monitor-default</include>
|
|
<include>com.alibaba:dubbo-config</include>
|
|
<include>com.alibaba:dubbo-container</include>
|
|
</includes>
|
|
</artifactSet>
|
|
<transformers>
|
|
<transformer
|
|
implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
|
|
</transformers>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |