Skip to content

Commit 4d22c4e

Browse files
committed
Use main branch of HTTP client
1 parent 9b19a18 commit 4d22c4e

File tree

4 files changed

+17
-9
lines changed

4 files changed

+17
-9
lines changed

multinode/pom-wildfly-client/pom.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -503,6 +503,10 @@
503503
<groupId>org.wildfly.core</groupId>
504504
<artifactId>wildfly-launcher</artifactId>
505505
</exclusion>
506+
<exclusion>
507+
<groupId>org.wildfly.launcher</groupId>
508+
<artifactId>wildfly-launcher</artifactId>
509+
</exclusion>
506510
</exclusions>
507511
</dependency>
508512
<dependency>
@@ -512,9 +516,9 @@
512516
<scope>test</scope>
513517
</dependency>
514518
<dependency>
515-
<groupId>org.wildfly.core</groupId>
519+
<groupId>org.wildfly.launcher</groupId>
516520
<artifactId>wildfly-launcher</artifactId>
517-
<version>${version.wf.core}</version>
521+
<version>1.0.2.Final</version>
518522
<scope>test</scope>
519523
</dependency>
520524
<dependency>

multinode/pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,10 @@
249249
<groupId>org.wildfly.core</groupId>
250250
<artifactId>wildfly-launcher</artifactId>
251251
</exclusion>
252+
<exclusion>
253+
<groupId>org.wildfly.launcher</groupId>
254+
<artifactId>wildfly-launcher</artifactId>
255+
</exclusion>
252256
</exclusions>
253257
</dependency>
254258
<dependency>
@@ -257,7 +261,7 @@
257261
<scope>test</scope>
258262
</dependency>
259263
<dependency>
260-
<groupId>org.wildfly.core</groupId>
264+
<groupId>org.wildfly.launcher</groupId>
261265
<artifactId>wildfly-launcher</artifactId>
262266
<scope>test</scope>
263267
</dependency>

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
and be sure that wf-core-launcher version works correctly with new arquillian-container -->
8686
<version.arquillian-container>5.1.0.Final</version.arquillian-container>
8787
<!-- the following version needs to be >= than version used in arquillian-container dependency -->
88-
<version.wf.core>25.0.2.Final</version.wf.core>
88+
<version.wf.core>28.0.1.Final</version.wf.core>
8989

9090
<!-- MULTINODE -->
9191
<version.creaper>2.0.3</version.creaper>
@@ -116,9 +116,9 @@
116116
</property>
117117
</activation>
118118
<modules>
119-
<module>basic</module>
119+
<!-- <module>basic</module>-->
120120
<module>multinode</module>
121-
<module>timers</module>
121+
<!-- <module>timers</module>-->
122122
</modules>
123123
</profile>
124124
<profile>
@@ -285,9 +285,9 @@
285285
<version>${version.arquillian-container}</version>
286286
</dependency>
287287
<dependency>
288-
<groupId>org.wildfly.core</groupId>
288+
<groupId>org.wildfly.launcher</groupId>
289289
<artifactId>wildfly-launcher</artifactId>
290-
<version>${version.wf.core}</version>
290+
<version>1.0.2.Final</version>
291291
</dependency>
292292
<dependency>
293293
<groupId>org.wildfly.extras.creaper</groupId>

snapshots/src/main/script/createSnapshots.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ setProjectVersion(TESTSUITE_VERSION, ejbClientDir)
4343
buildProject(ejbClientDir)
4444

4545
def httpClientDir = new File(TARGET_DIR, HTTP_CLIENT_NAME)
46-
cloneProject(HTTP_CLIENT_REPOSITORY_PROPERTY, HTTP_CLIENT_BRANCH_PROPERTY, HTTP_CLIENT_REPOSITORY, HTTP_CLIENT_NAME, "2.0")
46+
cloneProject(HTTP_CLIENT_REPOSITORY_PROPERTY, HTTP_CLIENT_BRANCH_PROPERTY, HTTP_CLIENT_REPOSITORY, HTTP_CLIENT_NAME)
4747
setProjectVersion(TESTSUITE_VERSION, httpClientDir)
4848
buildProject(httpClientDir)
4949

0 commit comments

Comments
 (0)