Skip to content

Commit

Permalink
Removing presto-ui dependency from presto-jdbc
Browse files Browse the repository at this point in the history
presto-ui dependency from presto-jdbc getting pulled in multiple packages and causing duplicate resource errors.
With this change we avoid presto-ui resources getting pulled into presto-jdbc. And that helps avoid it getting pulled
into other packages which are dependent on presto-main and presto-jdbc combined.
  • Loading branch information
swapsmagic committed Jun 6, 2024
1 parent 1280be0 commit d19a962
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions presto-jdbc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,12 @@
<groupId>com.facebook.presto</groupId>
<artifactId>presto-main</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>com.facebook.presto</groupId>
<artifactId>presto-ui</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down

0 comments on commit d19a962

Please sign in to comment.