This is an automated email from the ASF dual-hosted git repository. jackietien pushed a commit to branch rel/0.12 in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit c34fcdc3a20da0b5e5230b21505f5f4c64877b34 Author: JackieTien97 <[email protected]> AuthorDate: Fri Jul 8 15:02:54 2022 +0800 change python and jdbc version to 0.12.6 --- client-py/setup.py | 2 +- docker/src/main/Dockerfile-0.12.6-cluster | 53 ++++++ docker/src/main/Dockerfile-0.12.6-grafana | 41 +++++ docker/src/main/Dockerfile-0.12.6-node | 45 +++++ example/flink/src/license/THIRD-PARTY.properties | 44 +++++ example/hadoop/src/license/THIRD-PARTY.properties | 37 ++++ example/kafka/src/license/THIRD-PARTY.properties | 28 +++ example/pulsar/src/license/THIRD-PARTY.properties | 30 ++++ .../rocketmq/src/license/THIRD-PARTY.properties | 25 +++ example/spark/src/license/THIRD-PARTY.properties | 53 ++++++ .../src/license/THIRD-PARTY.properties | 43 +++++ hadoop/src/license/THIRD-PARTY.properties | 36 ++++ hive-connector/src/license/THIRD-PARTY.properties | 47 ++++++ jdbc/src/main/feature/feature.xml | 2 +- release.properties | 187 +++++++++++++++++++++ .../src/license/THIRD-PARTY.properties | 55 ++++++ spark-tsfile/src/license/THIRD-PARTY.properties | 54 ++++++ 17 files changed, 780 insertions(+), 2 deletions(-) diff --git a/client-py/setup.py b/client-py/setup.py index cf3ad30b0a..0d9826cf24 100644 --- a/client-py/setup.py +++ b/client-py/setup.py @@ -31,7 +31,7 @@ print(long_description) setuptools.setup( name="apache-iotdb", # Replace with your own username - version="0.12.5", + version="0.12.6", author=" Apache Software Foundation", author_email="[email protected]", description="Apache IoTDB client API", diff --git a/docker/src/main/Dockerfile-0.12.6-cluster b/docker/src/main/Dockerfile-0.12.6-cluster new file mode 100644 index 0000000000..b7975dee43 --- /dev/null +++ b/docker/src/main/Dockerfile-0.12.6-cluster @@ -0,0 +1,53 @@ +# +# 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. +# + +FROM openjdk:11-jre-slim +RUN apt update \ + # procps is for `free` command + && apt install wget unzip lsof procps -y \ + && wget https://downloads.apache.org/iotdb/0.12.6/apache-iotdb-0.12.6-cluster-bin.zip \ + # if you are in China, use the following URL + #&& wget https://mirrors.tuna.tsinghua.edu.cn/apache/iotdb/0.12.6/apache-iotdb-0.12.6-cluster-bin.zip \ + && unzip apache-iotdb-0.12.6-cluster-bin.zip \ + && rm apache-iotdb-0.12.6-cluster-bin.zip \ + && mv apache-iotdb-0.12.6-cluster-bin /iotdb \ + && apt remove wget unzip -y \ + && apt autoremove -y \ + && apt purge --auto-remove -y \ + && apt clean -y \ + # modify the seeds in configuration file + && sed -i '/^seed_nodes/cseed_nodes=127.0.0.1:9003' /iotdb/conf/iotdb-cluster.properties \ + && sed -i '/^default_replica_num/cdefault_replica_num=1' /iotdb/conf/iotdb-cluster.properties + +# rpc port +EXPOSE 6667 +# JMX port +EXPOSE 31999 +# sync port +EXPOSE 5555 +# monitor port +EXPOSE 8181 +# internal meta port +EXPOSE 9003 +# internal data port +EXPOSE 40010 +VOLUME /iotdb/data +VOLUME /iotdb/logs +ENV PATH="/iotdb/sbin/:/iotdb/tools/:${PATH}" +ENTRYPOINT ["/iotdb/sbin/start-node.sh"] diff --git a/docker/src/main/Dockerfile-0.12.6-grafana b/docker/src/main/Dockerfile-0.12.6-grafana new file mode 100644 index 0000000000..8140673b16 --- /dev/null +++ b/docker/src/main/Dockerfile-0.12.6-grafana @@ -0,0 +1,41 @@ +# +# 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. +# + +FROM openjdk:11-jre-slim +RUN apt update \ + # procps is for `free` command + && apt install wget unzip lsof procps -y \ + && wget https://downloads.apache.org/iotdb/0.12.6/apache-iotdb-0.12.6-grafana-bin.zip \ + # if you are in China, use the following URL + #&& wget https://mirrors.tuna.tsinghua.edu.cn/apache/iotdb/0.12.6/apache-iotdb-0.12.6-grafana-bin.zip \ + && unzip apache-iotdb-0.12.6-grafana-bin.zip \ + && rm apache-iotdb-0.12.6-grafana-bin.zip \ + && mv apache-iotdb-0.12.6-grafana-bin /iotdb-grafana \ + && apt remove wget unzip -y \ + && apt autoremove -y \ + && apt purge --auto-remove -y \ + && apt clean -y +# rpc port +EXPOSE 8888 +VOLUME /iotdb-grafana/config +RUN echo "#!/bin/bash" > /iotdb-grafana/runboot.sh +RUN echo "java -Djava.security.egd=file:/dev/./urandom -jar /iotdb-grafana/iotdb-grafana.war" >> /iotdb-grafana/runboot.sh +RUN chmod a+x /iotdb-grafana/runboot.sh +WORKDIR /iotdb-grafana +ENTRYPOINT ["./runboot.sh"] diff --git a/docker/src/main/Dockerfile-0.12.6-node b/docker/src/main/Dockerfile-0.12.6-node new file mode 100644 index 0000000000..eaf3e01a91 --- /dev/null +++ b/docker/src/main/Dockerfile-0.12.6-node @@ -0,0 +1,45 @@ +# +# 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. +# + +FROM openjdk:11-jre-slim +RUN apt update \ + # procps is for `free` command + && apt install wget unzip lsof procps -y \ + && wget https://downloads.apache.org/iotdb/0.12.6/apache-iotdb-0.12.6-server-bin.zip \ + # if you are in China, use the following URL + #&& wget https://mirrors.tuna.tsinghua.edu.cn/apache/iotdb/0.12.6/apache-iotdb-0.12.6-server-bin.zip \ + && unzip apache-iotdb-0.12.6-server-bin.zip \ + && rm apache-iotdb-0.12.6-server-bin.zip \ + && mv apache-iotdb-0.12.6-server-bin /iotdb \ + && apt remove wget unzip -y \ + && apt autoremove -y \ + && apt purge --auto-remove -y \ + && apt clean -y +# rpc port +EXPOSE 6667 +# JMX port +EXPOSE 31999 +# sync port +EXPOSE 5555 +# monitor port +EXPOSE 8181 +VOLUME /iotdb/data +VOLUME /iotdb/logs +ENV PATH="/iotdb/sbin/:/iotdb/tools/:${PATH}" +ENTRYPOINT ["/iotdb/sbin/start-server.sh"] diff --git a/example/flink/src/license/THIRD-PARTY.properties b/example/flink/src/license/THIRD-PARTY.properties new file mode 100644 index 0000000000..0778e35d1e --- /dev/null +++ b/example/flink/src/license/THIRD-PARTY.properties @@ -0,0 +1,44 @@ +# Generated by org.codehaus.mojo.license.AddThirdPartyMojo +#------------------------------------------------------------------------------- +# Already used licenses in project : +# - Apache 2 +# - Apache 2.0 +# - Apache License +# - Apache License 2.0 +# - Apache License, Version 2.0 +# - Apache Software License - Version 2.0 +# - Apache-2.0 +# - BSD +# - BSD 3-Clause +# - BSD 3-clause +# - CC0 +# - CDDL + GPLv2 with classpath exception +# - CDDL 1.1 +# - CDDL/GPLv2+CE +# - EDL 1.0 +# - Eclipse Distribution License - v 1.0 +# - Eclipse Public License - Version 1.0 +# - Eclipse Public License - v 1.0 +# - Eclipse Public License 1.0 +# - GNU Lesser General Public License +# - GNU Lesser General Public License (LGPL), Version 2.1 +# - GPL2 w/ CPE +# - LGPL 2.1 +# - MIT License +# - MPL 1.1 +# - New BSD License +# - New BSD license +# - The Apache License, Version 2.0 +# - The Apache Software License, Version 2.0 +# - The BSD 3-Clause License +# - The BSD License +# - The MIT License +#------------------------------------------------------------------------------- +# Please fill the missing licenses for dependencies : +# +# +#Fri Jul 08 14:48:21 CST 2022 +io.netty--netty-tcnative-classes--2.0.46.Final= +javax.servlet.jsp--jsp-api--2.1= +javax.servlet--servlet-api--2.5= +org.apache.zookeeper--zookeeper--3.4.6= diff --git a/example/hadoop/src/license/THIRD-PARTY.properties b/example/hadoop/src/license/THIRD-PARTY.properties new file mode 100644 index 0000000000..e65f850ef1 --- /dev/null +++ b/example/hadoop/src/license/THIRD-PARTY.properties @@ -0,0 +1,37 @@ +# Generated by org.codehaus.mojo.license.AddThirdPartyMojo +#------------------------------------------------------------------------------- +# Already used licenses in project : +# - Apache 2.0 +# - Apache License +# - Apache License, Version 2.0 +# - Apache Software License - Version 2.0 +# - Apache-2.0 +# - BSD +# - CDDL + GPLv2 with classpath exception +# - CDDL 1.1 +# - CDDL/GPLv2+CE +# - EDL 1.0 +# - Eclipse Distribution License - v 1.0 +# - Eclipse Public License - Version 1.0 +# - Eclipse Public License - v 1.0 +# - Eclipse Public License 1.0 +# - GNU Lesser General Public License +# - GNU Lesser General Public License (LGPL), Version 2.1 +# - GPL2 w/ CPE +# - MIT License +# - New BSD License +# - New BSD license +# - The Apache License, Version 2.0 +# - The Apache Software License, Version 2.0 +# - The BSD 3-Clause License +# - The BSD License +# - The MIT License +#------------------------------------------------------------------------------- +# Please fill the missing licenses for dependencies : +# +# +#Fri Jul 08 14:47:55 CST 2022 +io.netty--netty-tcnative-classes--2.0.46.Final= +javax.servlet.jsp--jsp-api--2.1= +javax.servlet--servlet-api--2.5= +org.apache.zookeeper--zookeeper--3.4.6= diff --git a/example/kafka/src/license/THIRD-PARTY.properties b/example/kafka/src/license/THIRD-PARTY.properties new file mode 100644 index 0000000000..73b6c12341 --- /dev/null +++ b/example/kafka/src/license/THIRD-PARTY.properties @@ -0,0 +1,28 @@ +# Generated by org.codehaus.mojo.license.AddThirdPartyMojo +#------------------------------------------------------------------------------- +# Already used licenses in project : +# - Apache License 2.0 +# - Apache License, Version 2.0 +# - Apache-2.0 +# - BSD 3-Clause +# - CDDL + GPLv2 with classpath exception +# - CDDL 1.1 +# - CDDL/GPLv2+CE +# - EDL 1.0 +# - Eclipse Distribution License - v 1.0 +# - Eclipse Public License - v 1.0 +# - Eclipse Public License 1.0 +# - GNU Lesser General Public License +# - GPL2 w/ CPE +# - MIT License +# - New BSD License +# - The Apache License, Version 2.0 +# - The Apache Software License, Version 2.0 +# - The BSD License +# - The MIT License +#------------------------------------------------------------------------------- +# Please fill the missing licenses for dependencies : +# +# +#Fri Jul 08 14:46:52 CST 2022 +org.apache.zookeeper--zookeeper--3.4.6= diff --git a/example/pulsar/src/license/THIRD-PARTY.properties b/example/pulsar/src/license/THIRD-PARTY.properties new file mode 100644 index 0000000000..bbaf78da78 --- /dev/null +++ b/example/pulsar/src/license/THIRD-PARTY.properties @@ -0,0 +1,30 @@ +# Generated by org.codehaus.mojo.license.AddThirdPartyMojo +#------------------------------------------------------------------------------- +# Already used licenses in project : +# - 3-Clause BSD License +# - Apache 2.0 +# - Apache License 2.0 +# - Apache License, Version 2.0 +# - Apache-2.0 +# - CDDL + GPLv2 with classpath exception +# - CDDL 1.1 +# - CDDL/GPLv2+CE +# - EDL 1.0 +# - Eclipse Distribution License - v 1.0 +# - Eclipse Public License - v 1.0 +# - Eclipse Public License 1.0 +# - GNU General Public License, version 2 (GPL2), with the classpath exception +# - GNU Lesser General Public License +# - GPL2 w/ CPE +# - MIT License +# - MIT license +# - New BSD License +# - The Apache License, Version 2.0 +# - The Apache Software License, Version 2.0 +# - The MIT License +#------------------------------------------------------------------------------- +# Please fill the missing licenses for dependencies : +# +# +#Fri Jul 08 14:48:32 CST 2022 +net.jcip--jcip-annotations--1.0= diff --git a/example/rocketmq/src/license/THIRD-PARTY.properties b/example/rocketmq/src/license/THIRD-PARTY.properties new file mode 100644 index 0000000000..1184e7776c --- /dev/null +++ b/example/rocketmq/src/license/THIRD-PARTY.properties @@ -0,0 +1,25 @@ +# Generated by org.codehaus.mojo.license.AddThirdPartyMojo +#------------------------------------------------------------------------------- +# Already used licenses in project : +# - Apache License, Version 2.0 +# - Apache-2.0 +# - CDDL + GPLv2 with classpath exception +# - CDDL 1.1 +# - CDDL/GPLv2+CE +# - EDL 1.0 +# - Eclipse Distribution License - v 1.0 +# - Eclipse Public License - v 1.0 +# - Eclipse Public License 1.0 +# - GNU Lesser General Public License +# - GPL2 w/ CPE +# - MIT License +# - New BSD License +# - The Apache License, Version 2.0 +# - The Apache Software License, Version 2.0 +# - The MIT License +#------------------------------------------------------------------------------- +# Please fill the missing licenses for dependencies : +# +# +#Fri Jul 08 14:47:16 CST 2022 +io.netty--netty-tcnative-classes--2.0.46.Final= diff --git a/example/spark/src/license/THIRD-PARTY.properties b/example/spark/src/license/THIRD-PARTY.properties new file mode 100644 index 0000000000..ef4e1eb7c1 --- /dev/null +++ b/example/spark/src/license/THIRD-PARTY.properties @@ -0,0 +1,53 @@ +# Generated by org.codehaus.mojo.license.AddThirdPartyMojo +#------------------------------------------------------------------------------- +# Already used licenses in project : +# - 3-Clause BSD License +# - Apache 2 +# - Apache 2.0 +# - Apache 2.0 License +# - Apache License +# - Apache License (v2.0) +# - Apache License 2.0 +# - Apache License, Version 2.0 +# - Apache Software License - Version 2.0 +# - Apache-2.0 +# - BSD +# - BSD 2-Clause License +# - BSD 3-Clause +# - BSD 3-clause +# - CDDL + GPLv2 with classpath exception +# - CDDL 1.1 +# - CDDL+GPL License +# - CDDL/GPLv2+CE +# - COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 +# - EDL 1.0 +# - Eclipse Distribution License - v 1.0 +# - Eclipse Public License - Version 1.0 +# - Eclipse Public License - v 1.0 +# - Eclipse Public License 1.0 +# - GNU Lesser General Public License +# - GNU Lesser General Public License (LGPL), Version 2.1 +# - GPL2 w/ CPE +# - LGPL 2.1 +# - MIT License +# - MPL 1.1 +# - New BSD License +# - New BSD license +# - Public Domain +# - The Apache License, Version 2.0 +# - The Apache Software License, Version 2.0 +# - The BSD 3-Clause License +# - The BSD License +# - The MIT License +# - The New BSD License +# - http://asm.ow2.org/license.html +# - http://www.apache.org/licenses/LICENSE-2.0.txt +#------------------------------------------------------------------------------- +# Please fill the missing licenses for dependencies : +# +# +#Fri Jul 08 14:50:19 CST 2022 +io.netty--netty-tcnative-classes--2.0.46.Final= +javax.servlet.jsp--jsp-api--2.1= +org.apache.zookeeper--zookeeper--3.4.6= +oro--oro--2.0.8= diff --git a/flink-tsfile-connector/src/license/THIRD-PARTY.properties b/flink-tsfile-connector/src/license/THIRD-PARTY.properties new file mode 100644 index 0000000000..84cb74dab9 --- /dev/null +++ b/flink-tsfile-connector/src/license/THIRD-PARTY.properties @@ -0,0 +1,43 @@ +# Generated by org.codehaus.mojo.license.AddThirdPartyMojo +#------------------------------------------------------------------------------- +# Already used licenses in project : +# - Apache 2 +# - Apache 2.0 +# - Apache License +# - Apache License 2.0 +# - Apache License, Version 2.0 +# - Apache Software License - Version 2.0 +# - Apache-2.0 +# - BSD +# - BSD 3-Clause +# - BSD 3-clause +# - CC0 +# - CDDL + GPLv2 with classpath exception +# - CDDL 1.1 +# - CDDL/GPLv2+CE +# - EDL 1.0 +# - Eclipse Distribution License - v 1.0 +# - Eclipse Public License - Version 1.0 +# - Eclipse Public License - v 1.0 +# - Eclipse Public License 1.0 +# - GNU Lesser General Public License +# - GNU Lesser General Public License (LGPL), Version 2.1 +# - GPL2 w/ CPE +# - LGPL 2.1 +# - MIT License +# - MPL 1.1 +# - New BSD License +# - New BSD license +# - The Apache License, Version 2.0 +# - The Apache Software License, Version 2.0 +# - The BSD 3-Clause License +# - The BSD License +# - The MIT License +#------------------------------------------------------------------------------- +# Please fill the missing licenses for dependencies : +# +# +#Fri Jul 08 14:48:17 CST 2022 +io.netty--netty-tcnative-classes--2.0.46.Final= +javax.servlet.jsp--jsp-api--2.1= +javax.servlet--servlet-api--2.5= diff --git a/hadoop/src/license/THIRD-PARTY.properties b/hadoop/src/license/THIRD-PARTY.properties new file mode 100644 index 0000000000..42dc328a6e --- /dev/null +++ b/hadoop/src/license/THIRD-PARTY.properties @@ -0,0 +1,36 @@ +# Generated by org.codehaus.mojo.license.AddThirdPartyMojo +#------------------------------------------------------------------------------- +# Already used licenses in project : +# - Apache 2.0 +# - Apache License +# - Apache License, Version 2.0 +# - Apache Software License - Version 2.0 +# - Apache-2.0 +# - BSD +# - CDDL + GPLv2 with classpath exception +# - CDDL 1.1 +# - CDDL/GPLv2+CE +# - EDL 1.0 +# - Eclipse Distribution License - v 1.0 +# - Eclipse Public License - Version 1.0 +# - Eclipse Public License - v 1.0 +# - Eclipse Public License 1.0 +# - GNU Lesser General Public License +# - GNU Lesser General Public License (LGPL), Version 2.1 +# - GPL2 w/ CPE +# - MIT License +# - New BSD License +# - New BSD license +# - The Apache License, Version 2.0 +# - The Apache Software License, Version 2.0 +# - The BSD 3-Clause License +# - The BSD License +# - The MIT License +#------------------------------------------------------------------------------- +# Please fill the missing licenses for dependencies : +# +# +#Fri Jul 08 14:47:51 CST 2022 +io.netty--netty-tcnative-classes--2.0.46.Final= +javax.servlet.jsp--jsp-api--2.1= +javax.servlet--servlet-api--2.5= diff --git a/hive-connector/src/license/THIRD-PARTY.properties b/hive-connector/src/license/THIRD-PARTY.properties new file mode 100644 index 0000000000..2af30f9c26 --- /dev/null +++ b/hive-connector/src/license/THIRD-PARTY.properties @@ -0,0 +1,47 @@ +# Generated by org.codehaus.mojo.license.AddThirdPartyMojo +#------------------------------------------------------------------------------- +# Already used licenses in project : +# - Apache 2 +# - Apache 2.0 +# - Apache License +# - Apache License 2.0 +# - Apache License, Version 2.0 +# - Apache Software License - Version 2.0 +# - Apache-2.0 +# - BSD +# - BSD licence +# - CDDL + GPLv2 with classpath exception +# - CDDL 1.1 +# - CDDL/GPLv2+CE +# - Common Development and Distribution License (CDDL) v1.0 +# - EDL 1.0 +# - Eclipse Distribution License - v 1.0 +# - Eclipse Public License - Version 1.0 +# - Eclipse Public License - v 1.0 +# - Eclipse Public License 1.0 +# - GNU Lesser General Public License +# - GNU Lesser General Public License (LGPL), Version 2.1 +# - GPL2 w/ CPE +# - MIT License +# - New BSD License +# - New BSD license +# - Public Domain +# - The Apache License, Version 2.0 +# - The Apache Software License, Version 2.0 +# - The BSD 3-Clause License +# - The BSD License +# - The MIT License +#------------------------------------------------------------------------------- +# Please fill the missing licenses for dependencies : +# +# +#Fri Jul 08 14:51:24 CST 2022 +io.netty--netty-tcnative-classes--2.0.46.Final= +javax.servlet.jsp--jsp-api--2.1= +javax.servlet--servlet-api--2.5= +javax.servlet--jsp-api--2.0= +asm--asm--3.1= +asm--asm-commons--3.1= +asm--asm-tree--3.1= +org.codehaus.jettison--jettison--1.1= +oro--oro--2.0.8= diff --git a/jdbc/src/main/feature/feature.xml b/jdbc/src/main/feature/feature.xml index a0fd388226..8118fed28f 100644 --- a/jdbc/src/main/feature/feature.xml +++ b/jdbc/src/main/feature/feature.xml @@ -18,7 +18,7 @@ --> <features xmlns="http://karaf.apache.org/xmlns/features/v1.5.0" name="driver-s7-feature"> - <feature name="iotdb-feature" description="iotdb-feature" version="0.12.5"> + <feature name="iotdb-feature" description="iotdb-feature" version="0.12.6"> <details>Feature to install required Bundle to use IoTDB inside Karaf container</details> <feature prerequisite="true">wrap</feature> <feature>scr</feature> diff --git a/release.properties b/release.properties new file mode 100644 index 0000000000..e4af7155c7 --- /dev/null +++ b/release.properties @@ -0,0 +1,187 @@ +#release configuration +#Fri Jul 08 15:00:43 CST 2022 +projectVersionPolicyId=default +project.scm.org.apache.iotdb\:spark-example.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +scm.branchCommitComment=@{prefix} prepare branch @{releaseLabel} +project.scm.org.apache.iotdb\:iotdb-cli.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-code-coverage.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:spark-iotdb-connector.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-cluster.tag=v0.12.3 +project.scm.org.apache.iotdb\:client-example.tag=v0.12.3 +project.scm.org.apache.iotdb\:iotdb-server.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-jdbc.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-cli.tag=v0.12.3 +project.scm.org.apache.iotdb\:iotdb-distribution.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:tsfile.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:kafka-example.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +exec.activateProfiles=site,compile-cpp,code-coverage,get-jar-with-dependencies +project.scm.org.apache.iotdb\:iotdb-cli.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:rewriteFileTool.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-examples.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:flink-tsfile-connector.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-session.tag=v0.12.3 +project.scm.org.apache.iotdb\:iotdb-parent.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-thrift.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-code-coverage.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:rocketmq-example.tag=v0.12.3 +project.scm.org.apache.iotdb\:service-rpc.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-cli.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:service-rpc.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-python-api.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:spark-iotdb-connector.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:flink-tsfile-connector.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:udf-example.tag=v0.12.3 +project.scm.org.apache.iotdb\:client-cpp-tools-thrift.tag=v0.12.3 +project.scm.org.apache.iotdb\:iotdb-examples.tag=v0.12.3 +project.scm.org.apache.iotdb\:iotdb-parent.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:hadoop-example.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:spark-example.tag=v0.12.3 +project.scm.org.apache.iotdb\:iotdb-examples.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:hadoop-example.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:flink-tsfile-connector.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:cross-tests.tag=v0.12.3 +project.scm.org.apache.iotdb\:iotdb-thrift-sync.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-cluster.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-jdbc.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:hive-connector.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-cluster.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:hadoop-tsfile.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:pulsar-example.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-website.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:tsfile.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:tsfile-example.tag=v0.12.3 +project.scm.org.apache.iotdb\:client-example.url=ssh\://[email protected]\:apache/iotdb.git +preparationGoals=clean verify +project.scm.org.apache.iotdb\:client-cpp-example.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:client-cpp.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +exec.pomFileName=pom.xml +project.scm.org.apache.iotdb\:rewriteFileTool.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:kafka-example.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:flink-iotdb-connector.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:client-cpp.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-grafana.tag=v0.12.3 +project.scm.org.apache.iotdb\:iotdb-thrift-cluster.tag=v0.12.3 +project.scm.org.apache.iotdb\:rocketmq-example.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:client-example.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:spark-tsfile.tag=v0.12.3 +project.scm.org.apache.iotdb\:spark-example.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:hadoop-tsfile.tag=v0.12.3 +project.scm.org.apache.iotdb\:rocketmq-example.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:mqtt-example.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:flink-example.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +pushChanges=true +project.scm.org.apache.iotdb\:jdbc-example.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:zeppelin-iotdb.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:rocketmq-example.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:flink-example.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-parent.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-parent.tag=v0.12.3 +project.scm.org.apache.iotdb\:client-cpp-example.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +scm.rollbackCommitComment=@{prefix} rollback the release of @{releaseLabel} +project.scm.org.apache.iotdb\:kafka-example.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-website.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:client-cpp.tag=v0.12.3 +project.scm.org.apache.iotdb\:iotdb-jdbc.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:client-cpp-tools-thrift.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:tsfile-example.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:spark-tsfile.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-thrift-cluster.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +scm.url=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:mqtt-example.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:hive-connector.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-jdbc.tag=v0.12.3 +scm.developmentCommitComment=@{prefix} prepare for next development iteration +project.scm.org.apache.iotdb\:iotdb-python-api.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:spark-tsfile.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:mqtt-example.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:zeppelin-iotdb.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-antlr.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:spark-tsfile.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:client-cpp-tools-thrift.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:udf-example.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:client-cpp-example.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:spark-example.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:hadoop-tsfile.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-antlr.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-server.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:client-cpp-tools-thrift.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:client-cpp-tools.tag=v0.12.3 +project.scm.org.apache.iotdb\:rewriteFileTool.tag=v0.12.3 +project.scm.org.apache.iotdb\:iotdb-thrift-sync.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:zeppelin-iotdb.tag=v0.12.3 +project.scm.org.apache.iotdb\:iotdb-thrift-cluster.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-website.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-thrift.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-server.tag=v0.12.3 +project.scm.org.apache.iotdb\:client-cpp-tools.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:client-cpp-example.tag=v0.12.3 +releaseStrategyId=default +scm.commentPrefix=[maven-release-plugin] +project.scm.org.apache.iotdb\:iotdb-examples.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:tsfile-example.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-session.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-thrift.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:rewriteFileTool.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:flink-example.tag=v0.12.3 +completedPhase=check-poms +project.scm.org.apache.iotdb\:tsfile-example.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:client-cpp-tools.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:kafka-example.tag=v0.12.3 +project.scm.org.apache.iotdb\:udf-example.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-server.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:client-cpp-tools.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:mqtt-example.tag=v0.12.3 +project.scm.org.apache.iotdb\:jdbc-example.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:tsfile.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-python-api.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-thrift-cluster.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:pulsar-example.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-session.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-grafana.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-python-api.tag=v0.12.3 +project.scm.org.apache.iotdb\:flink-example.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-distribution.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-thrift.tag=v0.12.3 +project.scm.org.apache.iotdb\:client-example.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:cross-tests.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-session.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:service-rpc.tag=v0.12.3 +project.scm.org.apache.iotdb\:pulsar-example.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-antlr.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:spark-iotdb-connector.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-thrift-sync.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:flink-iotdb-connector.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:zeppelin-iotdb.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:flink-iotdb-connector.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:hadoop-tsfile.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-cluster.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:hive-connector.tag=v0.12.3 +project.scm.org.apache.iotdb\:hadoop-example.tag=v0.12.3 +project.scm.org.apache.iotdb\:iotdb-grafana.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-code-coverage.tag=v0.12.3 +project.scm.org.apache.iotdb\:tsfile.tag=v0.12.3 +remoteTagging=true +project.scm.org.apache.iotdb\:pulsar-example.tag=v0.12.3 +project.scm.org.apache.iotdb\:flink-tsfile-connector.tag=v0.12.3 +project.scm.org.apache.iotdb\:cross-tests.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:jdbc-example.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:hive-connector.url=ssh\://[email protected]\:apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-antlr.tag=v0.12.3 +project.scm.org.apache.iotdb\:jdbc-example.tag=v0.12.3 +project.scm.org.apache.iotdb\:iotdb-distribution.tag=v0.12.3 +project.scm.org.apache.iotdb\:iotdb-website.tag=v0.12.3 +project.scm.org.apache.iotdb\:hadoop-example.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:cross-tests.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-grafana.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +exec.additionalArguments=-Papache-release +scm.tagNameFormat=@{project.artifactId}-@{project.version} +project.scm.org.apache.iotdb\:spark-iotdb-connector.tag=v0.12.3 +project.scm.org.apache.iotdb\:iotdb-distribution.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:flink-iotdb-connector.tag=v0.12.3 +project.scm.org.apache.iotdb\:iotdb-thrift-sync.tag=v0.12.3 +project.scm.org.apache.iotdb\:service-rpc.connection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +project.scm.org.apache.iotdb\:iotdb-code-coverage.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git +exec.snapshotReleasePluginAllowed=false +project.scm.org.apache.iotdb\:udf-example.url=ssh\://[email protected]\:apache/iotdb.git +scm.releaseCommitComment=@{prefix} prepare release @{releaseLabel} +project.scm.org.apache.iotdb\:client-cpp.developerConnection=scm\:git\:ssh\://[email protected]/apache/iotdb.git diff --git a/spark-iotdb-connector/src/license/THIRD-PARTY.properties b/spark-iotdb-connector/src/license/THIRD-PARTY.properties new file mode 100644 index 0000000000..eb582d5036 --- /dev/null +++ b/spark-iotdb-connector/src/license/THIRD-PARTY.properties @@ -0,0 +1,55 @@ +# Generated by org.codehaus.mojo.license.AddThirdPartyMojo +#------------------------------------------------------------------------------- +# Already used licenses in project : +# - 3-Clause BSD License +# - Apache 2 +# - Apache 2.0 +# - Apache 2.0 License +# - Apache License +# - Apache License (v2.0) +# - Apache License 2.0 +# - Apache License, Version 2.0 +# - Apache License, version 2.0 +# - Apache Software License - Version 2.0 +# - Apache-2.0 +# - BSD +# - BSD 2-Clause License +# - BSD 3-clause +# - CDDL + GPLv2 with classpath exception +# - CDDL 1.1 +# - CDDL+GPL License +# - CDDL/GPLv2+CE +# - COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 +# - EDL 1.0 +# - Eclipse Distribution License - v 1.0 +# - Eclipse Public License - Version 1.0 +# - Eclipse Public License - v 1.0 +# - Eclipse Public License 1.0 +# - GNU Lesser General Public License +# - GNU Lesser General Public License (LGPL), Version 2.1 +# - GPL2 w/ CPE +# - LGPL 2.1 +# - MIT +# - MIT License +# - MPL 1.1 +# - MPL 2.0 or EPL 1.0 +# - New BSD License +# - New BSD license +# - Public Domain +# - The Apache License, Version 2.0 +# - The Apache Software License, Version 2.0 +# - The BSD 3-Clause License +# - The BSD License +# - The MIT License +# - The New BSD License +# - http://asm.ow2.org/license.html +# - http://www.apache.org/licenses/LICENSE-2.0.txt +# - the Apache License, ASL Version 2.0 +#------------------------------------------------------------------------------- +# Please fill the missing licenses for dependencies : +# +# +#Fri Jul 08 14:50:04 CST 2022 +io.netty--netty-tcnative-classes--2.0.46.Final= +javax.servlet.jsp--jsp-api--2.1= +oro--oro--2.0.8= diff --git a/spark-tsfile/src/license/THIRD-PARTY.properties b/spark-tsfile/src/license/THIRD-PARTY.properties new file mode 100644 index 0000000000..ba86294ec7 --- /dev/null +++ b/spark-tsfile/src/license/THIRD-PARTY.properties @@ -0,0 +1,54 @@ +# Generated by org.codehaus.mojo.license.AddThirdPartyMojo +#------------------------------------------------------------------------------- +# Already used licenses in project : +# - 3-Clause BSD License +# - Apache 2 +# - Apache 2.0 +# - Apache 2.0 License +# - Apache License +# - Apache License (v2.0) +# - Apache License 2.0 +# - Apache License, Version 2.0 +# - Apache Software License - Version 2.0 +# - Apache-2.0 +# - BSD +# - BSD 2-Clause License +# - BSD 3-Clause +# - BSD 3-clause +# - CDDL + GPLv2 with classpath exception +# - CDDL 1.1 +# - CDDL+GPL License +# - CDDL/GPLv2+CE +# - COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 +# - EDL 1.0 +# - Eclipse Distribution License - v 1.0 +# - Eclipse Public License - Version 1.0 +# - Eclipse Public License - v 1.0 +# - Eclipse Public License 1.0 +# - GNU Lesser General Public License +# - GNU Lesser General Public License (LGPL), Version 2.1 +# - GPL2 w/ CPE +# - LGPL 2.1 +# - MIT License +# - MPL 1.1 +# - New BSD License +# - New BSD license +# - Public Domain +# - The Apache License, Version 2.0 +# - The Apache Software License, Version 2.0 +# - The BSD 3-Clause License +# - The BSD License +# - The MIT License +# - The New BSD License +# - http://asm.ow2.org/license.html +# - http://www.apache.org/licenses/LICENSE-2.0.txt +# - the Apache License, ASL Version 2.0 +#------------------------------------------------------------------------------- +# Please fill the missing licenses for dependencies : +# +# +#Fri Jul 08 14:50:32 CST 2022 +io.netty--netty-tcnative-classes--2.0.46.Final= +javax.servlet.jsp--jsp-api--2.1= +javax.servlet--servlet-api--2.5= +oro--oro--2.0.8=
