Skip to content

Commit

Permalink
Do not depend on Hibernate Reactive in the Gradle tests
Browse files Browse the repository at this point in the history
No need for that so let's rely on dependencies that are less sensitive.
  • Loading branch information
gsmet committed Feb 16, 2023
1 parent f0f2a36 commit e8113db
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions integration-tests/gradle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-hibernate-reactive-panache</artifactId>
<artifactId>quarkus-hibernate-search-orm-elasticsearch</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
Expand Down Expand Up @@ -218,7 +218,7 @@
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-hibernate-reactive-panache-deployment</artifactId>
<artifactId>quarkus-hibernate-search-orm-elasticsearch-deployment</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>test</scope>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies {
implementation 'io.quarkus:quarkus-core-deployment'
implementation("org.acme:simple-dependency:1.0-SNAPSHOT")

implementation("io.quarkus:quarkus-hibernate-reactive-panache-deployment")
implementation("io.quarkus:quarkus-hibernate-search-orm-elasticsearch-deployment")

implementation project(':ext-a:runtime')
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies {
api("org.acme:simple-dependency:1.0-SNAPSHOT") {
exclude module: "transitive-dependency"
}
api("io.quarkus:quarkus-hibernate-reactive-panache")
api("io.quarkus:quarkus-hibernate-search-orm-elasticsearch")
}

quarkusExtension {
Expand Down

0 comments on commit e8113db

Please sign in to comment.