Move dubbo-filter module to dubbo-plugin (#13143)

Signed-off-by: crazyhzm <crazyhzm@gmail.com>
This commit is contained in:
huazhongming 2023-10-09 15:35:58 +08:00 committed by GitHub
parent a709b2803c
commit acee3e2f03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
46 changed files with 6 additions and 51 deletions

View File

@ -44,7 +44,6 @@ dubbo-dependencies-bom
dubbo-dependencies-zookeeper
dubbo-dependencies-zookeeper-curator5
dubbo-distribution
dubbo-filter
dubbo-filter-cache
dubbo-filter-validation
dubbo-kubernetes

View File

@ -1,45 +0,0 @@
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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>org.apache.dubbo</groupId>
<artifactId>dubbo-parent</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>dubbo-filter</artifactId>
<packaging>pom</packaging>
<name>${project.artifactId}</name>
<description>The filter module of dubbo project</description>
<properties>
<skip_maven_deploy>false</skip_maven_deploy>
</properties>
<modules>
<module>dubbo-filter-cache</module>
<module>dubbo-filter-validation</module>
</modules>
<dependencies>
<dependency>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo-test-check</artifactId>
<version>${project.parent.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>

View File

@ -18,7 +18,7 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo-filter</artifactId>
<artifactId>dubbo-plugin</artifactId>
<version>${revision}</version>
</parent>
<artifactId>dubbo-filter-cache</artifactId>
@ -45,4 +45,4 @@
<version>${hazelcast_version}</version>
</dependency>
</dependencies>
</project>
</project>

View File

@ -18,7 +18,7 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.dubbo</groupId>
<artifactId>dubbo-filter</artifactId>
<artifactId>dubbo-plugin</artifactId>
<version>${revision}</version>
</parent>
<artifactId>dubbo-filter-validation</artifactId>
@ -73,4 +73,4 @@
<version>${jaxb_api_version}</version>
</dependency>
</dependencies>
</project>
</project>

View File

@ -51,6 +51,8 @@
<module>dubbo-plugin-classloader-filter</module>
<module>dubbo-plugin-proxy-bytebuddy</module>
<module>dubbo-plugin-qos-trace</module>
<module>dubbo-filter-cache</module>
<module>dubbo-filter-validation</module>
</modules>
<properties>
<skip_maven_deploy>false</skip_maven_deploy>

View File

@ -151,7 +151,6 @@
<module>dubbo-registry</module>
<module>dubbo-monitor</module>
<module>dubbo-config</module>
<module>dubbo-filter</module>
<module>dubbo-demo</module>
<module>dubbo-plugin</module>
<module>dubbo-serialization</module>