Skip to content

Commit 668cd68

Browse files
committed
fix build
1 parent e558112 commit 668cd68

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/compile-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
shell: bash
4949
run: |
5050
if [ "${{ matrix.java }}" -ge 17 ]; then
51-
mvn clean verify -P with-springboot -P with-all-connector -P with-examples -ntp
51+
mvn clean verify -P with-springboot -P with-all-connectors -P with-examples -ntp
5252
else
53-
mvn clean verify -P with-all-connector -P with-examples -ntp
53+
mvn clean verify -P with-all-connectors -P with-examples -ntp
5454
fi

iotdb-collector/collector-core/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,10 @@
125125
<groupId>com.google.guava</groupId>
126126
<artifactId>guava</artifactId>
127127
</dependency>
128+
<dependency>
129+
<groupId>org.apache.tsfile</groupId>
130+
<artifactId>common</artifactId>
131+
</dependency>
128132
<dependency>
129133
<groupId>com.google.code.findbugs</groupId>
130134
<artifactId>jsr305</artifactId>
@@ -181,6 +185,7 @@
181185
<usedDependency>org.eclipse.jetty:jetty-util</usedDependency>
182186
<usedDependency>org.glassfish.jersey.inject:jersey-hk2</usedDependency>
183187
<usedDependency>org.xerial:sqlite-jdbc</usedDependency>
188+
<usedDependency>org.apache.tsfile:common</usedDependency>
184189
</usedDependencies>
185190
</configuration>
186191
</plugin>

0 commit comments

Comments
 (0)