microsoft-accumulo-spark-iterator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.microsoft.masc</groupId> <artifactId>microsoft-accumulo-spark-iterator</artifactId> <version>1.0.4</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/maven-v4_0_0.xsd"> <parent> <artifactId>microsoft-accumulo-spark</artifactId> <groupId>com.microsoft.masc</groupId> <version>1.0.4</version> <relativePath>../../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>com.microsoft.masc</groupId> <artifactId>microsoft-accumulo-spark-iterator</artifactId> <name>Microsoft MASC, an Apache Spark connector for Apache Accumulo - Iterator</name> <version>1.0.4</version> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.2</version> <configuration> <trimStackTrace>false</trimStackTrace> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.1.1</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <source>8</source> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <configuration> <pushChanges>false</pushChanges> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <id>spark-shade-jar</id> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <shadedArtifactAttached>${shadedArtifactAttached}</shadedArtifactAttached> <shadedClassifierName>shaded</shadedClassifierName> <artifactSet> <excludes> <exclude>org.apache.accumulo:accumulo-native</exclude> <exclude>org.apache.hadoop:*</exclude> <exclude>com.google.common.jimfs:*</exclude> </excludes> </artifactSet> <relocations> <relocation> <pattern>com.google.common.annotations</pattern> <shadedPattern>shadded.com.google.common.annotations</shadedPattern> </relocation> <relocation> <pattern>com.google.common.base</pattern> <shadedPattern>shadded.com.google.common.base</shadedPattern> </relocation> <relocation> <pattern>com.google.common.cache</pattern> <shadedPattern>shadded.com.google.common.cache</shadedPattern> </relocation> <relocation> <pattern>com.google.common.collect</pattern> <shadedPattern>shadded.com.google.common.collect</shadedPattern> </relocation> <relocation> <pattern>com.google.common.escape</pattern> <shadedPattern>shadded.com.google.common.escape</shadedPattern> </relocation> <relocation> <pattern>com.google.common.eventbus</pattern> <shadedPattern>shadded.com.google.common.eventbus</shadedPattern> </relocation> <relocation> <pattern>com.google.common.graph</pattern> <shadedPattern>shadded.com.google.common.graph</shadedPattern> </relocation> <relocation> <pattern>com.google.common.hash</pattern> <shadedPattern>shadded.com.google.common.hash</shadedPattern> </relocation> <relocation> <pattern>com.google.common.html</pattern> <shadedPattern>shadded.com.google.common.html</shadedPattern> </relocation> <relocation> <pattern>com.google.common.io</pattern> <shadedPattern>shadded.com.google.common.io</shadedPattern> </relocation> <relocation> <pattern>com.google.common.math</pattern> <shadedPattern>shadded.com.google.common.math</shadedPattern> </relocation> <relocation> <pattern>com.google.common.net</pattern> <shadedPattern>shadded.com.google.common.net</shadedPattern> </relocation> <relocation> <pattern>com.google.common.primitives</pattern> <shadedPattern>shadded.com.google.common.primitives</shadedPattern> </relocation> <relocation> <pattern>com.google.common.reflect</pattern> <shadedPattern>shadded.com.google.common.reflect</shadedPattern> </relocation> <relocation> <pattern>com.google.common.util</pattern> <shadedPattern>shadded.com.google.common.util</shadedPattern> </relocation> <relocation> <pattern>com.google.common.xml</pattern> <shadedPattern>shadded.com.google.common.xml</shadedPattern> </relocation> <relocation> <pattern>org.apache.avro</pattern> <shadedPattern>shaded.accumulo.spark.org.apache.avro</shadedPattern> </relocation> <relocation> <pattern>de.odysseus.juel</pattern> <shadedPattern>shaded.accumulo.spark.de.odysseus.juel</shadedPattern> </relocation> </relocations> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> </excludes> </filter> </filters> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-enforcer-plugin</artifactId> </plugin> </plugins> </build> <profiles> <profile> <id>release-sign-artifacts</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>org.apache.accumulo</groupId> <artifactId>accumulo-core</artifactId> <version>2.0.0</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>commons-lang3</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>commons-logging</artifactId> <groupId>commons-logging</groupId> </exclusion> <exclusion> <artifactId>jline</artifactId> <groupId>jline</groupId> </exclusion> <exclusion> <artifactId>error_prone_annotations</artifactId> <groupId>com.google.errorprone</groupId> </exclusion> <exclusion> <artifactId>jsr305</artifactId> <groupId>com.google.code.findbugs</groupId> </exclusion> <exclusion> <artifactId>slf4j-api</artifactId> <groupId>org.slf4j</groupId> </exclusion> <exclusion> <artifactId>checker-qual</artifactId> <groupId>org.checkerframework</groupId> </exclusion> <exclusion> <artifactId>httpcore</artifactId> <groupId>org.apache.httpcomponents</groupId> </exclusion> <exclusion> <artifactId>jcommander</artifactId> <groupId>com.beust</groupId> </exclusion> <exclusion> <artifactId>caffeine</artifactId> <groupId>com.github.ben-manes.caffeine</groupId> </exclusion> <exclusion> <artifactId>protobuf-java</artifactId> <groupId>com.google.protobuf</groupId> </exclusion> <exclusion> <artifactId>commons-io</artifactId> <groupId>commons-io</groupId> </exclusion> <exclusion> <artifactId>accumulo-start</artifactId> <groupId>org.apache.accumulo</groupId> </exclusion> <exclusion> <artifactId>commons-collections4</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>commons-configuration2</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>commons-math3</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>hadoop-client-api</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> <exclusion> <artifactId>htrace-core</artifactId> <groupId>org.apache.htrace</groupId> </exclusion> <exclusion> <artifactId>libthrift</artifactId> <groupId>org.apache.thrift</groupId> </exclusion> <exclusion> <artifactId>zookeeper</artifactId> <groupId>org.apache.zookeeper</groupId> </exclusion> <exclusion> <artifactId>hadoop-client-runtime</artifactId> <groupId>org.apache.hadoop</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.9</version> <scope>provided</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> <scope>provided</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> </dependencies> <properties> <shadedArtifactAttached>true</shadedArtifactAttached> <encoding>UTF-8</encoding> </properties> </project>