Skip to content

Commit

Permalink
POMs: exclusion of checker-qual for postgresql dep declared in main POM
Browse files Browse the repository at this point in the history
  • Loading branch information
virgo47 committed Jun 26, 2021
1 parent 4687aa0 commit 0876e65
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 38 deletions.
7 changes: 0 additions & 7 deletions gui/admin-gui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -227,13 +227,6 @@
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
<exclusions>
<!-- in favor of com.google.guava:guava -->
<exclusion>
<groupId>org.checkerframework</groupId>
<artifactId>checker-qual</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.mariadb.jdbc</groupId>
Expand Down
23 changes: 18 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1502,6 +1502,20 @@
<version>3.0.0</version>
<scope>runtime</scope>
</dependency>

<!-- Version from Spring Boot, but with checker-qual exclusion. -->
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>${postgresql.version}</version>
<exclusions>
<!-- in favor of com.google.guava:guava -->
<exclusion>
<groupId>org.checkerframework</groupId>
<artifactId>checker-qual</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</dependencyManagement>

Expand All @@ -1513,13 +1527,12 @@
<name>Evolveum Public Releases</name>
<url>https://nexus.evolveum.com/nexus/content/groups/public/</url>
</repository>
<!-- FIXME -->
<!-- FIXME -->
<repository>
<id>evolveum-snapshots</id>
<name>Evolveum Snapshots</name>
<url>https://nexus.evolveum.com/nexus/content/repositories/snapshots/</url>
</repository>
<!-- -->
<repository>
<id>spring-milestone</id>
<name>Spring Milestone Repository</name>
Expand All @@ -1539,9 +1552,9 @@
</repositories>
<pluginRepositories>
<pluginRepository>
<id>evolveum-nexus</id>
<name>Plugin Snapshots</name>
<url>https://nexus.evolveum.com/nexus/content/repositories/snapshots/</url>
<id>evolveum-nexus</id>
<name>Plugin Snapshots</name>
<url>https://nexus.evolveum.com/nexus/content/repositories/snapshots/</url>
</pluginRepository>
<pluginRepository>
<id>evolveum</id>
Expand Down
7 changes: 0 additions & 7 deletions repo/repo-sqale/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,6 @@
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<exclusions>
<!-- in favor of com.google.guava:guava -->
<exclusion>
<groupId>org.checkerframework</groupId>
<artifactId>checker-qual</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down
7 changes: 0 additions & 7 deletions repo/repo-sql-impl-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -119,13 +119,6 @@
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
<exclusions>
<!-- in favor of com.google.guava:guava -->
<exclusion>
<groupId>org.checkerframework</groupId>
<artifactId>checker-qual</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.mariadb.jdbc</groupId>
Expand Down
12 changes: 0 additions & 12 deletions repo/repo-sql-impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -141,18 +141,6 @@
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</dependency>
<!-- This is not used here directly, but dep plugin is complaining, argh... -->
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<exclusions>
<!-- in favor of com.google.guava:guava -->
<exclusion>
<groupId>org.checkerframework</groupId>
<artifactId>checker-qual</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>com.querydsl</groupId>
Expand Down

0 comments on commit 0876e65

Please sign in to comment.