mirror of https://github.com/apache/nifi.git
NIFI-11635 Upgraded IoTDB from 1.0.1 to 1.1.1
- Excluded transitive test dependencies to avoid SNAPSHOT versions Signed-off-by: Pierre Villard <pierre.villard.fr@gmail.com> This closes #7382.
This commit is contained in:
parent
760949922c
commit
4638d2e251
|
@ -82,6 +82,11 @@
|
|||
<groupId>ch.qos.logback</groupId>
|
||||
<artifactId>logback-classic</artifactId>
|
||||
</exclusion>
|
||||
<!-- Exclude IoTDB Consensus to avoid SNAPSHOT versions of Apache Ratis -->
|
||||
<exclusion>
|
||||
<groupId>org.apache.iotdb</groupId>
|
||||
<artifactId>iotdb-consensus</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
@ -95,6 +100,11 @@
|
|||
<groupId>ch.qos.logback</groupId>
|
||||
<artifactId>logback-classic</artifactId>
|
||||
</exclusion>
|
||||
<!-- Exclude IoTDB Consensus to avoid SNAPSHOT versions of Apache Ratis -->
|
||||
<exclusion>
|
||||
<groupId>org.apache.iotdb</groupId>
|
||||
<artifactId>iotdb-consensus</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
<dependency>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*/
|
||||
package org.apache.nifi.processors;
|
||||
|
||||
import org.apache.iotdb.session.SessionDataSet;
|
||||
import org.apache.iotdb.isession.SessionDataSet;
|
||||
import org.apache.iotdb.tsfile.file.metadata.enums.TSDataType;
|
||||
import org.apache.iotdb.tsfile.read.common.Field;
|
||||
import org.apache.iotdb.tsfile.read.common.RowRecord;
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
</modules>
|
||||
|
||||
<properties>
|
||||
<iotdb.sdk.version>1.0.1</iotdb.sdk.version>
|
||||
<iotdb.sdk.version>1.1.1</iotdb.sdk.version>
|
||||
</properties>
|
||||
|
||||
<dependencyManagement>
|
||||
|
|
Loading…
Reference in New Issue