spark-salesforce
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.keks51</groupId> <artifactId>spark-salesforce</artifactId> <version>1.3.2</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"> <modelVersion>4.0.0</modelVersion> <groupId>io.github.keks51</groupId> <artifactId>spark-salesforce</artifactId> <name>spark-salesforce</name> <version>1.3.2</version> <description>spark salesforce connector</description> <url>https://github.com/keks51/spark-salesforce</url> <developers> <developer> <name>Aleksei Gomziakov</name> <email>keks.mur@gmail.com</email> </developer> </developers> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <scm> <connection>scm:git:git://github.com/keks51/spark-salesforce.git</connection> <developerConnection>scm:git:ssh://github.com:keks51/spark-salesforce.git</developerConnection> <url>https://github.com/keks51/spark-salesforce</url> </scm> <build> <sourceDirectory>src/main/scala</sourceDirectory> <testSourceDirectory>src/test/scala</testSourceDirectory> <resources> <resource> <directory>${project.basedir}</directory> <includes> <include>NOTICE*</include> <include>LICENSE*</include> </includes> </resource> </resources> <testResources> <testResource> <directory>src/test/resources</directory> </testResource> </testResources> <finalName>spark-salesforce</finalName> <plugins> <plugin> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>empty-javadoc-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>javadoc</classifier> <classesDirectory>${basedir}/javadoc</classesDirectory> </configuration> </execution> </executions> </plugin> <plugin> <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> <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> <plugin> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </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> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <groupId>net.alchim31.maven</groupId> <artifactId>scala-maven-plugin</artifactId> <version>3.2.2</version> <executions> <execution> <goals> <goal>compile</goal> <goal>testCompile</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.2.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-site-plugin</artifactId> <version>3.7.1</version> </plugin> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> <version>3.0.0</version> </plugin> </plugins> </build> <repositories> <repository> <id>mulesoft-releases</id> <name>MuleSoft Releases Repository</name> <url>http://repository.mulesoft.org/releases/</url> </repository> <repository> <id>mulesoft-snapshots</id> <name>MuleSoft Snapshots Repository</name> <url>http://repository.mulesoft.org/snapshots/</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.apache.spark</groupId> <artifactId>spark-sql_2.11</artifactId> <version>2.4.0</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>univocity-parsers</artifactId> <groupId>com.univocity</groupId> </exclusion> <exclusion> <artifactId>spark-sketch_2.11</artifactId> <groupId>org.apache.spark</groupId> </exclusion> <exclusion> <artifactId>spark-core_2.11</artifactId> <groupId>org.apache.spark</groupId> </exclusion> <exclusion> <artifactId>spark-catalyst_2.11</artifactId> <groupId>org.apache.spark</groupId> </exclusion> <exclusion> <artifactId>spark-tags_2.11</artifactId> <groupId>org.apache.spark</groupId> </exclusion> <exclusion> <artifactId>orc-core</artifactId> <groupId>org.apache.orc</groupId> </exclusion> <exclusion> <artifactId>orc-mapreduce</artifactId> <groupId>org.apache.orc</groupId> </exclusion> <exclusion> <artifactId>parquet-column</artifactId> <groupId>org.apache.parquet</groupId> </exclusion> <exclusion> <artifactId>parquet-hadoop</artifactId> <groupId>org.apache.parquet</groupId> </exclusion> <exclusion> <artifactId>jackson-databind</artifactId> <groupId>com.fasterxml.jackson.core</groupId> </exclusion> <exclusion> <artifactId>arrow-vector</artifactId> <groupId>org.apache.arrow</groupId> </exclusion> <exclusion> <artifactId>xbean-asm6-shaded</artifactId> <groupId>org.apache.xbean</groupId> </exclusion> <exclusion> <artifactId>unused</artifactId> <groupId>org.spark-project.spark</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.spark</groupId> <artifactId>spark-streaming_2.11</artifactId> <version>2.4.0</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>spark-core_2.11</artifactId> <groupId>org.apache.spark</groupId> </exclusion> <exclusion> <artifactId>spark-tags_2.11</artifactId> <groupId>org.apache.spark</groupId> </exclusion> <exclusion> <artifactId>unused</artifactId> <groupId>org.spark-project.spark</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.scalatest</groupId> <artifactId>scalatest_2.11</artifactId> <version>3.1.1</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>scalactic_2.11</artifactId> <groupId>org.scalactic</groupId> </exclusion> <exclusion> <artifactId>scala-xml_2.11</artifactId> <groupId>org.scala-lang.modules</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.github.tomakehurst</groupId> <artifactId>wiremock-jre8-standalone</artifactId> <version>2.27.0</version> <scope>test</scope> </dependency> </dependencies> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <force.api.version>41.0.0</force.api.version> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.compiler.source>1.8</maven.compiler.source> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.target>1.8</maven.compiler.target> <spark.version>2.4.0</spark.version> <scala.short.version>2.11</scala.short.version> </properties> </project>