2018-09-26 20:05:17 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
[ISSUE #10734] Implemented the parameter validation utility class (#10737)
* For #10734,Refactor the AbstractConfigRequest ,move common properties from its subclasses to the parent class,to reduce the number of corresponding parameter extractors by .
* For #10734,add ParamCheckRules,ParamCheckUtils, add ParamExtractor interface and the abstract classes HttpParamExtractor and RpcParamExtractor, implement the corresponding Manager.
* For #10734,fix codestyle
* For #10734,fix codestyle , move extractor and extractorManager to core directory
* For #10734,fix codestyle
* For #10734,fix dependency of common module
* For #10734,fix codestyle and copyright
* For #10734,fix pom codestyle and copyright
* For #10734,fix pom codestyle and copyright
* For #10734,fix copyright
* For #10734,fix copyright
* For #10734,fix bug caused by refactor of AbstractConfigRequest ,add ut test of ParamExtractorManager
* For #10734,fix bug caused by refactor of AbstractConfigRequest
---------
Co-authored-by: zhuoguang <sunrisea@B-Q6UQMD6R-0222.local>
2023-07-07 11:06:00 +08:00
|
|
|
~ Copyright 1999-2023 Alibaba Group Holding Ltd.
|
2020-06-12 15:44:51 +08:00
|
|
|
~
|
|
|
|
~ 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.
|
|
|
|
-->
|
2018-07-21 00:27:23 +08:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2020-06-18 17:05:15 +08:00
|
|
|
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">
|
|
|
|
|
2018-10-01 10:58:27 +08:00
|
|
|
<parent>
|
|
|
|
<groupId>com.alibaba.nacos</groupId>
|
|
|
|
<artifactId>nacos-all</artifactId>
|
2021-01-15 14:37:47 +08:00
|
|
|
<version>${revision}</version>
|
2018-10-01 10:58:27 +08:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2020-06-18 17:05:15 +08:00
|
|
|
|
2018-10-01 10:58:27 +08:00
|
|
|
<artifactId>nacos-common</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
2020-06-18 17:05:15 +08:00
|
|
|
|
2018-10-01 10:58:27 +08:00
|
|
|
<name>nacos-common ${project.version}</name>
|
2023-01-10 09:47:52 +08:00
|
|
|
<url>https://nacos.io</url>
|
2023-04-11 17:34:06 +08:00
|
|
|
<description>Nacos common pom.xml file</description>
|
2018-10-01 10:58:27 +08:00
|
|
|
<dependencies>
|
2018-10-02 11:20:54 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
2024-08-21 16:37:53 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>dm.jdbc</groupId>
|
|
|
|
<artifactId>DmJdbcDriver</artifactId>
|
|
|
|
<version>${dm-jdbc.version}</version>
|
|
|
|
</dependency>
|
2018-10-01 10:58:27 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
</dependency>
|
2021-01-11 14:11:32 +08:00
|
|
|
|
2020-03-26 12:06:35 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpasyncclient</artifactId>
|
|
|
|
</dependency>
|
2020-06-18 17:05:15 +08:00
|
|
|
|
2019-11-07 16:02:01 +08:00
|
|
|
<dependency>
|
2020-06-06 17:24:37 +08:00
|
|
|
<groupId>${project.groupId}</groupId>
|
2019-11-07 16:02:01 +08:00
|
|
|
<artifactId>nacos-api</artifactId>
|
|
|
|
</dependency>
|
2020-06-18 17:05:15 +08:00
|
|
|
|
2020-04-16 23:50:08 +08:00
|
|
|
<dependency>
|
2020-04-23 15:22:16 +08:00
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
2020-04-16 23:50:08 +08:00
|
|
|
</dependency>
|
2023-11-23 14:56:54 +08:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<version>1.2</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2024-03-26 16:22:06 +08:00
|
|
|
<groupId>com.mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-j</artifactId>
|
2023-11-23 14:56:54 +08:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
[ISSUE #10734] Implemented the parameter validation utility class (#10737)
* For #10734,Refactor the AbstractConfigRequest ,move common properties from its subclasses to the parent class,to reduce the number of corresponding parameter extractors by .
* For #10734,add ParamCheckRules,ParamCheckUtils, add ParamExtractor interface and the abstract classes HttpParamExtractor and RpcParamExtractor, implement the corresponding Manager.
* For #10734,fix codestyle
* For #10734,fix codestyle , move extractor and extractorManager to core directory
* For #10734,fix codestyle
* For #10734,fix dependency of common module
* For #10734,fix codestyle and copyright
* For #10734,fix pom codestyle and copyright
* For #10734,fix pom codestyle and copyright
* For #10734,fix copyright
* For #10734,fix copyright
* For #10734,fix bug caused by refactor of AbstractConfigRequest ,add ut test of ParamExtractorManager
* For #10734,fix bug caused by refactor of AbstractConfigRequest
---------
Co-authored-by: zhuoguang <sunrisea@B-Q6UQMD6R-0222.local>
2023-07-07 11:06:00 +08:00
|
|
|
|
2018-10-01 10:58:27 +08:00
|
|
|
</dependencies>
|
2019-02-28 17:52:06 +08:00
|
|
|
<build>
|
2019-07-11 01:48:11 +08:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<includes>
|
|
|
|
<include>nacos-version.txt</include>
|
2023-03-27 15:04:20 +08:00
|
|
|
<include>META-INF/services/*</include>
|
2019-07-11 01:48:11 +08:00
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2019-02-28 17:52:06 +08:00
|
|
|
</build>
|
2018-07-21 00:27:23 +08:00
|
|
|
</project>
|