|
39 | 39 |
|
40 | 40 | <properties>
|
41 | 41 | <!-- Target WildFly version, and other parts needed for the Galleon maven plugin -->
|
42 |
| - <version.org.wildfly>27.0.1.Final</version.org.wildfly> |
| 42 | + <version.org.wildfly>28.0.0.Final</version.org.wildfly> |
43 | 43 | <version.org.wildfly.core>20.0.1.Final</version.org.wildfly.core>
|
44 | 44 | <version.org.wildfly.common>1.6.0.Final</version.org.wildfly.common>
|
45 | 45 | <version.org.jboss.galleon>5.1.0.Final</version.org.jboss.galleon>
|
|
49 | 49 |
|
50 | 50 | <!-- Libraries provided by this feature pack. These variables directly affect what will be in
|
51 | 51 | the built feature pack. -->
|
52 |
| - <version.io.smallrye.graphql>2.0.1</version.io.smallrye.graphql> |
| 52 | + <version.io.smallrye.graphql>2.1.3</version.io.smallrye.graphql> |
53 | 53 | <version.org.eclipse.microprofile.graphql>2.0</version.org.eclipse.microprofile.graphql>
|
54 |
| - <version.com.graphql-java>19.0</version.com.graphql-java> |
| 54 | + <version.com.graphql-java>20.1</version.com.graphql-java> |
55 | 55 | <version.com.graphql-java.dataloader>3.2.0</version.com.graphql-java.dataloader>
|
56 | 56 | <!-- WF contains vert.x, but we need to add the vertx-web-client artifact. This version should be the same
|
57 | 57 | as the vert.x version in WildFly -->
|
|
60 | 60 |
|
61 | 61 | <!-- Dependencies which are not included directly in the built feature pack but are dragged from WildFly,
|
62 | 62 | so they are here mostly just for compilation and testing purposes -->
|
63 |
| - <version.io.smallrye.reactive.mutiny>0.14.0</version.io.smallrye.reactive.mutiny> |
| 63 | + <version.io.smallrye.reactive.mutiny>2.1.0</version.io.smallrye.reactive.mutiny> |
64 | 64 | <version.io.smallrye.config>3.2.1</version.io.smallrye.config>
|
65 | 65 | <version.org.reactivestreams>1.0.4</version.org.reactivestreams>
|
66 | 66 | <version.elytron>2.1.0.Final</version.elytron>
|
67 | 67 | <version.resteasy.client>6.2.3.Final</version.resteasy.client>
|
68 |
| - <version.microprofile-metrics-api>4.0.1</version.microprofile-metrics-api> |
69 | 68 | <version.jakarta-validation>3.0.2</version.jakarta-validation>
|
70 | 69 | <version.jakarta-jaxrs>3.1.0</version.jakarta-jaxrs>
|
71 | 70 | <version.jakarta-cdi>4.0.0</version.jakarta-cdi>
|
|
74 | 73 | <version.shrinkwrap>2.2.4</version.shrinkwrap>
|
75 | 74 | <version.commons-logging>1.1.3</version.commons-logging>
|
76 | 75 | <version.tyrus>1.1</version.tyrus>
|
| 76 | + <version.junit>4.13.1</version.junit> |
| 77 | + <version.rest-assured>5.3.0</version.rest-assured> |
| 78 | + <version.arquillian-junit>1.7.0.Alpha12</version.arquillian-junit> |
77 | 79 |
|
78 | 80 | <!-- Plugin versions and their dependency versions -->
|
79 | 81 | <version.org.wildfly.checkstyle-config>1.0.8.Final</version.org.wildfly.checkstyle-config>
|
|
464 | 466 | </dependency>
|
465 | 467 |
|
466 | 468 | <!-- Stuff used for testing only -->
|
| 469 | + <dependency> |
| 470 | + <groupId>org.jboss.arquillian.junit</groupId> |
| 471 | + <artifactId>arquillian-junit-container</artifactId> |
| 472 | + <version>${version.arquillian-junit}</version> |
| 473 | + </dependency> |
467 | 474 | <dependency>
|
468 | 475 | <groupId>org.wildfly.security</groupId>
|
469 | 476 | <artifactId>wildfly-elytron</artifactId>
|
|
514 | 521 | <artifactId>tyrus-container-grizzly</artifactId>
|
515 | 522 | <version>${version.tyrus}</version>
|
516 | 523 | </dependency>
|
| 524 | + <dependency> |
| 525 | + <groupId>junit</groupId> |
| 526 | + <artifactId>junit</artifactId> |
| 527 | + <version>${version.junit}</version> |
| 528 | + </dependency> |
| 529 | + <dependency> |
| 530 | + <groupId>io.rest-assured</groupId> |
| 531 | + <artifactId>rest-assured</artifactId> |
| 532 | + <version>${version.rest-assured}</version> |
| 533 | + </dependency> |
517 | 534 | </dependencies>
|
518 | 535 | </dependencyManagement>
|
519 | 536 | <build>
|
|
0 commit comments