gandiva-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.dremio.arrow.gandiva</groupId> <artifactId>gandiva-java</artifactId> <version>0.1-6f11d4ef79b38074151e3107d46477f45ed21d11</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- * Copyright (C) 2017-2018 Dremio Corporation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. --> <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"> <modelVersion>4.0.0</modelVersion> <groupId>com.dremio.arrow.gandiva</groupId> <artifactId>gandiva-java</artifactId> <version>0.1-6f11d4ef79b38074151e3107d46477f45ed21d11</version> <packaging>jar</packaging> <name>Gandiva Java POM</name> <description>Gandiva is an open source evaluation library for arbitrary expressions on arrow formatted data</description> <url>https://github.com/dremio/gandiva</url> <scm> <connection>scm:git:https://github.com/dremio/github.git</connection> <developerConnection>scm:git:https://github.com/dremio/github.git</developerConnection> <url>https://github.com/dremio/arrow</url> <tag>gandiva-0.1</tag> </scm> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <developers> <developer> <id>pravindra</id> <name>Ravindra Pindikura</name> <email>ravindra@dremio.com</email> <organization>Dremio</organization> <organizationUrl>http://www.dremio.com</organizationUrl> <roles> <role>architect</role> </roles> <timezone>Asia/Kolkata</timezone> </developer> <developer> <id>praveenbingo</id> <name>Praveen Kumar</name> <email>praveen@dremio.com</email> <organization>Dremio</organization> <organizationUrl>http://www.dremio.com</organizationUrl> <roles> <role>developer</role> </roles> <timezone>Asia/Kolkata</timezone> </developer> <developer> <id>vvelanki</id> <name>Vivekanand Vellanki</name> <email>vivek@dremio.com</email> <organization>Dremio</organization> <organizationUrl>http://www.dremio.com</organizationUrl> <roles> <role>developer</role> </roles> <timezone>Asia/Kolkata</timezone> </developer> </developers> <properties> <arrow.version>0.9.0</arrow.version> <protobuf.version>2.5.0</protobuf.version> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <dep.guava.version>18.0</dep.guava.version> <checkstyle.failOnViolation>true</checkstyle.failOnViolation> <gandiva.cpp.build.dir>../cpp/debug</gandiva.cpp.build.dir> </properties> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <dependencies> <dependency> <groupId>org.apache.arrow</groupId> <artifactId>arrow-format</artifactId> <version>${arrow.version}</version> </dependency> <dependency> <groupId>org.apache.arrow</groupId> <artifactId>arrow-memory</artifactId> <version>${arrow.version}</version> </dependency> <dependency> <groupId>org.apache.arrow</groupId> <artifactId>arrow-vector</artifactId> <version>${arrow.version}</version> </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> <version>${protobuf.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>23.0</version> </dependency> </dependencies> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <build> <resources> <resource> <directory>${gandiva.cpp.build.dir}/src/jni</directory> <includes> <include>**/libgandiva_jni.*</include> </includes> </resource> <resource> <directory>${gandiva.cpp.build.dir}/src/codegen</directory> <includes> <include>**/libgandiva_helpers.*</include> </includes> </resource> <resource> <directory>${gandiva.cpp.build.dir}</directory> <includes> <include>irhelpers.bc</include> </includes> </resource> </resources> <extensions> <extension> <groupId>kr.motd.maven</groupId> <artifactId>os-maven-plugin</artifactId> <version>1.5.0.Final</version> </extension> </extensions> <plugins> <plugin> <groupId>org.xolstice.maven.plugins</groupId> <artifactId>protobuf-maven-plugin</artifactId> <version>0.5.1</version> <configuration> <protocArtifact>com.google.protobuf:protoc:${protobuf.version}:exe:${os.detected.classifier} </protocArtifact> <protoSourceRoot>../proto</protoSourceRoot> </configuration> <executions> <execution> <goals> <goal>compile</goal> <goal>test-compile</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.17</version> <dependencies> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>6.19</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>${dep.guava.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <version>1.7.5</version> </dependency> </dependencies> <executions> <execution> <id>validate</id> <phase>validate</phase> <goals> <goal>check</goal> </goals> </execution> </executions> <configuration> <configLocation>dev/checkstyle/checkstyle.xml</configLocation> <headerLocation>dev/checkstyle/checkstyle.license</headerLocation> <suppressionsLocation>dev/checkstyle/suppressions.xml</suppressionsLocation> <encoding>UTF-8</encoding> <consoleOutput>true</consoleOutput> <failsOnError>${checkstyle.failOnViolation}</failsOnError> <failOnViolation>${checkstyle.failOnViolation}</failOnViolation> <violationSeverity>warning</violationSeverity> <format>xml</format> <format>html</format> <outputFile>${project.build.directory}/test/checkstyle-errors.xml</outputFile> <linkXRef>false</linkXRef> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <!-- manually release to central --> <autoReleaseAfterClose>false</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </project>