Skip to content

Commit

Permalink
fix: add temporary dependency to the client (#181)
Browse files Browse the repository at this point in the history
* fix: add temporary dependency to the client

* fix: remove quarkus from dependencies to test end to end compatibility
  • Loading branch information
wtrocki authored Feb 7, 2022
1 parent 1c9a547 commit e03450f
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 7 deletions.
7 changes: 7 additions & 0 deletions packages/connector-management-sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,13 @@
<version>${javax-annotation-version}</version>
<scope>provided</scope>
</dependency>
<!-- Temporary change until bug with generator is resolved -->
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
<version>2.1.1</version>
</dependency>

<!-- test dependencies -->
<dependency>
<groupId>junit</groupId>
Expand Down
6 changes: 6 additions & 0 deletions packages/kafka-instance-sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,12 @@
<version>${javax-annotation-version}</version>
<scope>provided</scope>
</dependency>
<!-- Temporary change until bug with generator is resolved -->
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
<version>2.1.1</version>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>junit</groupId>
Expand Down
6 changes: 6 additions & 0 deletions packages/kafka-management-sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,12 @@
<version>${javax-annotation-version}</version>
<scope>provided</scope>
</dependency>
<!-- Temporary change until bug with generator is resolved -->
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
<version>2.1.1</version>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>junit</groupId>
Expand Down
6 changes: 6 additions & 0 deletions packages/registry-management-sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,12 @@
<version>${javax-annotation-version}</version>
<scope>provided</scope>
</dependency>
<!-- Temporary change until bug with generator is resolved -->
<dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>javax.ws.rs-api</artifactId>
<version>2.1.1</version>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>junit</groupId>
Expand Down
7 changes: 0 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,6 @@

<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-bom</artifactId>
<version>${quarkus.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<distributionManagement>
Expand Down

0 comments on commit e03450f

Please sign in to comment.