Skip to content

Commit

Permalink
fix: adding minor supression
Browse files Browse the repository at this point in the history
  • Loading branch information
vibhatha committed Sep 9, 2024
1 parent d0f9f3e commit bf9564e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
9 changes: 9 additions & 0 deletions java/format/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,15 @@ under the License.
</java>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration combine.children="append">
<compilerArgs>
<arg>-Werror</arg>
</compilerArgs>
</configuration>
</plugin>
</plugins>
</build>
</project>
1 change: 1 addition & 0 deletions java/format/src/main/java/module-info.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
* limitations under the License.
*/

@SuppressWarnings({ "requires-automatic", "requires-transitive-automatic" })
module org.apache.arrow.format {
exports org.apache.arrow.flatbuf;
requires transitive flatbuffers.java;
Expand Down

0 comments on commit bf9564e

Please sign in to comment.