application-utils_2.11
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.acxiom</groupId> <artifactId>application-utils_2.11</artifactId> <version>1.3.0</version> </dependency>
<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> <artifactId>application-utils_${scala.compat.version}</artifactId> <name>${project.artifactId}</name> <description>Spark Pipeline Driver Application Utilities</description> <inceptionYear>2018</inceptionYear> <parent> <groupId>com.acxiom</groupId> <artifactId>spark-pipeline-driver</artifactId> <version>1.3.0</version> </parent> <properties> <maven.deploy.skip>true</maven.deploy.skip> <sonar.skip>true</sonar.skip> </properties> <dependencies> <dependency> <groupId>com.acxiom</groupId> <artifactId>spark-pipeline-engine_${scala.compat.version}</artifactId> <version>${parent.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/com.github.andyglow/scala-jsonschema-core --> <dependency> <groupId>com.github.andyglow</groupId> <artifactId>scala-jsonschema-core_2.11</artifactId> <version>0.0.8</version> </dependency> <dependency> <groupId>com.github.andyglow</groupId> <artifactId>scala-jsonschema-macros_2.11</artifactId> <version>0.0.8</version> </dependency> <dependency> <groupId>com.github.andyglow</groupId> <artifactId>scala-jsonschema-api_2.11</artifactId> <version>0.0.8</version> </dependency> </dependencies> <build> <plugins> <!-- Create a directory with all dependent jars --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>3.1.1</version> <executions> <execution> <id>copy-dependencies</id> <phase>package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>libraries</outputDirectory> <overWriteReleases>false</overWriteReleases> <overWriteSnapshots>false</overWriteSnapshots> <overWriteIfNewer>true</overWriteIfNewer> </configuration> </execution> </executions> </plugin> <!-- Create a deployable artifact --> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.3</version> <configuration> <finalName>${artifactId}-${version}</finalName> <appendAssemblyId>false</appendAssemblyId> <descriptors> <descriptor>assembly.xml</descriptor> </descriptors> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <!-- Do not deploy this module --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>2.4</version> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build> </project>