提交 e2683c41 编写于 作者: W william.liangf

refactor package

git-svn-id: http://code.alibabatech.com/svn/dubbo/trunk@1431 1a56cb94-b969-4eaa-88fa-be21384802f2
上级 0986e198
......@@ -21,9 +21,9 @@
<artifactId>dubbo-parent</artifactId>
<version>2.2.0-SNAPSHOT</version>
</parent>
<artifactId>dubbo-cluster</artifactId>
<artifactId>dubbo-cluster-api</artifactId>
<packaging>jar</packaging>
<name>Dubbo Cluster Module</name>
<name>${project.artifactId}</name>
<description>The cluster module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
......@@ -31,7 +31,7 @@
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-rpc</artifactId>
<artifactId>dubbo-rpc-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
......
<!--
- 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.2.0-SNAPSHOT</version>
</parent>
<artifactId>dubbo-cluster-faulttolerant</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>The cluster fault tolerant module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
</properties>
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-cluster-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
<!--
- 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.2.0-SNAPSHOT</version>
</parent>
<artifactId>dubbo-cluster-loadbalance</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>The cluster load balance module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
</properties>
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-cluster-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
<!--
- 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.2.0-SNAPSHOT</version>
</parent>
<artifactId>dubbo-cluster-router</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>The cluster router module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
</properties>
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-cluster-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
......@@ -23,7 +23,7 @@
</parent>
<artifactId>dubbo-common</artifactId>
<packaging>jar</packaging>
<name>Dubbo Common Module</name>
<name>${project.artifactId}</name>
<description>The common module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
......
......@@ -21,9 +21,9 @@
<artifactId>dubbo-parent</artifactId>
<version>2.2.0-SNAPSHOT</version>
</parent>
<artifactId>dubbo-config</artifactId>
<artifactId>dubbo-config-api</artifactId>
<packaging>jar</packaging>
<name>Dubbo Config Module</name>
<name>${project.artifactId}</name>
<description>The config module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
......@@ -31,27 +31,27 @@
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-registry</artifactId>
<artifactId>dubbo-registry-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-monitor</artifactId>
<artifactId>dubbo-monitor-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-remoting</artifactId>
<artifactId>dubbo-remoting-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-validation</artifactId>
<artifactId>dubbo-filter-validation</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-cache</artifactId>
<artifactId>dubbo-filter-cache</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
......
......@@ -23,7 +23,7 @@
</parent>
<artifactId>dubbo-config-guice</artifactId>
<packaging>jar</packaging>
<name>Dubbo Guice Config Module</name>
<name>${project.artifactId}</name>
<description>The guice config module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
......@@ -31,7 +31,7 @@
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-config</artifactId>
<artifactId>dubbo-config-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
......
......@@ -23,7 +23,7 @@
</parent>
<artifactId>dubbo-config-sca</artifactId>
<packaging>jar</packaging>
<name>Dubbo SCA Config Module</name>
<name>${project.artifactId}</name>
<description>The sca config module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
......@@ -31,7 +31,7 @@
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-config</artifactId>
<artifactId>dubbo-config-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
......
......@@ -23,7 +23,7 @@
</parent>
<artifactId>dubbo-config-spring</artifactId>
<packaging>jar</packaging>
<name>Dubbo Spring Config Module</name>
<name>${project.artifactId}</name>
<description>The spring config module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
......@@ -31,7 +31,7 @@
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-config</artifactId>
<artifactId>dubbo-config-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
......
......@@ -21,9 +21,9 @@
<artifactId>dubbo-parent</artifactId>
<version>2.2.0-SNAPSHOT</version>
</parent>
<artifactId>dubbo-container</artifactId>
<artifactId>dubbo-container-api</artifactId>
<packaging>jar</packaging>
<name>Dubbo Container Module</name>
<name>${project.artifactId}</name>
<description>The container module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
......
<!--
- 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.2.0-SNAPSHOT</version>
</parent>
<artifactId>dubbo-container-jetty</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>The jetty container module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
</properties>
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-container-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
<!--
- 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.2.0-SNAPSHOT</version>
</parent>
<artifactId>dubbo-container-log4j</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>The log4j container module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
</properties>
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-container-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
<!--
- 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.2.0-SNAPSHOT</version>
</parent>
<artifactId>dubbo-container-spring</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>The spring container module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
</properties>
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-container-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
......@@ -23,7 +23,7 @@
</parent>
<artifactId>dubbo-demo</artifactId>
<packaging>jar</packaging>
<name>Dubbo Demo Module</name>
<name>${project.artifactId}</name>
<description>The demo module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
......
......@@ -23,7 +23,7 @@
</parent>
<artifactId>dubbo-demo-consumer</artifactId>
<packaging>jar</packaging>
<name>Dubbo Demo Consumer Module</name>
<name>${project.artifactId}</name>
<description>The demo consumer module of dubbo project</description>
<properties>
<skip_maven_deploy>false</skip_maven_deploy>
......
......@@ -23,7 +23,7 @@
</parent>
<artifactId>dubbo-demo-provider</artifactId>
<packaging>jar</packaging>
<name>Dubbo Demo Provider Module</name>
<name>${project.artifactId}</name>
<description>The demo provider module of dubbo project</description>
<properties>
<skip_maven_deploy>false</skip_maven_deploy>
......
......@@ -21,9 +21,9 @@
<artifactId>dubbo-parent</artifactId>
<version>2.2.0-SNAPSHOT</version>
</parent>
<artifactId>dubbo-cache</artifactId>
<artifactId>dubbo-filter-cache</artifactId>
<packaging>jar</packaging>
<name>Dubbo Cache Module</name>
<name>${project.artifactId}</name>
<description>The cache module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
......@@ -31,7 +31,7 @@
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-rpc</artifactId>
<artifactId>dubbo-rpc-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
......
<!--
- 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.2.0-SNAPSHOT</version>
</parent>
<artifactId>dubbo-filter-default</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>The default filter module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
</properties>
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-rpc-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
......@@ -21,9 +21,9 @@
<artifactId>dubbo-parent</artifactId>
<version>2.2.0-SNAPSHOT</version>
</parent>
<artifactId>dubbo-validation</artifactId>
<artifactId>dubbo-filter-validation</artifactId>
<packaging>jar</packaging>
<name>Dubbo Validation Module</name>
<name>${project.artifactId}</name>
<description>The validation module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
......@@ -31,7 +31,7 @@
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-rpc</artifactId>
<artifactId>dubbo-rpc-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
......
......@@ -21,9 +21,9 @@
<artifactId>dubbo-parent</artifactId>
<version>2.2.0-SNAPSHOT</version>
</parent>
<artifactId>dubbo-monitor</artifactId>
<artifactId>dubbo-monitor-api</artifactId>
<packaging>jar</packaging>
<name>Dubbo Monitor Module</name>
<name>${project.artifactId}</name>
<description>The monitor module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
......@@ -31,7 +31,7 @@
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-rpc</artifactId>
<artifactId>dubbo-rpc-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
</dependencies>
......
......@@ -23,7 +23,7 @@
</parent>
<artifactId>dubbo-monitor-default</artifactId>
<packaging>jar</packaging>
<name>Dubbo Default Monitor Module</name>
<name>${project.artifactId}</name>
<description>The default monitor module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
......@@ -31,7 +31,7 @@
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-monitor</artifactId>
<artifactId>dubbo-monitor-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
......
......@@ -23,7 +23,7 @@
</parent>
<artifactId>dubbo-monitor-simple</artifactId>
<packaging>jar</packaging>
<name>Dubbo Simple Monitor Module</name>
<name>${project.artifactId}</name>
<description>The simple monitor module of dubbo project</description>
<properties>
<skip_maven_deploy>false</skip_maven_deploy>
......
......@@ -21,9 +21,9 @@
<artifactId>dubbo-parent</artifactId>
<version>2.2.0-SNAPSHOT</version>
</parent>
<artifactId>dubbo-registry</artifactId>
<artifactId>dubbo-registry-api</artifactId>
<packaging>jar</packaging>
<name>Dubbo Registry Module</name>
<name>${project.artifactId}</name>
<description>The registry module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
......@@ -31,12 +31,12 @@
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-cluster</artifactId>
<artifactId>dubbo-cluster-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-container</artifactId>
<artifactId>dubbo-container-api</artifactId>
<version>${project.parent.version}</version>
<exclusions>
<exclusion>
......
......@@ -23,7 +23,7 @@
</parent>
<artifactId>dubbo-registry-default</artifactId>
<packaging>jar</packaging>
<name>Dubbo Default Registry Module</name>
<name>${project.artifactId}</name>
<description>The default registry module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
......@@ -31,7 +31,7 @@
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-registry</artifactId>
<artifactId>dubbo-registry-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
......
......@@ -23,7 +23,7 @@
</parent>
<artifactId>dubbo-registry-multicast</artifactId>
<packaging>jar</packaging>
<name>Dubbo Multicast Registry Module</name>
<name>${project.artifactId}</name>
<description>The multicast registry module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
......@@ -31,7 +31,7 @@
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-registry</artifactId>
<artifactId>dubbo-registry-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
</dependencies>
......
......@@ -23,7 +23,7 @@
</parent>
<artifactId>dubbo-registry-redis</artifactId>
<packaging>jar</packaging>
<name>Dubbo Redis Registry Module</name>
<name>${project.artifactId}</name>
<description>The redis registry module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
......@@ -31,7 +31,7 @@
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-registry</artifactId>
<artifactId>dubbo-registry-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
......
......@@ -23,7 +23,7 @@
</parent>
<artifactId>dubbo-registry-simple</artifactId>
<packaging>jar</packaging>
<name>Dubbo Simple Registry Module</name>
<name>${project.artifactId}</name>
<description>The simple registry module of dubbo project</description>
<properties>
<skip_maven_deploy>false</skip_maven_deploy>
......
......@@ -23,7 +23,7 @@
</parent>
<artifactId>dubbo-registry-zookeeper</artifactId>
<packaging>jar</packaging>
<name>Dubbo Zookeeper Registry Module</name>
<name>${project.artifactId}</name>
<description>The zookeeper registry module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
......@@ -31,7 +31,7 @@
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-registry</artifactId>
<artifactId>dubbo-registry-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
......
......@@ -21,9 +21,9 @@
<artifactId>dubbo-parent</artifactId>
<version>2.2.0-SNAPSHOT</version>
</parent>
<artifactId>dubbo-remoting</artifactId>
<artifactId>dubbo-remoting-api</artifactId>
<packaging>jar</packaging>
<name>Dubbo Remoting Module</name>
<name>${project.artifactId}</name>
<description>The remoting module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
......
......@@ -23,7 +23,7 @@
</parent>
<artifactId>dubbo-remoting-grizzly</artifactId>
<packaging>jar</packaging>
<name>Dubbo Grizzly Remoting Module</name>
<name>${project.artifactId}</name>
<description>The grizzly remoting module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
......@@ -31,7 +31,7 @@
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-remoting</artifactId>
<artifactId>dubbo-remoting-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
......
......@@ -23,7 +23,7 @@
</parent>
<artifactId>dubbo-remoting-http</artifactId>
<packaging>jar</packaging>
<name>Dubbo Http Remoting Module</name>
<name>${project.artifactId}</name>
<description>The http remoting module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
......
......@@ -23,7 +23,7 @@
</parent>
<artifactId>dubbo-remoting-mina</artifactId>
<packaging>jar</packaging>
<name>Dubbo Mina Remoting Module</name>
<name>${project.artifactId}</name>
<description>The mina remoting module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
......@@ -31,7 +31,7 @@
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-remoting</artifactId>
<artifactId>dubbo-remoting-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
......
......@@ -23,7 +23,7 @@
</parent>
<artifactId>dubbo-remoting-netty</artifactId>
<packaging>jar</packaging>
<name>Dubbo Netty Remoting Module</name>
<name>${project.artifactId}</name>
<description>The netty remoting module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
......@@ -31,7 +31,7 @@
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-remoting</artifactId>
<artifactId>dubbo-remoting-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
......
......@@ -23,7 +23,7 @@
</parent>
<artifactId>dubbo-remoting-p2p</artifactId>
<packaging>jar</packaging>
<name>Dubbo P2P Remoting Module</name>
<name>${project.artifactId}</name>
<description>The p2p remoting module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
......@@ -31,7 +31,7 @@
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-remoting</artifactId>
<artifactId>dubbo-remoting-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
</dependencies>
......
......@@ -21,9 +21,9 @@
<artifactId>dubbo-parent</artifactId>
<version>2.2.0-SNAPSHOT</version>
</parent>
<artifactId>dubbo-rpc</artifactId>
<artifactId>dubbo-rpc-api</artifactId>
<packaging>jar</packaging>
<name>Dubbo RPC Module</name>
<name>${project.artifactId}</name>
<description>The rpc module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
......
......@@ -23,7 +23,7 @@
</parent>
<artifactId>dubbo-rpc-default</artifactId>
<packaging>jar</packaging>
<name>Dubbo Default RPC Module</name>
<name>${project.artifactId}</name>
<description>The default rpc module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
......@@ -31,17 +31,17 @@
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-rpc</artifactId>
<artifactId>dubbo-rpc-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-remoting</artifactId>
<artifactId>dubbo-remoting-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-container</artifactId>
<artifactId>dubbo-container-api</artifactId>
<version>${project.parent.version}</version>
<exclusions>
<exclusion>
......
......@@ -23,7 +23,7 @@
</parent>
<artifactId>dubbo-rpc-hessian</artifactId>
<packaging>jar</packaging>
<name>Dubbo Hessian RPC Module</name>
<name>${project.artifactId}</name>
<description>The hessian rpc module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
......@@ -31,7 +31,7 @@
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-rpc</artifactId>
<artifactId>dubbo-rpc-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
......
......@@ -23,7 +23,7 @@
</parent>
<artifactId>dubbo-rpc-injvm</artifactId>
<packaging>jar</packaging>
<name>Dubbo InJVM RPC Module</name>
<name>${project.artifactId}</name>
<description>The injvm rpc module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
......@@ -31,7 +31,7 @@
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-rpc</artifactId>
<artifactId>dubbo-rpc-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
</dependencies>
......
......@@ -23,7 +23,7 @@
</parent>
<artifactId>dubbo-rpc-rmi</artifactId>
<packaging>jar</packaging>
<name>Dubbo RMI RPC Module</name>
<name>${project.artifactId}</name>
<description>The rmi rpc module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
......@@ -31,7 +31,7 @@
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-rpc</artifactId>
<artifactId>dubbo-rpc-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
......
<!--
- 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.2.0-SNAPSHOT</version>
</parent>
<artifactId>dubbo-test-benchmark</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>The benchmark test module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
</properties>
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo</artifactId>
<version>${project.parent.version}</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
......@@ -21,17 +21,17 @@
<artifactId>dubbo-parent</artifactId>
<version>2.2.0-SNAPSHOT</version>
</parent>
<artifactId>dubbo-examples</artifactId>
<artifactId>dubbo-test-showcase</artifactId>
<packaging>jar</packaging>
<name>Dubbo Examples Module</name>
<description>The examples module of dubbo project</description>
<name>${project.artifactId}</name>
<description>The showcase test module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
</properties>
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-config</artifactId>
<artifactId>dubbo-config-api</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
......
......@@ -23,7 +23,7 @@
</parent>
<artifactId>dubbo</artifactId>
<packaging>jar</packaging>
<name>Dubbo All In One</name>
<name>${project.artifactId}</name>
<description>The all in one project of dubbo</description>
<properties>
<skip_maven_deploy>false</skip_maven_deploy>
......@@ -31,7 +31,7 @@
<dependencies>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-config</artifactId>
<artifactId>dubbo-config-api</artifactId>
<version>${project.parent.version}</version>
<exclusions>
<exclusion>
......
......@@ -24,7 +24,7 @@
<artifactId>dubbo-parent</artifactId>
<version>2.2.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Dubbo Parent POM</name>
<name>${project.artifactId}</name>
<description>The parent project of dubbo</description>
<url>http://code.alibabatech.com/wiki/display/dubbo</url>
<inceptionYear>2011</inceptionYear>
......@@ -78,39 +78,47 @@
</properties>
<modules>
<module>dubbo-common</module>
<module>dubbo-remoting</module>
<module>dubbo-remoting-netty</module>
<module>dubbo-remoting-mina</module>
<module>dubbo-remoting-grizzly</module>
<module>dubbo-remoting-p2p</module>
<module>dubbo-remoting-http</module>
<module>dubbo-rpc</module>
<module>dubbo-rpc-default</module>
<module>dubbo-rpc-injvm</module>
<module>dubbo-rpc-rmi</module>
<module>dubbo-rpc-hessian</module>
<module>dubbo-validation</module>
<module>dubbo-cache</module>
<module>dubbo-cluster</module>
<module>dubbo-registry</module>
<module>dubbo-registry-default</module>
<module>dubbo-registry-multicast</module>
<module>dubbo-registry-zookeeper</module>
<module>dubbo-registry-redis</module>
<module>dubbo-monitor</module>
<module>dubbo-monitor-default</module>
<module>dubbo-config</module>
<module>dubbo-config-spring</module>
<module>dubbo-config-guice</module>
<module>dubbo-config-sca</module>
<module>dubbo-container</module>
<module>dubbo-remoting/dubbo-remoting-api</module>
<module>dubbo-remoting/dubbo-remoting-netty</module>
<module>dubbo-remoting/dubbo-remoting-mina</module>
<module>dubbo-remoting/dubbo-remoting-grizzly</module>
<module>dubbo-remoting/dubbo-remoting-p2p</module>
<module>dubbo-remoting/dubbo-remoting-http</module>
<module>dubbo-rpc/dubbo-rpc-api</module>
<module>dubbo-rpc/dubbo-rpc-default</module>
<module>dubbo-rpc/dubbo-rpc-injvm</module>
<module>dubbo-rpc/dubbo-rpc-rmi</module>
<module>dubbo-rpc/dubbo-rpc-hessian</module>
<module>dubbo-filter/dubbo-filter-default</module>
<module>dubbo-filter/dubbo-filter-validation</module>
<module>dubbo-filter/dubbo-filter-cache</module>
<module>dubbo-cluster/dubbo-cluster-api</module>
<module>dubbo-cluster/dubbo-cluster-faulttolerant</module>
<module>dubbo-cluster/dubbo-cluster-loadbalance</module>
<module>dubbo-cluster/dubbo-cluster-router</module>
<module>dubbo-registry/dubbo-registry-api</module>
<module>dubbo-registry/dubbo-registry-default</module>
<module>dubbo-registry/dubbo-registry-multicast</module>
<module>dubbo-registry/dubbo-registry-zookeeper</module>
<module>dubbo-registry/dubbo-registry-redis</module>
<module>dubbo-monitor/dubbo-monitor-api</module>
<module>dubbo-monitor/dubbo-monitor-default</module>
<module>dubbo-config/dubbo-config-api</module>
<module>dubbo-config/dubbo-config-spring</module>
<module>dubbo-config/dubbo-config-guice</module>
<module>dubbo-config/dubbo-config-sca</module>
<module>dubbo-container/dubbo-container-api</module>
<module>dubbo-container/dubbo-container-spring</module>
<module>dubbo-container/dubbo-container-jetty</module>
<module>dubbo-container/dubbo-container-log4j</module>
<module>dubbo</module>
<module>dubbo-registry-simple</module>
<module>dubbo-monitor-simple</module>
<module>dubbo-demo</module>
<module>dubbo-demo-consumer</module>
<module>dubbo-demo-provider</module>
<module>dubbo-examples</module>
<module>dubbo-registry/dubbo-registry-simple</module>
<module>dubbo-monitor/dubbo-monitor-simple</module>
<module>dubbo-demo/dubbo-demo-api</module>
<module>dubbo-demo/dubbo-demo-consumer</module>
<module>dubbo-demo/dubbo-demo-provider</module>
<module>dubbo-test/dubbo-test-showcase</module>
<module>dubbo-test/dubbo-test-benchmark</module>
</modules>
<dependencyManagement>
<dependencies>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册