Skip to content

Commit

Permalink
fix vertx dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
blevine committed Nov 2, 2024
1 parent 84bdfab commit bdc0e9a
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 2 deletions.
3 changes: 2 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ services:
keycloak:
container_name: keycloak-graphql
image: quay.io/keycloak/keycloak:26.0.1
command: start-dev
command: "start-dev --verbose"
environment:
DEBUG: 'true'
DEBUG_PORT: '*:8787'
Expand All @@ -12,6 +12,7 @@ services:
KEYCLOAK_ADMIN_PASSWORD: admin
ports:
- '8080:8080'
- '8081:8081'
- '8787:8787'
volumes:
- ./kc_data:/opt/keycloak/data
Expand Down
14 changes: 14 additions & 0 deletions graphql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,20 @@
<version>1.0-SNAPSHOT</version>

<dependencies>
<!-- Vert.X -->
<!-- TODO: TEMP client dependency!! -->
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-web-client</artifactId>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-rx-java3</artifactId>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-web-graphql</artifactId>
</dependency>
<!--SPQR-->
<dependency>
<groupId>io.leangen.graphql</groupId>
Expand Down
25 changes: 24 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,30 @@
<maven-surefire.version>3.2.5</maven-surefire.version>
<version.shrinkwrap.resolvers>3.3.1</version.shrinkwrap.resolvers>
<json-simple.version>1.1.1</json-simple.version>
<!-- <commons.text.version>1.12.0</commons.text.version>-->
<vertx.version>4.5.10</vertx.version>

</properties>

<dependencyManagement>
<dependencies>
<!-- Vert.X -->
<!-- TODO: TEMP client dependency!! -->
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-web-client</artifactId>
<version>${vertx.version}</version>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-rx-java3</artifactId>
<version>4.1.8</version>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-web-graphql</artifactId>
<version>${vertx.version}</version>
</dependency>

<!--SPQR-->
<dependency>
<groupId>io.leangen.graphql</groupId>
Expand Down Expand Up @@ -182,6 +201,10 @@
<exclude>org.checkerframework*</exclude>
<exclude>junit*</exclude>
<exclude>org.hamcrest*</exclude>
<exclude>io.vertx:vertx-core</exclude>
<exclude>io.vertx:vertx-codegen</exclude>
<exclude>io.vertx:vertx-web</exclude>
<exclude>io.vertx:vertx-web-client</exclude>
</excludes>
</artifactSet>
<filters>
Expand Down

0 comments on commit bdc0e9a

Please sign in to comment.