]> git.proxmox.com Git - ceph.git/blob - ceph/src/arrow/java/format/pom.xml
import quincy 17.2.0
[ceph.git] / ceph / src / arrow / java / format / pom.xml
1 <?xml version="1.0"?>
2 <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor
3 license agreements. See the NOTICE file distributed with this work for additional
4 information regarding copyright ownership. The ASF licenses this file to
5 You under the Apache License, Version 2.0 (the "License"); you may not use
6 this file except in compliance with the License. You may obtain a copy of
7 the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
8 by applicable law or agreed to in writing, software distributed under the
9 License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
10 OF ANY KIND, either express or implied. See the License for the specific
11 language governing permissions and limitations under the License. -->
12 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13 <modelVersion>4.0.0</modelVersion>
14
15 <parent>
16 <artifactId>arrow-java-root</artifactId>
17 <groupId>org.apache.arrow</groupId>
18 <version>6.0.1</version>
19 </parent>
20
21 <artifactId>arrow-format</artifactId>
22 <packaging>jar</packaging>
23 <name>Arrow Format</name>
24 <description>Generated Java files from the IPC Flatbuffer definitions.</description>
25
26 <dependencies>
27 <dependency>
28 <groupId>com.google.flatbuffers</groupId>
29 <artifactId>flatbuffers-java</artifactId>
30 </dependency>
31 </dependencies>
32
33 <build>
34
35 <plugins>
36 <plugin> <!-- no checkstyle on the generated code -->
37 <groupId>org.apache.maven.plugins</groupId>
38 <artifactId>maven-checkstyle-plugin</artifactId>
39 <configuration>
40 <skip>true</skip>
41 </configuration>
42 </plugin>
43 </plugins>
44
45 </build>
46 </project>