You can download drill-common-1.9.0.jar in this page.
Apache License
drill-common-1.9.0.jar file has the following types.
META-INF/DEPENDENCIES META-INF/INDEX.LIST META-INF/LICENSE META-INF/MANIFEST.MF META-INF/NOTICE META-INF/drill-module-scan/registry.json META-INF/maven/org.apache.drill/drill-common/pom.properties META-INF/maven/org.apache.drill/drill-common/pom.xml drill-default.conf drill-module.conf git.properties javac.sh org.apache.drill.common.AutoCloseablePointer.class org.apache.drill.common.AutoCloseables.class org.apache.drill.common.CatastrophicFailure.class org.apache.drill.common.DeferredException.class org.apache.drill.common.DrillAutoCloseables.class org.apache.drill.common.EventProcessor.class org.apache.drill.common.HistoricalLog.class org.apache.drill.common.SelfCleaningRunnable.class org.apache.drill.common.StackTrace.class org.apache.drill.common.collections.ImmutableEntry.class org.apache.drill.common.collections.MapWithOrdinal.class org.apache.drill.common.concurrent.AutoCloseableLock.class org.apache.drill.common.concurrent.ExtendedLatch.class org.apache.drill.common.config.CommonConstants.class org.apache.drill.common.config.ConfigProvider.class org.apache.drill.common.config.DrillConfig.class org.apache.drill.common.config.NestedConfig.class org.apache.drill.common.exceptions.DrillConfigurationException.class org.apache.drill.common.exceptions.DrillError.class org.apache.drill.common.exceptions.DrillException.class org.apache.drill.common.exceptions.DrillIOException.class org.apache.drill.common.exceptions.DrillRuntimeException.class org.apache.drill.common.exceptions.ErrorHelper.class org.apache.drill.common.exceptions.UserException.class org.apache.drill.common.exceptions.UserExceptionContext.class org.apache.drill.common.exceptions.UserRemoteException.class org.apache.drill.common.map.CaseInsensitiveMap.class org.apache.drill.common.scanner.BuildTimeScan.class org.apache.drill.common.scanner.ClassPathScanner.class org.apache.drill.common.scanner.RunTimeScan.class org.apache.drill.common.scanner.persistence.AnnotatedClassDescriptor.class org.apache.drill.common.scanner.persistence.AnnotationDescriptor.class org.apache.drill.common.scanner.persistence.AttributeDescriptor.class org.apache.drill.common.scanner.persistence.ChildClassDescriptor.class org.apache.drill.common.scanner.persistence.FieldDescriptor.class org.apache.drill.common.scanner.persistence.ParentClassDescriptor.class org.apache.drill.common.scanner.persistence.ScanResult.class org.apache.drill.common.scanner.persistence.TypeDescriptor.class org.apache.drill.common.types.Types.class org.apache.drill.common.util.ConstructorChecker.class org.apache.drill.common.util.CoreDecimalUtility.class org.apache.drill.common.util.DataInputInputStream.class org.apache.drill.common.util.DataOutputOutputStream.class org.apache.drill.common.util.DecimalScalePrecisionAddFunction.class org.apache.drill.common.util.DecimalScalePrecisionDivideFunction.class org.apache.drill.common.util.DecimalScalePrecisionModFunction.class org.apache.drill.common.util.DecimalScalePrecisionMulFunction.class org.apache.drill.common.util.DrillBaseComputeScalePrecision.class org.apache.drill.common.util.DrillStringUtils.class org.apache.drill.common.util.FileUtils.class org.apache.drill.common.util.RepeatTestRule.class org.apache.drill.common.util.TestTools.class org.apache.drill.exec.metrics.DrillMetrics.class org.apache.drill.exec.util.AssertionUtil.class org.apache.drill.exec.util.SystemPropertyUtil.class org.codehaus.plexus.compiler.javac.JavacCompiler5390571707514403110arguments
drill-common-1.9.0.pom file content.
<?xml version="1.0"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You 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> <parent> <artifactId>drill-root</artifactId> <groupId>org.apache.drill</groupId> <version>1.9.0</version> </parent> <artifactId>drill-common</artifactId> <packaging>jar</packaging> <name>Common (Logical Plan, Base expressions)</name> <dependencies> <dependency> <groupId>org.apache.drill</groupId> <artifactId>drill-protocol</artifactId> <version>${project.version}</version> </dependency> <dependency> <!-- add as provided scope so that we can compile TestTools. Should only be ever used in a test scenario where someone else is bringing JUnit in. --> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${dep.junit.version}</version> </dependency> <dependency> <groupId>org.apache.calcite</groupId> <artifactId>calcite-core</artifactId> </dependency> <dependency> <groupId>com.typesafe</groupId> <artifactId>config</artifactId> <version>1.0.0</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.1</version> </dependency> <dependency> <groupId>org.msgpack</groupId> <artifactId>msgpack</artifactId> <version>0.6.6</version> </dependency> <dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> <version>0.9.8</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson.version}</version> </dependency> <dependency> <groupId>com.codahale.metrics</groupId> <artifactId>metrics-core</artifactId> <version>3.0.1</version> </dependency> <dependency> <groupId>com.codahale.metrics</groupId> <artifactId>metrics-servlets</artifactId> <version>3.0.1</version> </dependency> <dependency> <groupId>org.antlr</groupId> <artifactId>antlr-runtime</artifactId> <version>3.4</version> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <version>2.9</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.2.1</version> <executions> <execution> <phase>process-classes</phase> <goals> <goal>java</goal> </goals> </execution> </executions> <configuration> <mainClass>org.apache.drill.common.scanner.BuildTimeScan</mainClass> <arguments> <argument>${project.build.outputDirectory}</argument> </arguments> </configuration> </plugin> </plugins> </build> </project>
<dependency> <groupId>org.apache.drill</groupId> <artifactId>drill-common</artifactId> <version>1.9.0</version> </dependency>
If you think the following drill-common-1.9.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download drill-common-1.9.0.jar file