marble
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.u51.marble</groupId> <artifactId>marble</artifactId> <version>1.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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.u51.marble</groupId> <artifactId>marble</artifactId> <packaging>pom</packaging> <version>1.0.0</version> <!-- oss --> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:51nb/marble.git</connection> <developerConnection>scm:git:https://github.com/51nb/marble.git</developerConnection> <url>https://github.com/51nb/marble.git</url> <tag>HEAD</tag> </scm> <developers> <developer> <id>Lai Zhou</id> <name>LaiZhou</name> <email>hhlai1990@gmail.com</email> </developer> </developers> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/51nb/marble/issues</url> </issueManagement> <properties> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <top.dir>${project.basedir}</top.dir> <calcite-patch.version>1.18.0-M2</calcite-patch.version> <reflections.version>0.9.11</reflections.version> <hive.version>1.2.1</hive.version> <hadoop.common.version>2.7.3</hadoop.common.version> <hadoop.mapreduce.version>2.7.3</hadoop.mapreduce.version> <junit.version>4.12</junit.version> <hamcrest.version>1.3</hamcrest.version> <h2.version>1.4.199</h2.version> <drill-fmpp-maven-plugin.version>1.14.0</drill-fmpp-maven-plugin.version> <fmpp.version>0.9.16</fmpp.version> <freemarker.version>2.3.28</freemarker.version> <javacc-maven-plugin.version>2.4</javacc-maven-plugin.version> <hydromatic-resource.version>0.6</hydromatic-resource.version> <hydromatic-toolbox.version>0.3</hydromatic-toolbox.version> <checkstyle.version>7.8.2</checkstyle.version> <maven-checkstyle-plugin.version>3.0.0</maven-checkstyle-plugin.version> <maven.javadoc.failOnError>false</maven.javadoc.failOnError> </properties> <modules> <module>marble-table</module> <module>marble-table-hive</module> <module>benchmark</module> </modules> <dependencyManagement> <dependencies> <!--project--> <dependency> <groupId>com.u51.calcite</groupId> <artifactId>calcite-patch</artifactId> <version>${calcite-patch.version}</version> </dependency> <dependency> <groupId>com.u51.marble</groupId> <artifactId>marble-table</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.u51.marble</groupId> <artifactId>marble-table-hive</artifactId> <version>${project.version}</version> </dependency> <!--hive--> <dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> <version>${reflections.version}</version> </dependency> <dependency> <groupId>org.apache.hive</groupId> <artifactId>hive-exec</artifactId> <version>${hive.version}</version> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-common</artifactId> <version>${hadoop.common.version}</version> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-mapreduce-client-core</artifactId> <version>${hadoop.mapreduce.version}</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <!--common --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>${hamcrest.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>${h2.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.7.0</version> <configuration> <compilerArgument>-Xlint:deprecation</compilerArgument> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> <goal>test-jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${maven-checkstyle-plugin.version}</version> <executions> <execution> <id>validate</id> <phase>validate</phase> <configuration> <configLocation>${top.dir}/src/main/config/checkstyle/checker.xml</configLocation> <suppressionsLocation>${top.dir}/src/main/config/checkstyle/suppressions.xml </suppressionsLocation> <propertyExpansion>base_dir=${top.dir}</propertyExpansion> <consoleOutput>true</consoleOutput> <failOnViolation>false</failOnViolation> <failsOnError>false</failsOnError> <includeTestSourceDirectory>false</includeTestSourceDirectory> <sourceDirectories> <sourceDirectory>${project.build.sourceDirectory} </sourceDirectory> </sourceDirectories> <excludes>**/com/u51/marble/*.java,**/BazJoinExample.java</excludes> </configuration> <goals> <goal>check</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>${checkstyle.version}</version> </dependency> <dependency> <groupId>net.hydromatic</groupId> <artifactId>toolbox</artifactId> <version>${hydromatic-toolbox.version}</version> <exclusions> <exclusion> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> </exclusion> </exclusions> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>3.1.1</version> <executions> <execution> <id>analyze</id> <goals> <goal>analyze-only</goal> </goals> <configuration> <failOnWarning>false</failOnWarning> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.0.0-M2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.1</version> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>net.hydromatic</groupId> <artifactId>hydromatic-resource-maven-plugin</artifactId> <version>${hydromatic-resource.version}</version> </plugin> <plugin> <groupId>org.apache.drill.tools</groupId> <artifactId>drill-fmpp-maven-plugin</artifactId> <version>${drill-fmpp-maven-plugin.version}</version> <dependencies> <dependency> <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> <version>${freemarker.version}</version> </dependency> <dependency> <groupId>net.sourceforge.fmpp</groupId> <artifactId>fmpp</artifactId> <version>${fmpp.version}</version> <exclusions> <exclusion> <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> </exclusion> </exclusions> </dependency> </dependencies> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>javacc-maven-plugin</artifactId> <version>${javacc-maven-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>3.0.0-M2</version> <executions> <execution> <id>enforce-java</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireJavaVersion> <version>[1.8,)</version> </requireJavaVersion> </rules> </configuration> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> </project>