vasilep opened a new issue, #7756:
URL: https://github.com/apache/iceberg/issues/7756

   ### Apache Iceberg version
   
   0.13.1
   
   ### Query engine
   
   Snowflake
   
   ### Please describe the bug 🐞
   
   Hello, Iceberg community.
   
   When we build our code which uses `org.apache.iceberg` library we need to 
add these exclusions to our pom.xml:
   ```
       <dependency>
         <groupId>org.apache.iceberg</groupId>
         <artifactId>iceberg-api</artifactId>
         <version>${iceberg.version}</version>
         <exclusions>
           <!-- TODO: file a ticket with iceberg to remove this -->
           <exclusion>
             <groupId>com.github.stephenc.findbugs</groupId>
             <artifactId>findbugs-annotations</artifactId>
           </exclusion>
         </exclusions>
       </dependency>
       <dependency>
         <groupId>org.apache.iceberg</groupId>
         <artifactId>iceberg-core</artifactId>
         <version>${iceberg.version}</version>
         <exclusions>
           <!-- TODO: file a ticket with iceberg to remove this -->
           <exclusion>
             <groupId>com.github.stephenc.findbugs</groupId>
             <artifactId>findbugs-annotations</artifactId>
           </exclusion>
         </exclusions>
       </dependency>
   ```
   
   Please fix that. One way is to scope the annotations so that they don't show 
up as a dependency in the `pom.xml` for `org.apache.iceberg:iceberg-{api|core}`.
   
   Thank you.
   --Vasile


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to