同步操作将从 Apache/IoTDB 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<?xml version="1.0" encoding="UTF-8"?><!--Licensed to the Apache Software Foundation (ASF) under oneor more contributor license agreements. See the NOTICE filedistributed with this work for additional informationregarding copyright ownership. The ASF licenses this fileto you under the Apache License, Version 2.0 (the"License"); you may not use this file except in compliancewith the License. You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0Unless 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 ANYKIND, either express or implied. See the License for thespecific language governing permissions and limitationsunder the License.--><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><parent><artifactId>iotdb-parent</artifactId><groupId>org.apache.iotdb</groupId><version>1.0.1-SNAPSHOT</version><relativePath>../pom.xml</relativePath></parent><artifactId>client-cpp</artifactId><name>Client for cpp</name><description>C++ client</description><packaging>pom</packaging><properties><boost.version>1.72.0</boost.version><boost.version.underline-short>1_72</boost.version.underline-short><boost.version.underline>${boost.version.underline-short}_0</boost.version.underline><cmake-version>3.17.3</cmake-version><!-- Default value of cmake root --><cmake.root.dir>${project.build.directory}/dependency/cmake/</cmake.root.dir><cmake.build.type>Release</cmake.build.type><catch2.url>https://github.com/catchorg/Catch2/releases/download/v2.13.7/catch.hpp</catch2.url></properties><modules><module>../example/client-cpp-example</module></modules><dependencies><dependency><groupId>org.apache.iotdb</groupId><artifactId>client-cpp-tools-thrift</artifactId><version>${project.version}</version></dependency><dependency><groupId>org.apache.iotdb</groupId><artifactId>iotdb-thrift-commons</artifactId><version>${project.version}</version></dependency></dependencies><profiles><profile><id>os-unix</id><activation><os><family>unix</family></os></activation><properties><os.suffix>linux</os.suffix><!-- use Makefile as default cmake generator, users may specify other generators --><cmake.generator>Unix Makefiles</cmake.generator><cmake.root.dir>${project.parent.basedir}/compile-tools/thrift/target/cmake-${cmake-version}-Linux-x86_64/</cmake.root.dir><thrift.exec.absolute.path>${project.parent.basedir}/compile-tools/thrift/target/build/compiler/cpp/bin/thrift</thrift.exec.absolute.path><iotdb.start.script>start-standalone.sh</iotdb.start.script><iotdb.stop.script>stop-standalone.sh</iotdb.stop.script></properties></profile><!-- <profile>--><!-- <id>os-unix-arm</id>--><!-- <activation>--><!-- <os>--><!-- <family>unix</family>--><!-- <arch>aarch64</arch>--><!-- </os>--><!-- </activation>--><!-- <properties>--><!-- <os.suffix>linux</os.suffix>--><!-- <os.classifier>linux-arm_32</os.classifier>--><!-- <!– use Makefile as default cmake generator, users may specify other generators –>--><!-- <cmake.generator>Unix Makefiles</cmake.generator>--><!-- <cmake.root.dir>${project.parent.basedir}/compile-tools/thrift/target/cmake-3.21.2-linux-aarch64/</cmake.root.dir>--><!-- <thrift.exec.absolute.path>${project.parent.basedir}/compile-tools/thrift/target/build/compiler/cpp/bin/thrift</thrift.exec.absolute.path>--><!-- <iotdb.start.script>start-standalone.sh</iotdb.start.script>--><!-- <iotdb.stop.script>stop-standalone.sh</iotdb.stop.script>--><!-- </properties>--><!-- </profile>--><profile><id>os-mac</id><activation><os><family>mac</family></os></activation><properties><os.suffix>mac</os.suffix><!-- use Makefile as default cmake generator, users may specify other generators --><cmake.generator>Unix Makefiles</cmake.generator><cmake.root.dir>${project.parent.basedir}/compile-tools/thrift/target/cmake-${cmake-version}-Darwin-x86_64/CMake.app/Contents</cmake.root.dir><thrift.exec.absolute.path>${project.parent.basedir}/compile-tools/thrift/target/build/compiler/cpp/bin/thrift</thrift.exec.absolute.path><iotdb.start.script>start-standalone.sh</iotdb.start.script><iotdb.stop.script>stop-standalone.sh</iotdb.stop.script></properties></profile><profile><id>os-windows</id><activation><os><family>windows</family></os></activation><properties><os.suffix>win</os.suffix><!-- use MSVC 2019 as default cmake generator, users may specify other generators --><cmake.generator>Visual Studio 16 2019</cmake.generator><cmake.root.dir>${project.parent.basedir}/compile-tools/thrift/target/cmake-${cmake-version}-win64-x64/</cmake.root.dir><thrift.exec.absolute.path>${project.parent.basedir}/compile-tools/thrift/target/build/compiler/cpp/bin/${cmake.build.type}/thrift.exe</thrift.exec.absolute.path><iotdb.start.script>start-standalone.bat</iotdb.start.script><iotdb.stop.script>stop-standalone.bat</iotdb.stop.script><boost.include.dir/><boost.library.dir/></properties></profile><profile><id>compile-cpp</id><build><plugins><!-- Build and do session integration test --><plugin><artifactId>maven-resources-plugin</artifactId><version>2.6</version><executions><execution><id>copy-test-resources</id><phase>validate</phase><goals><goal>copy-resources</goal></goals><configuration><outputDirectory>${project.build.directory}/build/test</outputDirectory><resources><resource><directory>${project.basedir}/src/test</directory><filtering>true</filtering></resource></resources></configuration></execution></executions></plugin><plugin><groupId>com.coderplus.maven.plugins</groupId><artifactId>copy-rename-maven-plugin</artifactId><version>1.0.1</version><executions><execution><id>copy-thrift-source</id><goals><goal>copy</goal></goals><configuration><fileSets><fileSet><sourceFile>../thrift/src/main/thrift/client.thrift</sourceFile><destinationFile>${project.build.directory}/thrift/client.thrift</destinationFile></fileSet><fileSet><sourceFile>../thrift-commons/src/main/thrift/common.thrift</sourceFile><destinationFile>${project.build.directory}/thrift/common.thrift</destinationFile></fileSet></fileSets></configuration></execution><execution><!-- Copy source file and CmakeLists.txt into target directory --><id>copy-cmakelist-file</id><phase>compile</phase><goals><goal>copy</goal></goals><configuration><fileSets><fileSet><sourceFile>${project.basedir}/src/main/CMakeLists.txt</sourceFile><destinationFile>${project.build.directory}/build/main/CMakeLists.txt</destinationFile></fileSet><fileSet><sourceFile>${project.basedir}/src/main/Session.h</sourceFile><destinationFile>${project.build.directory}/build/main/generated-sources-cpp/Session.h</destinationFile></fileSet><fileSet><sourceFile>${project.basedir}/src/main/Session.cpp</sourceFile><destinationFile>${project.build.directory}/build/main/generated-sources-cpp/Session.cpp</destinationFile></fileSet></fileSets></configuration></execution></executions></plugin><plugin><groupId>org.apache.thrift.tools</groupId><artifactId>maven-thrift-plugin</artifactId><version>0.1.11</version><executions><execution><id>generate-thrift-sources-cpp</id><!-- Move from generate-sources to generate-resources to avoid double executions --><phase>generate-resources</phase><goals><goal>compile</goal></goals><configuration><generator>cpp:no_skeleton</generator><thriftExecutable>${thrift.exec.absolute.path}</thriftExecutable><thriftSourceRoot>${project.build.directory}/thrift</thriftSourceRoot><outputDirectory>${project.build.directory}/build/main/generated-sources-cpp</outputDirectory></configuration></execution></executions></plugin><plugin><groupId>com.googlecode.cmake-maven-project</groupId><artifactId>cmake-maven-plugin</artifactId><version>3.7.2-b1</version><executions><!-- Uses a CMake generator to generate the build using the build tool of choice --><execution><id>cmake-generate</id><phase>compile</phase><goals><goal>generate</goal></goals><configuration><classifier>${os.classifier}</classifier><!--We need to use a newer version of cmake, so disable downloading. If we do notset this to false, a cmake of version 3.7.2 will be downloaded.--><downloadBinaries>false</downloadBinaries><sourcePath>${project.build.directory}/build/main</sourcePath><!--Path to where the build configuration is generated(This directory is then used in the compile step to actually perform the build)--><targetPath>${project.build.directory}/build/main</targetPath><generator>${cmake.generator}</generator><options><option>-DBOOST_INCLUDEDIR=${boost.include.dir}</option><option>-DBOOST_LIBRARYDIR=${boost.library.dir}</option></options></configuration></execution><!-- Actually executes the build --><execution><id>cmake-compile</id><phase>compile</phase><goals><goal>compile</goal></goals><configuration><classifier>${os.classifier}</classifier><config>${cmake.build.type}</config><!--We need to use a newer version of cmake, so disable downloadingand tell the plugin where to find that version.--><downloadBinaries>false</downloadBinaries><!-- The directory where the "generate" step generated the build configuration --><projectDirectory>${project.build.directory}/build/main</projectDirectory></configuration></execution></executions></plugin><!--Package all C++ header files and client library--><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-assembly-plugin</artifactId><executions><execution><id>package-client-cpp</id><phase>package</phase><goals><goal>single</goal></goals><configuration><finalName>${project.artifactId}-${project.version}</finalName><descriptors><descriptor>src/assembly/client-cpp.xml</descriptor></descriptors></configuration></execution></executions></plugin><plugin><groupId>com.googlecode.maven-download-plugin</groupId><artifactId>download-maven-plugin</artifactId><version>1.6.7</version><executions><!-- Download the Catch2 header file. --><execution><id>get-catch2</id><phase>generate-resources</phase><goals><goal>wget</goal></goals><configuration><url>${catch2.url}</url><unpack>false</unpack><outputDirectory>${project.build.directory}/build/test/catch2</outputDirectory></configuration></execution></executions></plugin></plugins></build></profile><profile><id>cppTest</id><build><plugins><plugin><groupId>com.googlecode.cmake-maven-project</groupId><artifactId>cmake-maven-plugin</artifactId><version>3.7.2-b1</version><executions><!-- Generate Cmake build directory to compile testing program --><execution><id>cmake-generate-test</id><phase>test-compile</phase><goals><goal>generate</goal></goals><configuration><classifier>${os.classifier}</classifier><downloadBinaries>false</downloadBinaries><sourcePath>${project.build.directory}/build/test</sourcePath><targetPath>${project.build.directory}/build/test</targetPath><generator>${cmake.generator}</generator><options><option>-DBOOST_INCLUDEDIR=${boost.include.dir}</option><option>-DBOOST_LIBRARYDIR=${boost.library.dir}</option></options></configuration></execution><!-- Actually executes the testing compilation --><execution><id>cmake-compile-test</id><phase>test-compile</phase><goals><goal>compile</goal></goals><configuration><classifier>${os.classifier}</classifier><config>${cmake.build.type}</config><downloadBinaries>false</downloadBinaries><projectDirectory>${project.build.directory}/build/test</projectDirectory></configuration></execution><!-- Run the integration test cases --><execution><id>cmake-run-test</id><phase>integration-test</phase><goals><goal>test</goal></goals><configuration><buildDirectory>${project.build.directory}/build/test</buildDirectory><downloadBinaries>false</downloadBinaries></configuration></execution></executions></plugin><plugin><groupId>com.bazaarvoice.maven.plugins</groupId><artifactId>process-exec-maven-plugin</artifactId><version>0.9</version><executions><!-- Start a local IoTDB server to run integration test cases --><execution><id>iotdb-process</id><phase>pre-integration-test</phase><goals><goal>start</goal></goals><configuration><name>iotdb-server</name><waitForInterrupt>false</waitForInterrupt><!-- Maximum time in seconds to wait after launching IoTDB --><waitAfterLaunch>15</waitAfterLaunch><!-- Redirect IoTDB server log to /dev/null --><processLogFile>${project.build.directory}/build/test/test.log</processLogFile><arguments><argument>${project.basedir}/../distribution/target/apache-iotdb-${project.version}-all-bin/apache-iotdb-${project.version}-all-bin/sbin/${iotdb.start.script}</argument></arguments></configuration></execution><!-- Stop the IoTDB server when integration test finishes --><execution><id>stop-iotdb</id><phase>post-integration-test</phase><goals><goal>stop-all</goal></goals><configuration><name>iotdb-server</name><waitForInterrupt>false</waitForInterrupt><!-- Maximum time in seconds to wait after launching IoTDB --><waitAfterLaunch>5</waitAfterLaunch><!-- Redirect IoTDB server log to /dev/null --><processLogFile>${project.build.directory}/build/test/test1.log</processLogFile><arguments><argument>${project.basedir}/../distribution/target/apache-iotdb-${project.version}-all-bin/apache-iotdb-${project.version}-all-bin/sbin/${iotdb.stop.script}</argument></arguments></configuration></execution></executions></plugin></plugins></build></profile></profiles></project>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。