spark-xml-utils
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.elsevier</groupId>
<artifactId>spark-xml-utils</artifactId>
<version>1.8.0</version>
</dependency><project>
<groupId>com.elsevier</groupId>
<artifactId>spark-xml-utils</artifactId>
<modelVersion>4.0.0</modelVersion>
<name>Spark Utilities</name>
<description>The spark-xml-utils library exposes some basic XPath, XQuery, and XSLT functionality that can readily be leveraged by any Spark application</description>
<url>https://github.com/elsevierlabs-os/spark-xml-utils</url>
<packaging>jar</packaging>
<version>1.8.0</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
</license>
</licenses>
<scm>
<url>https://github.com/elsevierlabs-os/spark-xml-utils.git</url>
</scm>
<organization>
<name>Elsevier, Inc.</name>
<url>http://www.elsevier.com</url>
</organization>
<developers>
<developer>
<id>dmcbeath</id>
<name>Darin McBeath</name>
<email>d.mcbeath@elsevier.com</email>
<organization>Elsevier, Inc.</organization>
<organizationUrl>http://www.elsevier.com</organizationUrl>
<roles>
<role>architect</role>
<role>developer</role>
</roles>
</developer>
</developers>
<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>net.sf.saxon</groupId> <!-- Saxon dependency -->
<artifactId>Saxon-HE</artifactId>
<version>9.8.0-6</version>
</dependency>
<dependency>
<groupId>commons-io</groupId> <!-- Apache commons io -->
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId> <!-- Apache commons logging -->
<artifactId>commons-logging</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId> <!-- Apache commons Lang3 dependency -->
<artifactId>commons-lang3</artifactId>
<version>3.4</version>
</dependency>
</dependencies>
<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>
</project>