From ce0607470c4c3409f5a4ff4697e93b7e754cc5bf Mon Sep 17 00:00:00 2001 From: luoxiaoyun Date: Mon, 21 Feb 2022 11:00:11 +0800 Subject: [PATCH 1/4] update appstore interface --- Projects/APPSTORE/AppStore_Interfaces.md | 24 +++++++++++++++++++++ Projects/APPSTORE/AppStore_Interfaces_en.md | 24 +++++++++++++++++++++ 2 files changed, 48 insertions(+) diff --git a/Projects/APPSTORE/AppStore_Interfaces.md b/Projects/APPSTORE/AppStore_Interfaces.md index eb42e89..af309d3 100644 --- a/Projects/APPSTORE/AppStore_Interfaces.md +++ b/Projects/APPSTORE/AppStore_Interfaces.md @@ -33,6 +33,7 @@ - [2.13 获取应用包列表-v2](#213-获取应用包列表-v2) - [2.14 根据创建时间区间获取应用包列表-v2](#214-根据创建时间区间获取应用包列表-v2) - [2.15 下载应用图标](#215-下载应用图标) + - [2.16 应用下架](#216-应用下架) - [3. 评论](#3-评论) - [3.1 获取评论列表](#31-获取评论列表) - [3.2 提交评论](#32-提交评论) @@ -1017,6 +1018,29 @@ METHOD: GET binary output. ``` +### 2.16 应用下架 + +通过应用ID和应用包ID下架应用。 + +``` +URI: /mec/appstore/v1/apps/{appId}/packages/{packageId}/action/offShelf +METHOD: POST +``` + +| 名称 | 描述 | IN | 必选 | +| --------- | -------- | ------------- | ---- | +| appId | 应用ID | path | yes | +| packageId | 应用包ID | path | yes | +| userId | 用户Id | request param | yes | +| userName | 用户名 | request param | yes | + +响应示例: + +``` +200 OK + OffShelf Success. +``` + ## 3. 评论 用户可以评论应用. diff --git a/Projects/APPSTORE/AppStore_Interfaces_en.md b/Projects/APPSTORE/AppStore_Interfaces_en.md index 861200f..a6bea04 100644 --- a/Projects/APPSTORE/AppStore_Interfaces_en.md +++ b/Projects/APPSTORE/AppStore_Interfaces_en.md @@ -33,6 +33,7 @@ The document is for the appstore-be project, there are six parts of interfaces i - [2.13 Get all packages of user-v2](#213-Get-All-Packages-of-User-v2) - [2.14 Get all packages by create time range-v2](#214-Get-All-Packages-by-Create-Time-Range -v2) - [2.15 Download icon of app](#215-Download-Icon-of-App) + - [2.16 APP offShelf](#216-App-OffShelf) - [3. Comment](#3-Comment) - [3.1 Get comments of app](#31-Get-Comments-of-App) - [3.2 Submit comment to app](#32-Submit-Comment-to-App) @@ -1044,6 +1045,29 @@ Example response: binary output. ``` +### 2.16 App OffShelf + +Take a application off shelf by application id and package id. + +``` +Resource URI: /mec/appstore/v1/apps/{appId}/packages/{packageId}/action/offShelf +Method: POST +``` + +| Name | Definition | Type | Required | +| --------- | -------------- | ------------- | -------- | +| appId | application id | path | yes | +| packageId | package id | path | yes | +| userId | user id | request param | yes | +| userName | user name | request param | yes | + +Example response: + +``` +200 OK + OffShelf Success. +``` + ## 3. Comment User can submit comments to an application. -- Gitee From 7c928ccdc74150de14a75e9f3942ad8498588bce Mon Sep 17 00:00:00 2001 From: luoxiaoyun Date: Mon, 21 Feb 2022 11:04:47 +0800 Subject: [PATCH 2/4] update appstore interface --- Projects/APPSTORE/AppStore_Interfaces_en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Projects/APPSTORE/AppStore_Interfaces_en.md b/Projects/APPSTORE/AppStore_Interfaces_en.md index a6bea04..bf0f3da 100644 --- a/Projects/APPSTORE/AppStore_Interfaces_en.md +++ b/Projects/APPSTORE/AppStore_Interfaces_en.md @@ -31,7 +31,7 @@ The document is for the appstore-be project, there are six parts of interfaces i - [2.11 Get all packages of app-v2](#211-Get-All-Packages-of-App-v2) - [2.12 Get one package-v2](#212-Get-One-Package-v2) - [2.13 Get all packages of user-v2](#213-Get-All-Packages-of-User-v2) - - [2.14 Get all packages by create time range-v2](#214-Get-All-Packages-by-Create-Time-Range -v2) + - [2.14 Get all packages by create time range-v2](#214-Get-All-Packages-by-Create-Time-Range-v2) - [2.15 Download icon of app](#215-Download-Icon-of-App) - [2.16 APP offShelf](#216-App-OffShelf) - [3. Comment](#3-Comment) -- Gitee From ce700337908756ed5259058742066d49357fba05 Mon Sep 17 00:00:00 2001 From: luoxiaoyun Date: Mon, 21 Feb 2022 11:10:06 +0800 Subject: [PATCH 3/4] update appstore interface --- Projects/APPSTORE/Appstore Interface Changes_v1.6.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Projects/APPSTORE/Appstore Interface Changes_v1.6.md diff --git a/Projects/APPSTORE/Appstore Interface Changes_v1.6.md b/Projects/APPSTORE/Appstore Interface Changes_v1.6.md new file mode 100644 index 0000000..60cf4f6 --- /dev/null +++ b/Projects/APPSTORE/Appstore Interface Changes_v1.6.md @@ -0,0 +1,6 @@ +### 新增或者修改的接口 New or modified interfaces + +| URL | Method | Change Type | Request | Response | +| ------------------------------------------------------------ | ------ | ----------- | ------------------------------------------------------------ | ------------------ | +| /mec/appstore/v1//apps/{appId}/packages/{packageId}/action/offShelf?userId={userId}&userName={userName} | POST | Add | Path Param:
appId, packageId
Requrest param:
userId, username | “OffShelf Success” | + -- Gitee From 046f5295233a4532b7f3c07c66dba0abfa2ce7cf Mon Sep 17 00:00:00 2001 From: luoxiaoyun Date: Mon, 21 Feb 2022 16:03:08 +0800 Subject: [PATCH 4/4] update appstore dependency --- Projects/APPSTORE/AppStore_Dependency.md | 218 +++++++++++--------- Projects/APPSTORE/AppStore_Dependency_en.md | 218 +++++++++++--------- 2 files changed, 230 insertions(+), 206 deletions(-) diff --git a/Projects/APPSTORE/AppStore_Dependency.md b/Projects/APPSTORE/AppStore_Dependency.md index 5f62835..0064bc2 100644 --- a/Projects/APPSTORE/AppStore_Dependency.md +++ b/Projects/APPSTORE/AppStore_Dependency.md @@ -4,7 +4,7 @@ ## AppStore-be 三方件使用清单 |groupId|artifactId|version|license|direct import (Y/N)| |---|---|---|---|---| -|aopalliance|aopalliance|1.0 |Public Domain|N| +|com.alibaba|fastjson|1.2.70 |Apache 2.0|Y| |com.fasterxml|classmate|1.4.0 |The Apache Software License, Version 2.0|N| |com.fasterxml.jackson.core|jackson-annotations|2.10.0 |The Apache Software License, Version 2.0|N| |com.fasterxml.jackson.core|jackson-core|2.10.5 |The Apache Software License, Version 2.0|N| @@ -13,21 +13,26 @@ |com.fasterxml.jackson.dataformat|jackson-dataformat-yaml|2.10.0 |The Apache Software License, Version 2.0|N| |com.fasterxml.jackson.datatype|jackson-datatype-jdk8|2.10.0 |The Apache Software License, Version 2.0|N| |com.fasterxml.jackson.datatype|jackson-datatype-jsr310|2.10.0 |The Apache Software License, Version 2.0|N| +|com.fasterxml.jackson.jaxrs|jackson-jaxrs-json-provider|2.9.9 |The Apache License, Version 2.0|N| +|com.fasterxml.jackson.jaxrs|jackson-jaxrs-base|2.9.9 |The Apache License, Version 2.0|N| |com.fasterxml.jackson.module|jackson-module-jaxb-annotations|2.10.0 |The Apache Software License, Version 2.0|N| |com.fasterxml.jackson.module|jackson-module-parameter-names|2.10.0 |The Apache Software License, Version 2.0|N| -|com.fasterxml.woodstox|woodstox-core|5.0.3 |The Apache License, Version 2.0|N| -|com.github.ben-manes.caffeine|caffeine|2.6.2 |Apache License, Version 2.0|N| -|com.github.waffle|waffle-jna|1.9.1 |Eclipse Public License|N| +|com.github.pagehelper|pagehelper-spring-boot-starter|1.2.13 |MIT License|Y| +|com.github.pagehelper|pagehelper-spring-boot-autoconfigure|1.2.13 |MIT License|N| +|com.github.pagehelper|pagehelper|5.1.11 |MIT License|N| +|com.github.jsqlparser|jsqlparser|2.0 |Apache 2.0|N| +|com.github.docker-java|docker-java|3.2.12 |Apache 2.0|Y| +|com.github.docker-java|docker-java-core|3.2.12 |Apache 2.0|N| +|com.github.docker-java|docker-java-api|3.2.12 |Apache 2.0|N| +|com.github.docker-java|docker-java-transport|3.2.12 |Apache 2.0|N| |com.google.code.findbugs|jsr305|3.0.2 |The Apache Software License, Version 2.0|N| -|com.google.code.gson|gson|2.8.5 |Apache 2.0|Y| -|com.google.errorprone|error_prone_annotations|2.1.3 |Apache 2.0|N| +|com.google.code.gson|gson|2.8.6 |Apache 2.0|Y| |com.google.guava|guava|26.0-jre |The Apache Software License, Version 2.0|N| |com.google.inject|guice|4.2.0 |The Apache Software License, Version 2.0|N| |com.google.inject.extensions|guice-assistedinject|4.1.0 |The Apache Software License, Version 2.0|N| |com.google.inject.extensions|guice-multibindings|4.1.0 |The Apache Software License, Version 2.0|N| -|com.google.j2objc|j2objc-annotations|1.1 |The Apache Software License, Version 2.0|N| |com.google.protobuf|protobuf-java|3.7.1 |3-Clause BSD License|N| -|com.h2database|h2|1.4.199 |MPL 2.0 or EPL 1.0|Y| +|com.h2database|h2|2.0.206 |MPL 2.0 or EPL 1.0|Y| |com.ibm.icu|icu4j|58.2 |Unicode/ICU License|N| |com.jayway.jsonpath|json-path|2.4.0 |The Apache Software License, Version 2.0|N| |com.netflix.archaius|archaius-core|0.7.6 |The Apache Software License, Version 2.0|N| @@ -38,8 +43,8 @@ |com.netflix.ribbon|ribbon-core|2.3.0 |The Apache Software License, Version 2.0|N| |com.netflix.ribbon|ribbon-loadbalancer|2.3.0 |The Apache Software License, Version 2.0|N| |com.netflix.ribbon|ribbon-transport|2.3.0 |The Apache Software License, Version 2.0|N| -|com.netflix.servo|servo-core|0.12.21 |The Apache Software License, Version 2.0|N| -|com.netflix.spectator|spectator-api|0.83.0 |The Apache Software License, Version 2.0|N| +|com.netflix.servo|servo-core|0.13.2 |The Apache Software License, Version 2.0|N| +|com.netflix.spectator|spectator-api|0.124.0 |The Apache Software License, Version 2.0|N| |com.netflix.spectator|spectator-reg-servo|0.83.0 |The Apache Software License, Version 2.0|N| |com.sun.istack|istack-commons-runtime|3.0.7 |CDDL 1.1 & GPL2 w/ CPE|N| |com.sun.xml.fastinfoset|FastInfoset|1.2.15 |Apache License, Version 2.0|N| @@ -48,22 +53,21 @@ |commons-codec|commons-codec|1.11 |Apache License, Version 2.0|N| |commons-configuration|commons-configuration|1.10 |The Apache Software License, Version 2.0|N| |commons-fileupload|commons-fileupload|1.3.3 |Apache License, Version 2.0|Y| -|commons-io|commons-io|2.6 |Apache License, Version 2.0|N| +|commons-io|commons-io|2.7 |Apache License, Version 2.0|Y| |commons-lang|commons-lang|2.6 |The Apache Software License, Version 2.0|N| -|io.lettuce|lettuce-core|5.1.8.RELEASE |Apache License, Version 2.0|Y| -|io.netty|netty-buffer|4.1.36.Final |Apache License, Version 2.0|N| -|io.netty|netty-codec|4.1.36.Final |Apache License, Version 2.0|N| -|io.netty|netty-codec-dns|4.1.36.Final |Apache License, Version 2.0|N| -|io.netty|netty-codec-http|4.1.36.Final |Apache License, Version 2.0|N| -|io.netty|netty-codec-http2|4.1.36.Final |Apache License, Version 2.0|N| -|io.netty|netty-codec-socks|4.1.36.Final |Apache License, Version 2.0|N| -|io.netty|netty-common|4.1.36.Final |Apache License, Version 2.0|N| -|io.netty|netty-handler|4.1.36.Final |Apache License, Version 2.0|N| -|io.netty|netty-handler-proxy|4.1.36.Final |Apache License, Version 2.0|N| -|io.netty|netty-resolver|4.1.36.Final |Apache License, Version 2.0|N| -|io.netty|netty-resolver-dns|4.1.36.Final |Apache License, Version 2.0|N| +|io.netty|netty-buffer|4.1.72.Final |Apache License, Version 2.0|Y| +|io.netty|netty-codec|4.1.72.Final |Apache License, Version 2.0|Y| +|io.netty|netty-codec-dns|4.1.72.Final |Apache License, Version 2.0|Y| +|io.netty|netty-codec-http|4.1.72.Final |Apache License, Version 2.0|Y| +|io.netty|netty-codec-http2|4.1.72.Final |Apache License, Version 2.0|Y| +|io.netty|netty-codec-socks|4.1.72.Final |Apache License, Version 2.0|Y| +|io.netty|netty-common|4.1.72.Final |Apache License, Version 2.0|Y| +|io.netty|netty-handler|4.1.72.Final |Apache License, Version 2.0|Y| +|io.netty|netty-handler-proxy|4.1.72.Final |Apache License, Version 2.0|Y| +|io.netty|netty-resolver|4.1.72.Final |Apache License, Version 2.0|Y| +|io.netty|netty-resolver-dns|4.1.72.Final |Apache License, Version 2.0|Y| |io.netty|netty-tcnative-boringssl-static|2.0.25.Final |Apache License, Version 2.0|N| -|io.netty|netty-transport|4.1.36.Final |Apache License, Version 2.0|N| +|io.netty|netty-transport|4.1.72.Final |Apache License, Version 2.0|Y| |io.projectreactor|reactor-core|3.2.8.RELEASE |The Apache Software License, Version 2.0|N| |io.protostuff|protostuff-api|1.5.9 |The Apache Software License, Version 2.0|N| |io.protostuff|protostuff-collectionschema|1.5.9 |The Apache Software License, Version 2.0|N| @@ -77,11 +81,11 @@ |io.swagger|swagger-annotations|1.5.22 |Apache License 2.0|N| |io.swagger|swagger-core|1.5.22 |Apache License 2.0|N| |io.swagger|swagger-models|1.5.22 |Apache License 2.0|N| -|io.vertx|vertx-auth-common|3.9.4 |Eclipse Public License - v 1.0 & The Apache Software License, Version 2.0|N| -|io.vertx|vertx-bridge-common|3.9.4 |Eclipse Public License - v 1.0 & The Apache Software License, Version 2.1|N| -|io.vertx|vertx-core|3.9.4 |Eclipse Public License - v 1.0 & The Apache Software License, Version 2.2|N| -|io.vertx|vertx-web|3.9.4 |Eclipse Public License - v 1.0 & The Apache Software License, Version 2.3|N| -|io.vertx|vertx-web-common|3.9.4 |Eclipse Public License - v 1.0 & The Apache Software License, Version 2.4|N| +|io.vertx|vertx-auth-common|3.9.8 |Eclipse Public License - v 1.0 & The Apache Software License, Version 2.0|N| +|io.vertx|vertx-bridge-common|3.9.8 |Eclipse Public License - v 1.0 & The Apache Software License, Version 2.1|N| +|io.vertx|vertx-core|3.9.8 |Eclipse Public License - v 1.0 & The Apache Software License, Version 2.2|N| +|io.vertx|vertx-web|3.9.8 |Eclipse Public License - v 1.0 & The Apache Software License, Version 2.3|N| +|io.vertx|vertx-web-common|3.9.8 |Eclipse Public License - v 1.0 & The Apache Software License, Version 2.4|N| |io.zipkin.brave|brave|5.6.0 |The Apache Software License, Version 2.0|N| |io.zipkin.reporter2|zipkin-reporter|2.7.13 |The Apache Software License, Version 2.0|N| |io.zipkin.zipkin2|zipkin|2.19.1 |The Apache Software License, Version 2.0|N| @@ -90,76 +94,84 @@ |javax.inject|javax.inject|1 |The Apache Software License, Version 2.0|N| |javax.servlet|javax.servlet-api|4.0.1 |CDDL + GPLv2 with classpath exception|N| |javax.validation|validation-api|2.0.1.Final |Apache License 2.0|N| -|javax.ws.rs|javax.ws.rs-api|2.1 |CDDL 1.1 & GPL2 w/ CPE|N| +|javax.ws.rs|javax.ws.rs-api|2.1 |CDDL 1.1 & GPL2 w/ CPE|Y| |javax.xml.bind|jaxb-api|2.3.1 |CDDL 1.1 & GPL2 w/ CPE|N| |junit|junit|4.13 |Eclipse Public License 1.0|Y| -|log4j|log4j|1.2.17 |The Apache Software License, Version 2.0| N| |net.bytebuddy|byte-buddy|1.9.13 |Apache License, Version 2.0| N| |net.bytebuddy|byte-buddy-agent|1.9.13 |Apache License, Version 2.0|N| -|net.java.dev.jna|jna|4.5.2 |Apache License v2.0 & LGPL, version 2.1|N| -|net.java.dev.jna|jna-platform|4.5.2 |Apache License v2.0 & LGPL, version 2.1|N| -|net.minidev|accessors-smart|1.2 |The Apache Software License, Version 2.0|N| -|net.minidev|json-smart|2.3 |The Apache Software License, Version 2.0|N| -|org.abego.treelayout|org.abego.treelayout.core|1.0.3 |BSD 3-Clause "New" or "Revised" License BSD-3-Clause|N| +|net.minidev|accessors-smart|2.4.7 |The Apache Software License, Version 2.0|N| +|net.minidev|json-smart|2.4.7 |The Apache Software License, Version 2.0|Y| |org.antlr|ST4|4.0.8 |BSD licence|N| |org.antlr|antlr-runtime|3.5.2 |BSD licence|N| |org.antlr|antlr4|4.7 |The BSD License|N| |org.antlr|antlr4-runtime|4.7 |The BSD License|N| |org.apache.ant|ant|1.8.2 |The Apache Software License, Version 2.0|Y| |org.apache.ant|ant-launcher|1.8.2 |The Apache Software License, Version 2.0|N| +|org.apache.commons|commons-compress|1.21 |Apache License, Version 2.0|Y| |org.apache.commons|commons-lang3|3.8.1 |Apache License, Version 2.0|N| -|org.apache.httpcomponents|httpclient|4.5.10 |Apache License, Version 2.0|N| +|org.apache.httpcomponents|httpclient|4.5.10 |Apache License, Version 2.0|Y| |org.apache.httpcomponents|httpcore|4.4.11 |Apache License, Version 2.0|N| -|org.apache.logging.log4j|log4j-api|2.17.0 |Apache License, Version 2.0|Y| -|org.apache.logging.log4j|log4j-core|2.17.0 |Apache License, Version 2.0|Y| -|org.apache.logging.log4j|log4j-slf4j-impl|2.17.0 |Apache License, Version 2.0|Y| -|org.apache.servicecomb|common-javassist|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|common-protobuf|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|common-rest|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|deployment|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|foundation-common|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|foundation-config|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|foundation-metrics|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|foundation-protobuf|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|foundation-ssl|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|foundation-vertx|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|handler-bizkeeper|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|handler-flowcontrol-qps|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|handler-loadbalance|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|java-chassis-core|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|provider-jaxrs|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|provider-pojo|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|provider-rest-common|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|provider-springmvc|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|service-registry|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|spring-boot2-starter|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|spring-boot2-starter-servlet|1.3.2 |Apache License, Version 2.0|Y| -|org.apache.servicecomb|swagger-generator-core|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|swagger-generator-jaxrs|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|swagger-generator-springmvc|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|swagger-invocation-core|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|swagger-invocation-jaxrs|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|swagger-invocation-springmvc|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|transport-common|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|transport-highway|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|transport-rest-client|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|transport-rest-servlet|1.3.2 |Apache License, Version 2.0|N| -|org.apache.tomcat|tomcat-annotations-api|9.0.44 |Apache License, Version 2.0|Y| -|org.apache.tomcat.embed|tomcat-embed-core|9.0.44 |Apache License, Version 2.0|Y| -|org.apache.tomcat.embed|tomcat-embed-el|9.0.44 |Apache License, Version 2.0|Y| -|org.apache.tomcat.embed|tomcat-embed-websocket|9.0.44 |Apache License, Version 2.0|Y| +|org.apache.httpcomponents|httpmime|4.3.1 |Apache License, Version 2.0|N| +|org.apache.logging.log4j|log4j-api|2.17.1 |Apache License, Version 2.0|Y| +|org.apache.logging.log4j|log4j-core|2.17.1 |Apache License, Version 2.0|Y| +|org.apache.logging.log4j|log4j-slf4j-impl|2.17.1 |Apache License, Version 2.0|Y| +|org.apache.logging.log4j|log4j-to-slf4j|2.17.1 |Apache License, Version 2.0|Y| +|org.apache.servicecomb|common-javassist|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|common-protobuf|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|common-rest|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|deployment|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|foundation-common|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|foundation-config|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|foundation-metrics|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|foundation-protobuf|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|foundation-ssl|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|foundation-vertx|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|handler-bizkeeper|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|handler-flowcontrol-qps|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|handler-loadbalance|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|java-chassis-core|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|provider-jaxrs|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|provider-pojo|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|provider-rest-common|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|provider-springmvc|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|service-registry|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|spring-boot2-starter|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|spring-boot2-starter-servlet|1.3.6 |Apache License, Version 2.0|Y| +|org.apache.servicecomb|swagger-generator-core|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|swagger-generator-jaxrs|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|swagger-generator-springmvc|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|swagger-invocation-core|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|swagger-invocation-jaxrs|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|swagger-invocation-springmvc|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|transport-common|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|transport-highway|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|transport-rest-client|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|transport-rest-servlet|1.3.6 |Apache License, Version 2.0|N| +|org.apache.tomcat|tomcat-annotations-api|9.0.56 |Apache License, Version 2.0|Y| +|org.apache.tomcat.embed|tomcat-embed-core|9.0.56 |Apache License, Version 2.0|Y| +|org.apache.tomcat.embed|tomcat-embed-el|9.0.56 |Apache License, Version 2.0|Y| +|org.apache.tomcat.embed|tomcat-embed-websocket|9.0.56 |Apache License, Version 2.0|Y| |org.assertj|assertj-core|3.11.1 |Apache License, Version 2.0|N| |org.bouncycastle|bcpkix-jdk15on|1.64 |Bouncy Castle Licence| N| |org.bouncycastle|bcprov-jdk15on|1.68 |Bouncy Castle Licence|Y| |org.checkerframework|checker-qual|3.5.0 |The MIT License|N| -|org.codehaus.mojo|animal-sniffer-annotations|1.14 |MIT license|N| |org.codehaus.woodstox|stax2-api|4.2 |The BSD License|N| |org.eclipse.persistence|javax.persistence|2.1.0 |Eclipse Distribution License v. 1.0 & Eclipse Public License v1.0|Y| |org.glassfish|javax.json|1.0.4 |Dual license consisting of the CDDL v1.1 and GPL v2|N| |org.glassfish.jaxb|jaxb-runtime|2.3.1 |CDDL+GPL License| N| |org.glassfish.jaxb|txw2|2.3.1 |CDDL+GPL License|N| +|org.glassfish.hk2|hk2-api|2.5.0-b42 |EPL 2.0|N| +|org.glassfish.hk2|hk2-locator|2.5.0-b42 |EPL 2.0|N| +|org.glassfish.hk2|hk2-utils|2.5.0-b42 |EPL 2.0|N| +|org.glassfish.hk2|osgi-resource-locator|1.0.1 |GPL 2.0|N| +|org.glassfish.hk2.external|aopalliance-repackaged|2.5.0-b42 |EPL 2.0|N| +|org.glassfish.hk2.external|javax.inject|2.5.0-b42 |GPL 2.0|N| +|org.glassfish.jersey.connectors|jersey-apache-connector|2.27 |Apache License, Version 2.0|N| +|org.glassfish.jersey.core|jersey-client|2.27 |Apache License, Version 2.0|N| +|org.glassfish.jersey.core|jersey-common|2.27 |Apache License, Version 2.0|N| +|org.glassfish.jersey.inject|jersey-hk2|2.27 |Apache License, Version 2.0|N| +|org.hamcrest|hamcrest|2.2|New BSD License|N| |org.hamcrest|hamcrest-core|1.3 |New BSD License|N| -|org.hamcrest|hamcrest-library|1.3 |New BSD License|N| |org.hdrhistogram|HdrHistogram|2.1.10 |Public Domain, per Creative Commons CC0|N| |org.hibernate.validator|hibernate-validator|6.0.17.Final |Apache License 2.0|N| |org.javassist|javassist|3.24.0-GA |Apache License 2.0 & LGPL 2.1 & MPL 1.1|N| @@ -168,54 +180,54 @@ |org.jmockit|jmockit-coverage|1.19 |The MIT LICENSE|Y| |org.jvnet.staxex|stax-ex|1.8 |Dual license consisting of the CDDL v1.1 and GPL v2|N| |org.mockito|mockito-core|2.23.4 |The MIT License|N| -|org.mybatis|mybatis|3.5.7 |The Apache Software License, Version 2.0|N| +|org.mybatis|mybatis|3.5.9 |The Apache Software License, Version 2.0|N| |org.mybatis|mybatis-spring|2.0.6 |The Apache Software License, Version 2.0|N| -|org.mybatis.spring.boot|mybatis-spring-boot-autoconfigure|2.2.0 |The Apache Software License, Version 2.0|N| -|org.mybatis.spring.boot|mybatis-spring-boot-starter|2.2.0 |The Apache Software License, Version 2.0|Y| +|org.mybatis.spring.boot|mybatis-spring-boot-autoconfigure|2.2.1 |The Apache Software License, Version 2.0|N| +|org.mybatis.spring.boot|mybatis-spring-boot-starter|2.2.1 |The Apache Software License, Version 2.0|Y| |org.objenesis|objenesis|2.6 |Apache 2|N| -|org.osgi|org.osgi.core|4.3.1 |Apache License, Version 2.0|N| -|org.osgi|org.osgi.enterprise|4.2.0 - no url defined)|Unknown license|N| -|org.ow2.asm|asm|5.0.4 |BSD|N| +|org.ow2.asm|asm|9.1 |BSD|N| |org.postgresql|postgresql|42.2.16 |BSD-2-Clause|Y| |org.projectlombok|lombok|1.18.10 |The MIT License|Y| |org.reactivestreams|reactive-streams|1.0.0 |CC0|Y| |org.skyscreamer|jsonassert|1.5.0 |The Apache Software License, Version 2.0|N| |org.slf4j|jcl-over-slf4j|1.7.26 |MIT License|N| +|org.slf4j|jul-to-slf4j|1.7.26 |MIT License|N| |org.slf4j|slf4j-api|1.7.30 |MIT License|Y| -|org.springframework|spring-aop|5.1.13.RELEASE |Apache License, Version 2.0|Y| -|org.springframework|spring-beans|5.1.8.RELEASE |Apache License, Version 2.0|N| -|org.springframework|spring-context|5.1.8.RELEASE |Apache License, Version 2.0|N| -|org.springframework|spring-core|5.1.13.RELEASE |Apache License, Version 2.0|Y| -|org.springframework|spring-expression|5.1.8.RELEASE |Apache License, Version 2.0|N| -|org.springframework|spring-jcl|5.1.13.RELEASE |Apache License, Version 2.0|Y| -|org.springframework|spring-jdbc|5.1.8.RELEASE |Apache License, Version 2.0|N| -|org.springframework|spring-test|5.1.13.RELEASE |Apache License, Version 2.0|N| -|org.springframework|spring-tx|5.1.13.RELEASE |Apache License, Version 2.0|Y| -|org.springframework|spring-web|5.1.13.RELEASE |Apache License, Version 2.0|Y| -|org.springframework|spring-webmvc|5.1.8.RELEASE |Apache License, Version 2.0|N| -|org.springframework|spring-websocket|5.1.13.RELEASE |Apache License, Version 2.0|N| -|org.springframework.boot|spring-boot|2.1.6.RELEASE |Apache License, Version 2.0|N| -|org.springframework.boot|spring-boot-autoconfigure|2.1.6.RELEASE |Apache License, Version 2.0|N| +|org.springframework|spring-aop|5.2.19.RELEASE |Apache License, Version 2.0|Y| +|org.springframework|spring-beans|5.2.19.RELEASE |Apache License, Version 2.0|Y| +|org.springframework|spring-context|5.2.19.RELEASE |Apache License, Version 2.0|Y| +|org.springframework|spring-core|5.2.19.RELEASE |Apache License, Version 2.0|Y| +|org.springframework|spring-expression|5.2.19.RELEASE |Apache License, Version 2.0|Y| +|org.springframework|spring-jcl|5.2.19.RELEASE |Apache License, Version 2.0|Y| +|org.springframework|spring-jdbc|5.2.19.RELEASE |Apache License, Version 2.0|Y| +|org.springframework|spring-test|5.2.19.RELEASE |Apache License, Version 2.0|N| +|org.springframework|spring-tx|5.2.19.RELEASE |Apache License, Version 2.0|Y| +|org.springframework|spring-web|5.2.19.RELEASE |Apache License, Version 2.0|Y| +|org.springframework|spring-webmvc|5.2.19.RELEASE |Apache License, Version 2.0|Y| +|org.springframework|spring-websocket|5.2.19.RELEASE |Apache License, Version 2.0|Y| +|org.springframework.boot|spring-boot|2.3.3.RELEASE |Apache License, Version 2.0|Y| +|org.springframework.boot|spring-boot-autoconfigure|2.3.3.RELEASE |Apache License, Version 2.0|Y| |org.springframework.boot|spring-boot-configuration-processor|2.1.6.RELEASE |Apache License, Version 2.0|Y| |org.springframework.boot|spring-boot-starter|2.1.6.RELEASE |Apache License, Version 2.0|N| +|org.springframework.boot|spring-boot-starter-aop|2.3.3.RELEASE |Apache License, Version 2.0|Y| |org.springframework.boot|spring-boot-starter-jdbc|2.3.3.RELEASE |Apache License, Version 2.0|Y| |org.springframework.boot|spring-boot-starter-json|2.1.6.RELEASE |Apache License, Version 2.0|N| +|org.springframework.boot|spring-boot-starter-logging|2.1.6.RELEASE |Apache License, Version 2.0|N| |org.springframework.boot|spring-boot-starter-test|2.3.3.RELEASE |Apache License, Version 2.0|Y| |org.springframework.boot|spring-boot-starter-tomcat|2.1.6.RELEASE |Apache License, Version 2.0|N| |org.springframework.boot|spring-boot-starter-web|2.1.6.RELEASE |Apache License, Version 2.0|N| -|org.springframework.boot|spring-boot-starter-websocket|2.1.18.RELEASE |Apache License, Version 2.0|N| +|org.springframework.boot|spring-boot-starter-websocket|2.1.18.RELEASE |Apache License, Version 2.0|Y| |org.springframework.boot|spring-boot-test|2.1.6.RELEASE |Apache License, Version 2.0|N| |org.springframework.boot|spring-boot-test-autoconfigure|2.1.6.RELEASE |Apache License, Version 2.0|N| -|org.springframework.security|spring-security-config|5.1.5.RELEASE |The Apache Software License, Version 2.0|N| -|org.springframework.security|spring-security-core|5.1.5.RELEASE |The Apache Software License, Version 2.0|N| +|org.springframework.security|spring-security-config|5.3.13.RELEASE |The Apache Software License, Version 2.0|Y| +|org.springframework.security|spring-security-core|5.3.13.RELEASE |The Apache Software License, Version 2.0|Y| |org.springframework.security|spring-security-jwt|1.1.1.RELEASE |Apache 2.0|Y| -|org.springframework.security|spring-security-test|5.3.10.RELEASE |The Apache Software License, Version 2.0|Y| -|org.springframework.security|spring-security-web|5.1.5.RELEASE |The Apache Software License, Version 2.0|N| +|org.springframework.security|spring-security-test|5.3.13.RELEASE |The Apache Software License, Version 2.0|Y| +|org.springframework.security|spring-security-web|5.3.13.RELEASE |The Apache Software License, Version 2.0|Y| |org.springframework.security.oauth|spring-security-oauth2|2.3.8.RELEASE |Apache 2.0|Y| |org.springframework.security.oauth.boot|spring-security-oauth2-autoconfigure|2.2.2.RELEASE |The Apache Software License, Version 2.0|Y| |org.xmlunit|xmlunit-core|2.6.2 |The Apache Software License, Version 2.0|N| |org.yaml|snakeyaml|1.26 |Apache License, Version 2.0|Y| -|com.github.docker-java|docker-java|3.2.10 |Apache License, Version 2.0|N| |org.modelmapper|modelmapper|1.1.0 |Apache License, Version 2.0|Y| diff --git a/Projects/APPSTORE/AppStore_Dependency_en.md b/Projects/APPSTORE/AppStore_Dependency_en.md index 2a9d70b..15f0c61 100644 --- a/Projects/APPSTORE/AppStore_Dependency_en.md +++ b/Projects/APPSTORE/AppStore_Dependency_en.md @@ -4,7 +4,7 @@ Dependency ## AppStore-be Three-Party Use List |groupId|artifactId|version|license|direct import (Y/N)| |---|---|---|---|---| -|aopalliance|aopalliance|1.0 |Public Domain|N| +|com.alibaba|fastjson|1.2.70 |Apache 2.0|Y| |com.fasterxml|classmate|1.4.0 |The Apache Software License, Version 2.0|N| |com.fasterxml.jackson.core|jackson-annotations|2.10.0 |The Apache Software License, Version 2.0|N| |com.fasterxml.jackson.core|jackson-core|2.10.5 |The Apache Software License, Version 2.0|N| @@ -13,21 +13,26 @@ Dependency |com.fasterxml.jackson.dataformat|jackson-dataformat-yaml|2.10.0 |The Apache Software License, Version 2.0|N| |com.fasterxml.jackson.datatype|jackson-datatype-jdk8|2.10.0 |The Apache Software License, Version 2.0|N| |com.fasterxml.jackson.datatype|jackson-datatype-jsr310|2.10.0 |The Apache Software License, Version 2.0|N| +|com.fasterxml.jackson.jaxrs|jackson-jaxrs-json-provider|2.9.9 |The Apache License, Version 2.0|N| +|com.fasterxml.jackson.jaxrs|jackson-jaxrs-base|2.9.9 |The Apache License, Version 2.0|N| |com.fasterxml.jackson.module|jackson-module-jaxb-annotations|2.10.0 |The Apache Software License, Version 2.0|N| |com.fasterxml.jackson.module|jackson-module-parameter-names|2.10.0 |The Apache Software License, Version 2.0|N| -|com.fasterxml.woodstox|woodstox-core|5.0.3 |The Apache License, Version 2.0|N| -|com.github.ben-manes.caffeine|caffeine|2.6.2 |Apache License, Version 2.0|N| -|com.github.waffle|waffle-jna|1.9.1 |Eclipse Public License|N| +|com.github.pagehelper|pagehelper-spring-boot-starter|1.2.13 |MIT License|Y| +|com.github.pagehelper|pagehelper-spring-boot-autoconfigure|1.2.13 |MIT License|N| +|com.github.pagehelper|pagehelper|5.1.11 |MIT License|N| +|com.github.jsqlparser|jsqlparser|2.0 |Apache 2.0|N| +|com.github.docker-java|docker-java|3.2.12 |Apache 2.0|Y| +|com.github.docker-java|docker-java-core|3.2.12 |Apache 2.0|N| +|com.github.docker-java|docker-java-api|3.2.12 |Apache 2.0|N| +|com.github.docker-java|docker-java-transport|3.2.12 |Apache 2.0|N| |com.google.code.findbugs|jsr305|3.0.2 |The Apache Software License, Version 2.0|N| -|com.google.code.gson|gson|2.8.5 |Apache 2.0|Y| -|com.google.errorprone|error_prone_annotations|2.1.3 |Apache 2.0|N| +|com.google.code.gson|gson|2.8.6 |Apache 2.0|Y| |com.google.guava|guava|26.0-jre |The Apache Software License, Version 2.0|N| |com.google.inject|guice|4.2.0 |The Apache Software License, Version 2.0|N| |com.google.inject.extensions|guice-assistedinject|4.1.0 |The Apache Software License, Version 2.0|N| |com.google.inject.extensions|guice-multibindings|4.1.0 |The Apache Software License, Version 2.0|N| -|com.google.j2objc|j2objc-annotations|1.1 |The Apache Software License, Version 2.0|N| |com.google.protobuf|protobuf-java|3.7.1 |3-Clause BSD License|N| -|com.h2database|h2|1.4.199 |MPL 2.0 or EPL 1.0|Y| +|com.h2database|h2|2.0.206 |MPL 2.0 or EPL 1.0|Y| |com.ibm.icu|icu4j|58.2 |Unicode/ICU License|N| |com.jayway.jsonpath|json-path|2.4.0 |The Apache Software License, Version 2.0|N| |com.netflix.archaius|archaius-core|0.7.6 |The Apache Software License, Version 2.0|N| @@ -38,8 +43,8 @@ Dependency |com.netflix.ribbon|ribbon-core|2.3.0 |The Apache Software License, Version 2.0|N| |com.netflix.ribbon|ribbon-loadbalancer|2.3.0 |The Apache Software License, Version 2.0|N| |com.netflix.ribbon|ribbon-transport|2.3.0 |The Apache Software License, Version 2.0|N| -|com.netflix.servo|servo-core|0.12.21 |The Apache Software License, Version 2.0|N| -|com.netflix.spectator|spectator-api|0.83.0 |The Apache Software License, Version 2.0|N| +|com.netflix.servo|servo-core|0.13.2 |The Apache Software License, Version 2.0|N| +|com.netflix.spectator|spectator-api|0.124.0 |The Apache Software License, Version 2.0|N| |com.netflix.spectator|spectator-reg-servo|0.83.0 |The Apache Software License, Version 2.0|N| |com.sun.istack|istack-commons-runtime|3.0.7 |CDDL 1.1 & GPL2 w/ CPE|N| |com.sun.xml.fastinfoset|FastInfoset|1.2.15 |Apache License, Version 2.0|N| @@ -48,22 +53,21 @@ Dependency |commons-codec|commons-codec|1.11 |Apache License, Version 2.0|N| |commons-configuration|commons-configuration|1.10 |The Apache Software License, Version 2.0|N| |commons-fileupload|commons-fileupload|1.3.3 |Apache License, Version 2.0|Y| -|commons-io|commons-io|2.6 |Apache License, Version 2.0|N| +|commons-io|commons-io|2.7 |Apache License, Version 2.0|Y| |commons-lang|commons-lang|2.6 |The Apache Software License, Version 2.0|N| -|io.lettuce|lettuce-core|5.1.8.RELEASE |Apache License, Version 2.0|Y| -|io.netty|netty-buffer|4.1.36.Final |Apache License, Version 2.0|N| -|io.netty|netty-codec|4.1.36.Final |Apache License, Version 2.0|N| -|io.netty|netty-codec-dns|4.1.36.Final |Apache License, Version 2.0|N| -|io.netty|netty-codec-http|4.1.36.Final |Apache License, Version 2.0|N| -|io.netty|netty-codec-http2|4.1.36.Final |Apache License, Version 2.0|N| -|io.netty|netty-codec-socks|4.1.36.Final |Apache License, Version 2.0|N| -|io.netty|netty-common|4.1.36.Final |Apache License, Version 2.0|N| -|io.netty|netty-handler|4.1.36.Final |Apache License, Version 2.0|N| -|io.netty|netty-handler-proxy|4.1.36.Final |Apache License, Version 2.0|N| -|io.netty|netty-resolver|4.1.36.Final |Apache License, Version 2.0|N| -|io.netty|netty-resolver-dns|4.1.36.Final |Apache License, Version 2.0|N| +|io.netty|netty-buffer|4.1.72.Final |Apache License, Version 2.0|Y| +|io.netty|netty-codec|4.1.72.Final |Apache License, Version 2.0|Y| +|io.netty|netty-codec-dns|4.1.72.Final |Apache License, Version 2.0|Y| +|io.netty|netty-codec-http|4.1.72.Final |Apache License, Version 2.0|Y| +|io.netty|netty-codec-http2|4.1.72.Final |Apache License, Version 2.0|Y| +|io.netty|netty-codec-socks|4.1.72.Final |Apache License, Version 2.0|Y| +|io.netty|netty-common|4.1.72.Final |Apache License, Version 2.0|Y| +|io.netty|netty-handler|4.1.72.Final |Apache License, Version 2.0|Y| +|io.netty|netty-handler-proxy|4.1.72.Final |Apache License, Version 2.0|Y| +|io.netty|netty-resolver|4.1.72.Final |Apache License, Version 2.0|Y| +|io.netty|netty-resolver-dns|4.1.72.Final |Apache License, Version 2.0|Y| |io.netty|netty-tcnative-boringssl-static|2.0.25.Final |Apache License, Version 2.0|N| -|io.netty|netty-transport|4.1.36.Final |Apache License, Version 2.0|N| +|io.netty|netty-transport|4.1.72.Final |Apache License, Version 2.0|Y| |io.projectreactor|reactor-core|3.2.8.RELEASE |The Apache Software License, Version 2.0|N| |io.protostuff|protostuff-api|1.5.9 |The Apache Software License, Version 2.0|N| |io.protostuff|protostuff-collectionschema|1.5.9 |The Apache Software License, Version 2.0|N| @@ -77,11 +81,11 @@ Dependency |io.swagger|swagger-annotations|1.5.22 |Apache License 2.0|N| |io.swagger|swagger-core|1.5.22 |Apache License 2.0|N| |io.swagger|swagger-models|1.5.22 |Apache License 2.0|N| -|io.vertx|vertx-auth-common|3.9.4 |Eclipse Public License - v 1.0 & The Apache Software License, Version 2.0|N| -|io.vertx|vertx-bridge-common|3.9.4 |Eclipse Public License - v 1.0 & The Apache Software License, Version 2.1|N| -|io.vertx|vertx-core|3.9.4 |Eclipse Public License - v 1.0 & The Apache Software License, Version 2.2|N| -|io.vertx|vertx-web|3.9.4 |Eclipse Public License - v 1.0 & The Apache Software License, Version 2.3|N| -|io.vertx|vertx-web-common|3.9.4 |Eclipse Public License - v 1.0 & The Apache Software License, Version 2.4|N| +|io.vertx|vertx-auth-common|3.9.8 |Eclipse Public License - v 1.0 & The Apache Software License, Version 2.0|N| +|io.vertx|vertx-bridge-common|3.9.8 |Eclipse Public License - v 1.0 & The Apache Software License, Version 2.1|N| +|io.vertx|vertx-core|3.9.8 |Eclipse Public License - v 1.0 & The Apache Software License, Version 2.2|N| +|io.vertx|vertx-web|3.9.8 |Eclipse Public License - v 1.0 & The Apache Software License, Version 2.3|N| +|io.vertx|vertx-web-common|3.9.8 |Eclipse Public License - v 1.0 & The Apache Software License, Version 2.4|N| |io.zipkin.brave|brave|5.6.0 |The Apache Software License, Version 2.0|N| |io.zipkin.reporter2|zipkin-reporter|2.7.13 |The Apache Software License, Version 2.0|N| |io.zipkin.zipkin2|zipkin|2.19.1 |The Apache Software License, Version 2.0|N| @@ -90,76 +94,84 @@ Dependency |javax.inject|javax.inject|1 |The Apache Software License, Version 2.0|N| |javax.servlet|javax.servlet-api|4.0.1 |CDDL + GPLv2 with classpath exception|N| |javax.validation|validation-api|2.0.1.Final |Apache License 2.0|N| -|javax.ws.rs|javax.ws.rs-api|2.1 |CDDL 1.1 & GPL2 w/ CPE|N| +|javax.ws.rs|javax.ws.rs-api|2.1 |CDDL 1.1 & GPL2 w/ CPE|Y| |javax.xml.bind|jaxb-api|2.3.1 |CDDL 1.1 & GPL2 w/ CPE|N| |junit|junit|4.13 |Eclipse Public License 1.0|Y| -|log4j|log4j|1.2.17 |The Apache Software License, Version 2.0| N| |net.bytebuddy|byte-buddy|1.9.13 |Apache License, Version 2.0| N| |net.bytebuddy|byte-buddy-agent|1.9.13 |Apache License, Version 2.0|N| -|net.java.dev.jna|jna|4.5.2 |Apache License v2.0 & LGPL, version 2.1|N| -|net.java.dev.jna|jna-platform|4.5.2 |Apache License v2.0 & LGPL, version 2.1|N| -|net.minidev|accessors-smart|1.2 |The Apache Software License, Version 2.0|N| -|net.minidev|json-smart|2.3 |The Apache Software License, Version 2.0|N| -|org.abego.treelayout|org.abego.treelayout.core|1.0.3 |BSD 3-Clause "New" or "Revised" License BSD-3-Clause|N| +|net.minidev|accessors-smart|2.4.7 |The Apache Software License, Version 2.0|N| +|net.minidev|json-smart|2.4.7 |The Apache Software License, Version 2.0|Y| |org.antlr|ST4|4.0.8 |BSD licence|N| |org.antlr|antlr-runtime|3.5.2 |BSD licence|N| |org.antlr|antlr4|4.7 |The BSD License|N| |org.antlr|antlr4-runtime|4.7 |The BSD License|N| |org.apache.ant|ant|1.8.2 |The Apache Software License, Version 2.0|Y| |org.apache.ant|ant-launcher|1.8.2 |The Apache Software License, Version 2.0|N| +|org.apache.commons|commons-compress|1.21 |Apache License, Version 2.0|Y| |org.apache.commons|commons-lang3|3.8.1 |Apache License, Version 2.0|N| -|org.apache.httpcomponents|httpclient|4.5.10 |Apache License, Version 2.0|N| +|org.apache.httpcomponents|httpclient|4.5.10 |Apache License, Version 2.0|Y| |org.apache.httpcomponents|httpcore|4.4.11 |Apache License, Version 2.0|N| -|org.apache.logging.log4j|log4j-api|2.17.0 |Apache License, Version 2.0|Y| -|org.apache.logging.log4j|log4j-core|2.17.0 |Apache License, Version 2.0|Y| -|org.apache.logging.log4j|log4j-slf4j-impl|2.17.0 |Apache License, Version 2.0|Y| -|org.apache.servicecomb|common-javassist|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|common-protobuf|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|common-rest|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|deployment|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|foundation-common|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|foundation-config|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|foundation-metrics|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|foundation-protobuf|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|foundation-ssl|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|foundation-vertx|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|handler-bizkeeper|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|handler-flowcontrol-qps|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|handler-loadbalance|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|java-chassis-core|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|provider-jaxrs|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|provider-pojo|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|provider-rest-common|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|provider-springmvc|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|service-registry|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|spring-boot2-starter|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|spring-boot2-starter-servlet|1.3.2 |Apache License, Version 2.0|Y| -|org.apache.servicecomb|swagger-generator-core|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|swagger-generator-jaxrs|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|swagger-generator-springmvc|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|swagger-invocation-core|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|swagger-invocation-jaxrs|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|swagger-invocation-springmvc|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|transport-common|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|transport-highway|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|transport-rest-client|1.3.2 |Apache License, Version 2.0|N| -|org.apache.servicecomb|transport-rest-servlet|1.3.2 |Apache License, Version 2.0|N| -|org.apache.tomcat|tomcat-annotations-api|9.0.44 |Apache License, Version 2.0|Y| -|org.apache.tomcat.embed|tomcat-embed-core|9.0.44 |Apache License, Version 2.0|Y| -|org.apache.tomcat.embed|tomcat-embed-el|9.0.44 |Apache License, Version 2.0|Y| -|org.apache.tomcat.embed|tomcat-embed-websocket|9.0.44 |Apache License, Version 2.0|Y| +|org.apache.httpcomponents|httpmime|4.3.1 |Apache License, Version 2.0|N| +|org.apache.logging.log4j|log4j-api|2.17.1 |Apache License, Version 2.0|Y| +|org.apache.logging.log4j|log4j-core|2.17.1 |Apache License, Version 2.0|Y| +|org.apache.logging.log4j|log4j-slf4j-impl|2.17.1 |Apache License, Version 2.0|Y| +|org.apache.logging.log4j|log4j-to-slf4j|2.17.1 |Apache License, Version 2.0|Y| +|org.apache.servicecomb|common-javassist|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|common-protobuf|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|common-rest|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|deployment|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|foundation-common|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|foundation-config|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|foundation-metrics|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|foundation-protobuf|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|foundation-ssl|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|foundation-vertx|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|handler-bizkeeper|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|handler-flowcontrol-qps|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|handler-loadbalance|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|java-chassis-core|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|provider-jaxrs|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|provider-pojo|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|provider-rest-common|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|provider-springmvc|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|service-registry|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|spring-boot2-starter|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|spring-boot2-starter-servlet|1.3.6 |Apache License, Version 2.0|Y| +|org.apache.servicecomb|swagger-generator-core|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|swagger-generator-jaxrs|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|swagger-generator-springmvc|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|swagger-invocation-core|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|swagger-invocation-jaxrs|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|swagger-invocation-springmvc|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|transport-common|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|transport-highway|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|transport-rest-client|1.3.6 |Apache License, Version 2.0|N| +|org.apache.servicecomb|transport-rest-servlet|1.3.6 |Apache License, Version 2.0|N| +|org.apache.tomcat|tomcat-annotations-api|9.0.56 |Apache License, Version 2.0|Y| +|org.apache.tomcat.embed|tomcat-embed-core|9.0.56 |Apache License, Version 2.0|Y| +|org.apache.tomcat.embed|tomcat-embed-el|9.0.56 |Apache License, Version 2.0|Y| +|org.apache.tomcat.embed|tomcat-embed-websocket|9.0.56 |Apache License, Version 2.0|Y| |org.assertj|assertj-core|3.11.1 |Apache License, Version 2.0|N| |org.bouncycastle|bcpkix-jdk15on|1.64 |Bouncy Castle Licence| N| |org.bouncycastle|bcprov-jdk15on|1.68 |Bouncy Castle Licence|Y| |org.checkerframework|checker-qual|3.5.0 |The MIT License|N| -|org.codehaus.mojo|animal-sniffer-annotations|1.14 |MIT license|N| |org.codehaus.woodstox|stax2-api|4.2 |The BSD License|N| |org.eclipse.persistence|javax.persistence|2.1.0 |Eclipse Distribution License v. 1.0 & Eclipse Public License v1.0|Y| |org.glassfish|javax.json|1.0.4 |Dual license consisting of the CDDL v1.1 and GPL v2|N| |org.glassfish.jaxb|jaxb-runtime|2.3.1 |CDDL+GPL License| N| |org.glassfish.jaxb|txw2|2.3.1 |CDDL+GPL License|N| +|org.glassfish.hk2|hk2-api|2.5.0-b42 |EPL 2.0|N| +|org.glassfish.hk2|hk2-locator|2.5.0-b42 |EPL 2.0|N| +|org.glassfish.hk2|hk2-utils|2.5.0-b42 |EPL 2.0|N| +|org.glassfish.hk2|osgi-resource-locator|1.0.1 |GPL 2.0|N| +|org.glassfish.hk2.external|aopalliance-repackaged|2.5.0-b42 |EPL 2.0|N| +|org.glassfish.hk2.external|javax.inject|2.5.0-b42 |GPL 2.0|N| +|org.glassfish.jersey.connectors|jersey-apache-connector|2.27 |Apache License, Version 2.0|N| +|org.glassfish.jersey.core|jersey-client|2.27 |Apache License, Version 2.0|N| +|org.glassfish.jersey.core|jersey-common|2.27 |Apache License, Version 2.0|N| +|org.glassfish.jersey.inject|jersey-hk2|2.27 |Apache License, Version 2.0|N| +|org.hamcrest|hamcrest|2.2|New BSD License|N| |org.hamcrest|hamcrest-core|1.3 |New BSD License|N| -|org.hamcrest|hamcrest-library|1.3 |New BSD License|N| |org.hdrhistogram|HdrHistogram|2.1.10 |Public Domain, per Creative Commons CC0|N| |org.hibernate.validator|hibernate-validator|6.0.17.Final |Apache License 2.0|N| |org.javassist|javassist|3.24.0-GA |Apache License 2.0 & LGPL 2.1 & MPL 1.1|N| @@ -168,54 +180,54 @@ Dependency |org.jmockit|jmockit-coverage|1.19 |The MIT LICENSE|Y| |org.jvnet.staxex|stax-ex|1.8 |Dual license consisting of the CDDL v1.1 and GPL v2|N| |org.mockito|mockito-core|2.23.4 |The MIT License|N| -|org.mybatis|mybatis|3.5.7 |The Apache Software License, Version 2.0|N| +|org.mybatis|mybatis|3.5.9 |The Apache Software License, Version 2.0|N| |org.mybatis|mybatis-spring|2.0.6 |The Apache Software License, Version 2.0|N| -|org.mybatis.spring.boot|mybatis-spring-boot-autoconfigure|2.2.0 |The Apache Software License, Version 2.0|N| -|org.mybatis.spring.boot|mybatis-spring-boot-starter|2.2.0 |The Apache Software License, Version 2.0|Y| +|org.mybatis.spring.boot|mybatis-spring-boot-autoconfigure|2.2.1 |The Apache Software License, Version 2.0|N| +|org.mybatis.spring.boot|mybatis-spring-boot-starter|2.2.1 |The Apache Software License, Version 2.0|Y| |org.objenesis|objenesis|2.6 |Apache 2|N| -|org.osgi|org.osgi.core|4.3.1 |Apache License, Version 2.0|N| -|org.osgi|org.osgi.enterprise|4.2.0 - no url defined)|Unknown license|N| -|org.ow2.asm|asm|5.0.4 |BSD|N| +|org.ow2.asm|asm|9.1 |BSD|N| |org.postgresql|postgresql|42.2.16 |BSD-2-Clause|Y| |org.projectlombok|lombok|1.18.10 |The MIT License|Y| |org.reactivestreams|reactive-streams|1.0.0 |CC0|Y| |org.skyscreamer|jsonassert|1.5.0 |The Apache Software License, Version 2.0|N| |org.slf4j|jcl-over-slf4j|1.7.26 |MIT License|N| +|org.slf4j|jul-to-slf4j|1.7.26 |MIT License|N| |org.slf4j|slf4j-api|1.7.30 |MIT License|Y| -|org.springframework|spring-aop|5.1.13.RELEASE |Apache License, Version 2.0|Y| -|org.springframework|spring-beans|5.1.8.RELEASE |Apache License, Version 2.0|N| -|org.springframework|spring-context|5.1.8.RELEASE |Apache License, Version 2.0|N| -|org.springframework|spring-core|5.1.13.RELEASE |Apache License, Version 2.0|Y| -|org.springframework|spring-expression|5.1.8.RELEASE |Apache License, Version 2.0|N| -|org.springframework|spring-jcl|5.1.13.RELEASE |Apache License, Version 2.0|Y| -|org.springframework|spring-jdbc|5.1.8.RELEASE |Apache License, Version 2.0|N| -|org.springframework|spring-test|5.1.13.RELEASE |Apache License, Version 2.0|N| -|org.springframework|spring-tx|5.1.13.RELEASE |Apache License, Version 2.0|Y| -|org.springframework|spring-web|5.1.13.RELEASE |Apache License, Version 2.0|Y| -|org.springframework|spring-webmvc|5.1.8.RELEASE |Apache License, Version 2.0|N| -|org.springframework|spring-websocket|5.1.13.RELEASE |Apache License, Version 2.0|N| -|org.springframework.boot|spring-boot|2.1.6.RELEASE |Apache License, Version 2.0|N| -|org.springframework.boot|spring-boot-autoconfigure|2.1.6.RELEASE |Apache License, Version 2.0|N| +|org.springframework|spring-aop|5.2.19.RELEASE |Apache License, Version 2.0|Y| +|org.springframework|spring-beans|5.2.19.RELEASE |Apache License, Version 2.0|Y| +|org.springframework|spring-context|5.2.19.RELEASE |Apache License, Version 2.0|Y| +|org.springframework|spring-core|5.2.19.RELEASE |Apache License, Version 2.0|Y| +|org.springframework|spring-expression|5.2.19.RELEASE |Apache License, Version 2.0|Y| +|org.springframework|spring-jcl|5.2.19.RELEASE |Apache License, Version 2.0|Y| +|org.springframework|spring-jdbc|5.2.19.RELEASE |Apache License, Version 2.0|Y| +|org.springframework|spring-test|5.2.19.RELEASE |Apache License, Version 2.0|N| +|org.springframework|spring-tx|5.2.19.RELEASE |Apache License, Version 2.0|Y| +|org.springframework|spring-web|5.2.19.RELEASE |Apache License, Version 2.0|Y| +|org.springframework|spring-webmvc|5.2.19.RELEASE |Apache License, Version 2.0|Y| +|org.springframework|spring-websocket|5.2.19.RELEASE |Apache License, Version 2.0|Y| +|org.springframework.boot|spring-boot|2.3.3.RELEASE |Apache License, Version 2.0|Y| +|org.springframework.boot|spring-boot-autoconfigure|2.3.3.RELEASE |Apache License, Version 2.0|Y| |org.springframework.boot|spring-boot-configuration-processor|2.1.6.RELEASE |Apache License, Version 2.0|Y| |org.springframework.boot|spring-boot-starter|2.1.6.RELEASE |Apache License, Version 2.0|N| +|org.springframework.boot|spring-boot-starter-aop|2.3.3.RELEASE |Apache License, Version 2.0|Y| |org.springframework.boot|spring-boot-starter-jdbc|2.3.3.RELEASE |Apache License, Version 2.0|Y| |org.springframework.boot|spring-boot-starter-json|2.1.6.RELEASE |Apache License, Version 2.0|N| +|org.springframework.boot|spring-boot-starter-logging|2.1.6.RELEASE |Apache License, Version 2.0|N| |org.springframework.boot|spring-boot-starter-test|2.3.3.RELEASE |Apache License, Version 2.0|Y| |org.springframework.boot|spring-boot-starter-tomcat|2.1.6.RELEASE |Apache License, Version 2.0|N| |org.springframework.boot|spring-boot-starter-web|2.1.6.RELEASE |Apache License, Version 2.0|N| -|org.springframework.boot|spring-boot-starter-websocket|2.1.18.RELEASE |Apache License, Version 2.0|N| +|org.springframework.boot|spring-boot-starter-websocket|2.1.18.RELEASE |Apache License, Version 2.0|Y| |org.springframework.boot|spring-boot-test|2.1.6.RELEASE |Apache License, Version 2.0|N| |org.springframework.boot|spring-boot-test-autoconfigure|2.1.6.RELEASE |Apache License, Version 2.0|N| -|org.springframework.security|spring-security-config|5.1.5.RELEASE |The Apache Software License, Version 2.0|N| -|org.springframework.security|spring-security-core|5.1.5.RELEASE |The Apache Software License, Version 2.0|N| +|org.springframework.security|spring-security-config|5.3.13.RELEASE |The Apache Software License, Version 2.0|Y| +|org.springframework.security|spring-security-core|5.3.13.RELEASE |The Apache Software License, Version 2.0|Y| |org.springframework.security|spring-security-jwt|1.1.1.RELEASE |Apache 2.0|Y| -|org.springframework.security|spring-security-test|5.3.10.RELEASE |The Apache Software License, Version 2.0|Y| -|org.springframework.security|spring-security-web|5.1.5.RELEASE |The Apache Software License, Version 2.0|N| +|org.springframework.security|spring-security-test|5.3.13.RELEASE |The Apache Software License, Version 2.0|Y| +|org.springframework.security|spring-security-web|5.3.13.RELEASE |The Apache Software License, Version 2.0|Y| |org.springframework.security.oauth|spring-security-oauth2|2.3.8.RELEASE |Apache 2.0|Y| |org.springframework.security.oauth.boot|spring-security-oauth2-autoconfigure|2.2.2.RELEASE |The Apache Software License, Version 2.0|Y| |org.xmlunit|xmlunit-core|2.6.2 |The Apache Software License, Version 2.0|N| |org.yaml|snakeyaml|1.26 |Apache License, Version 2.0|Y| -|com.github.docker-java|docker-java|3.2.10 |Apache License, Version 2.0|N| |org.modelmapper|modelmapper|1.1.0 |Apache License, Version 2.0|Y| -- Gitee