Skip to content

Commit 893e559

Browse files
authored
Merge pull request #185 from marekkopecky/mainBranchForHttpClient
Use main branch of HTTP client
2 parents 7434121 + bb33d6c commit 893e559

File tree

4 files changed

+17
-7
lines changed

4 files changed

+17
-7
lines changed

multinode/pom-wildfly-client/pom.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
<version.plugin.maven-checkstyle-plugin>3.6.0</version.plugin.maven-checkstyle-plugin>
3939
<version.plugin.surefire>3.0.0</version.plugin.surefire>
4040
<version.wf.core>26.0.1.Final</version.wf.core>
41+
<version.wf.launcher>1.0.2.Final</version.wf.launcher>
4142

4243

4344
<!-- Path to server zip archive, has to be specified at command line -->
@@ -503,6 +504,10 @@
503504
<groupId>org.wildfly.core</groupId>
504505
<artifactId>wildfly-launcher</artifactId>
505506
</exclusion>
507+
<exclusion>
508+
<groupId>org.wildfly.launcher</groupId>
509+
<artifactId>wildfly-launcher</artifactId>
510+
</exclusion>
506511
</exclusions>
507512
</dependency>
508513
<dependency>
@@ -512,9 +517,9 @@
512517
<scope>test</scope>
513518
</dependency>
514519
<dependency>
515-
<groupId>org.wildfly.core</groupId>
520+
<groupId>org.wildfly.launcher</groupId>
516521
<artifactId>wildfly-launcher</artifactId>
517-
<version>${version.wf.core}</version>
522+
<version>${version.wf.launcher}</version>
518523
<scope>test</scope>
519524
</dependency>
520525
<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: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@
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>
89+
<version.wf.launcher>1.0.2.Final</version.wf.launcher>
8990

9091
<!-- MULTINODE -->
9192
<version.creaper>2.0.3</version.creaper>
@@ -285,9 +286,9 @@
285286
<version>${version.arquillian-container}</version>
286287
</dependency>
287288
<dependency>
288-
<groupId>org.wildfly.core</groupId>
289+
<groupId>org.wildfly.launcher</groupId>
289290
<artifactId>wildfly-launcher</artifactId>
290-
<version>${version.wf.core}</version>
291+
<version>${version.wf.launcher}</version>
291292
</dependency>
292293
<dependency>
293294
<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)