Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions multinode/pom-wildfly-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
<version.plugin.maven-checkstyle-plugin>3.6.0</version.plugin.maven-checkstyle-plugin>
<version.plugin.surefire>3.0.0</version.plugin.surefire>
<version.wf.core>26.0.1.Final</version.wf.core>
<version.wf.launcher>1.0.2.Final</version.wf.launcher>


<!-- Path to server zip archive, has to be specified at command line -->
Expand Down Expand Up @@ -503,6 +504,10 @@
<groupId>org.wildfly.core</groupId>
<artifactId>wildfly-launcher</artifactId>
</exclusion>
<exclusion>
<groupId>org.wildfly.launcher</groupId>
<artifactId>wildfly-launcher</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand All @@ -512,9 +517,9 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.wildfly.core</groupId>
<groupId>org.wildfly.launcher</groupId>
<artifactId>wildfly-launcher</artifactId>
<version>${version.wf.core}</version>
<version>${version.wf.launcher}</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
6 changes: 5 additions & 1 deletion multinode/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,10 @@
<groupId>org.wildfly.core</groupId>
<artifactId>wildfly-launcher</artifactId>
</exclusion>
<exclusion>
<groupId>org.wildfly.launcher</groupId>
<artifactId>wildfly-launcher</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
Expand All @@ -257,7 +261,7 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.wildfly.core</groupId>
<groupId>org.wildfly.launcher</groupId>
<artifactId>wildfly-launcher</artifactId>
<scope>test</scope>
</dependency>
Expand Down
7 changes: 4 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@
and be sure that wf-core-launcher version works correctly with new arquillian-container -->
<version.arquillian-container>5.1.0.Final</version.arquillian-container>
<!-- the following version needs to be >= than version used in arquillian-container dependency -->
<version.wf.core>25.0.2.Final</version.wf.core>
<version.wf.core>28.0.1.Final</version.wf.core>
<version.wf.launcher>1.0.2.Final</version.wf.launcher>

<!-- MULTINODE -->
<version.creaper>2.0.3</version.creaper>
Expand Down Expand Up @@ -285,9 +286,9 @@
<version>${version.arquillian-container}</version>
</dependency>
<dependency>
<groupId>org.wildfly.core</groupId>
<groupId>org.wildfly.launcher</groupId>
<artifactId>wildfly-launcher</artifactId>
<version>${version.wf.core}</version>
<version>${version.wf.launcher}</version>
</dependency>
<dependency>
<groupId>org.wildfly.extras.creaper</groupId>
Expand Down
2 changes: 1 addition & 1 deletion snapshots/src/main/script/createSnapshots.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ setProjectVersion(TESTSUITE_VERSION, ejbClientDir)
buildProject(ejbClientDir)

def httpClientDir = new File(TARGET_DIR, HTTP_CLIENT_NAME)
cloneProject(HTTP_CLIENT_REPOSITORY_PROPERTY, HTTP_CLIENT_BRANCH_PROPERTY, HTTP_CLIENT_REPOSITORY, HTTP_CLIENT_NAME, "2.0")
cloneProject(HTTP_CLIENT_REPOSITORY_PROPERTY, HTTP_CLIENT_BRANCH_PROPERTY, HTTP_CLIENT_REPOSITORY, HTTP_CLIENT_NAME)
setProjectVersion(TESTSUITE_VERSION, httpClientDir)
buildProject(httpClientDir)

Expand Down