Skip to content

Commit

Permalink
Removing quarkus dependency from common addon (apache#3595)
Browse files Browse the repository at this point in the history
Quarkus dependencies should not be in common addons
  • Loading branch information
fjtirado authored and rgdoliveira committed Aug 6, 2024
1 parent c80081d commit f6da27a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 2 additions & 3 deletions addons/common/persistence/jdbc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,8 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-jdbc-postgresql</artifactId>
<version>${version.io.quarkus}</version>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
6 changes: 5 additions & 1 deletion kogito-build/kogito-dependencies-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,11 @@
<artifactId>jackson-jq</artifactId>
<version>${version.net.thisptr.jackson-jq}</version>
</dependency>

<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>${version.org.postgresql}</version>
</dependency>
<dependency>
<groupId>io.smallrye</groupId>
<artifactId>smallrye-open-api-core</artifactId>
Expand Down

0 comments on commit f6da27a

Please sign in to comment.