Skip to content

Commit

Permalink
Enables integrations tests
Browse files Browse the repository at this point in the history
- Aligns module names
- Sets versions correctly in modules
- Fixes path for `WiremockDevResource.java`
  • Loading branch information
wjglerum committed Sep 12, 2023
1 parent 635588e commit 9b63f0d
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 17 deletions.
2 changes: 1 addition & 1 deletion deployment/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<version>0.0.3-SNAPSHOT</version>
</parent>
<artifactId>quarkus-wiremock-deployment</artifactId>
<name>Wiremock - Deployment</name>
<name>Quarkus Wiremock - Deployment</name>
<dependencies>
<dependency>
<groupId>io.quarkus</groupId>
Expand Down
6 changes: 3 additions & 3 deletions integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
<parent>
<groupId>io.quarkiverse.wiremock</groupId>
<artifactId>quarkus-wiremock-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.3-SNAPSHOT</version>
</parent>
<artifactId>quarkus-wiremock-integration-tests</artifactId>
<name>Wiremock - Integration Tests</name>
<name>Quarkus Wiremock - Integration Tests</name>
<properties>
<skipITs>true</skipITs>
</properties>
Expand Down Expand Up @@ -45,7 +45,7 @@
<dependency>
<groupId>io.quarkiverse.wiremock</groupId>
<artifactId>quarkus-wiremock-test</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
package io.quarkiverse.wiremock.it;

import javax.enterprise.context.ApplicationScoped;
import javax.inject.Inject;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.Context;
import javax.ws.rs.core.HttpHeaders;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.UriInfo;
import jakarta.enterprise.context.ApplicationScoped;
import jakarta.inject.Inject;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.core.Context;
import jakarta.ws.rs.core.HttpHeaders;
import jakarta.ws.rs.core.MediaType;
import jakarta.ws.rs.core.UriInfo;

import io.smallrye.mutiny.Uni;
import io.vertx.mutiny.core.Vertx;
Expand Down
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@
<artifactId>quarkus-wiremock-parent</artifactId>
<version>0.0.3-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Wiremock - Parent</name>
<name>Quarkus Wiremock - Parent</name>
<modules>
<module>deployment</module>
<module>runtime</module>
<module>docs</module>
<module>test</module>
<module>integration-tests</module>
</modules>
<scm>
<connection>scm:git:git@github.com:quarkiverse/quarkus-wiremock.git</connection>
Expand Down
2 changes: 1 addition & 1 deletion runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<version>0.0.3-SNAPSHOT</version>
</parent>
<artifactId>quarkus-wiremock</artifactId>
<name>Wiremock - Runtime</name>
<name>Quarkus Wiremock - Runtime</name>
<dependencies>
<dependency>
<groupId>io.quarkus</groupId>
Expand Down
4 changes: 2 additions & 2 deletions test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<version>0.0.3-SNAPSHOT</version>
</parent>
<artifactId>quarkus-wiremock-test</artifactId>
<name>Wiremock - Test</name>
<name>Quarkus Wiremock - Test</name>
<dependencies>
<dependency>
<groupId>io.quarkus</groupId>
Expand All @@ -25,7 +25,7 @@
<dependency>
<groupId>io.quarkiverse.wiremock</groupId>
<artifactId>quarkus-wiremock-deployment</artifactId>
<version>0.0.3-SNAPSHOT</version>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit 9b63f0d

Please sign in to comment.