Skip to content

Commit

Permalink
deps: bump Quarkus to 3.2.0.Final
Browse files Browse the repository at this point in the history
Also bumps Vert.x since Quarkus transitively depends on it
  • Loading branch information
manusa committed Jul 13, 2023
1 parent 71bd9f3 commit 6f004ef
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 11 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,18 @@ e.g. Spring Boot tests when running in an Open Shift cluster `mvn verify -POpenS
command prior to anything else so that all `target` directories get deleted,
else other profiles will get triggered.

### Running a specific test

In addition to selecting a test group, you can run a specific test, or a set of tests, by providing
the `it.test` [Maven Failsafe Plugin](https://maven.apache.org/surefire/maven-failsafe-plugin/examples/single-test.html)
configuration property.

For example, to run just the Vert.x tests you can run:

```shell
mvn verify -PKubernetes,other -Dit.test="*Vertx*"
```

## Gradle

The Gradle tests run using the local Gradle installation. This approach was selected due to issues when running the
Expand Down
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
<apache.maven.maven-invoker.version>3.2.0</apache.maven.maven-invoker.version>
<apache.commons-codec.version>1.15</apache.commons-codec.version>
<camel.version>2.25.4</camel.version>
<com.fasterxml.jackson.core.version>2.14.0</com.fasterxml.jackson.core.version>
<com.fasterxml.jackson.dataformat.yaml.version>2.13.2</com.fasterxml.jackson.dataformat.yaml.version>
<com.fasterxml.jackson.core.version>2.15.2</com.fasterxml.jackson.core.version>
<com.fasterxml.jackson.dataformat.yaml.version>2.15.2</com.fasterxml.jackson.dataformat.yaml.version>
<fabric8.kubernetes-client.version>6.7.2</fabric8.kubernetes-client.version>
<gradle.version>6.1.1</gradle.version>
<hamcrest.version>2.0.0.0</hamcrest.version>
Expand All @@ -46,11 +46,11 @@
<license-maven-plugin.version>4.2</license-maven-plugin.version>
<openliberty.version>22.0.0.11</openliberty.version>
<openliberty.plugin.version>3.0.1</openliberty.plugin.version>
<quarkus.version>2.14.1.Final</quarkus.version>
<quarkus.version>3.2.0.Final</quarkus.version>
<slf4j.version>2.0.3</slf4j.version>
<spring-boot.version>2.7.5</spring-boot.version>
<thorntail.version>2.7.0.Final</thorntail.version>
<vertx.version>4.3.4</vertx.version>
<vertx.version>4.4.4</vertx.version>
<vertx.plugin.version>1.0.28</vertx.plugin.version>
<wildfly.jar.plugin.version>2.0.1.Final</wildfly.jar.plugin.version>
<version.org.jboss.spec.javax.ws.jboss-jaxrs-api_2.1_spec>2.0.2.Final</version.org.jboss.spec.javax.ws.jboss-jaxrs-api_2.1_spec>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
*/
package org.eclipse.jkube.integrationtests.quarkus.rest;

import javax.inject.Inject;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import jakarta.inject.Inject;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.core.MediaType;
import jakarta.ws.rs.core.Response;

@Path("/")
public class CoolApplicationResource {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*/
package org.eclipse.jkube.integrationtests.quarkus.rest;

import javax.inject.Singleton;
import jakarta.inject.Singleton;

@Singleton
public class CoolApplicationService {
Expand Down

0 comments on commit 6f004ef

Please sign in to comment.