Skip to content

Commit

Permalink
CAMEL-20719: Exclude Milvus bulk writer related dependencies (apache#…
Browse files Browse the repository at this point in the history
…13958)

* CAMEL-20719: Exclude Milvus bulk writer related dependencies

* camel-milvus: Tidy dependencies
  • Loading branch information
jamesnetherton authored Apr 26, 2024
1 parent 815acf2 commit b90d09b
Showing 1 changed file with 31 additions and 23 deletions.
54 changes: 31 additions & 23 deletions components/camel-milvus/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,38 @@
<dependency>
<groupId>io.milvus</groupId>
<artifactId>milvus-sdk-java</artifactId>
<version>${milvus-client-version}</version>
<version>${milvus-client-version}</version>
<exclusions>
<!-- These exclusions relate to unsupported bulk writer features -->
<exclusion>
<groupId>com.amazonaws</groupId>
<artifactId>*</artifactId>
</exclusion>
<exclusion>
<groupId>com.azure</groupId>
<artifactId>*</artifactId>
</exclusion>
<exclusion>
<groupId>com.konghq</groupId>
<artifactId>unirest-java</artifactId>
</exclusion>
<exclusion>
<groupId>io.minio</groupId>
<artifactId>*</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.hadoop</groupId>
<artifactId>*</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.parquet</groupId>
<artifactId>parquet-avro</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.parquet</groupId>
<artifactId>parquet-hadoop</artifactId>
</exclusion>

<exclusion>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
Expand All @@ -76,22 +106,6 @@
</dependency>

<!-- test dependencies -->
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-direct</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-mock</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-jackson</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-test-junit5</artifactId>
Expand All @@ -103,12 +117,6 @@
<scope>test</scope>
</dependency>

<dependency>
<groupId>io.rest-assured</groupId>
<artifactId>rest-assured</artifactId>
<version>${rest-assured-version}</version>
</dependency>

<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
Expand Down

0 comments on commit b90d09b

Please sign in to comment.