jato-shaded
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.openidentityplatform.openam.shaded</groupId>
<artifactId>jato-shaded</artifactId>
<version>15.2.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">
<parent>
<artifactId>openam</artifactId>
<groupId>org.openidentityplatform.openam</groupId>
<version>15.2.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.openidentityplatform.openam.shaded</groupId>
<artifactId>jato-shaded</artifactId>
<name>OpenAM Jato Shaded</name>
<description>OpenAM Jato Shaded Library</description>
<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>unpack</id>
<phase>process-sources</phase>
<goals>
<goal>unpack-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/classes</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<shadedArtifactAttached>false</shadedArtifactAttached>
<createDependencyReducedPom>true</createDependencyReducedPom>
<shadeSourcesContent>true</shadeSourcesContent>
<keepDependenciesWithProvidedScope>true</keepDependenciesWithProvidedScope>
<useDependencyReducedPomInJar>true</useDependencyReducedPomInJar>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.openidentityplatform.external.com.iplanet.jato</groupId>
<artifactId>jato</artifactId>
<version>2005-05-04</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>2.4.1</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>