ocsp-store-example-assembly
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.xipki.example</groupId>
<artifactId>ocsp-store-example-assembly</artifactId>
<version>6.3.0</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>
<parent>
<groupId>org.xipki.example</groupId>
<artifactId>examples</artifactId>
<version>6.3.0</version>
</parent>
<artifactId>ocsp-store-example-assembly</artifactId>
<packaging>pom</packaging>
<name>XiPKI :: example :: ${project.artifactId}</name>
<dependencies>
<dependency>
<groupId>org.xipki.example</groupId>
<artifactId>ocsp-store-example</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.xipki</groupId>
<artifactId>ocsp-servlet</artifactId>
<version>${project.version}</version>
<type>war</type>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-war</id>
<phase>generate-resources</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/ocsp-servlet</outputDirectory>
<artifactItems>
<artifactItem>
<groupId>org.xipki</groupId>
<artifactId>ocsp-servlet</artifactId>
<version>${project.version}</version>
<type>war</type>
</artifactItem>
</artifactItems>
</configuration>
</execution>
<execution>
<!-- Copy the JDBC and BouncyCastle jars -->
<id>jdbc</id>
<phase>generate-resources</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<stripVersion>false</stripVersion>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
<artifactItems>
<artifactItem>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk18on</artifactId>
</artifactItem>
<artifactItem>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk18on</artifactId>
</artifactItem>
</artifactItems>
</configuration>
</execution>
<execution>
<id>copy-dependencies</id>
<phase>generate-resources</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/ocsp-servlet/WEB-INF/lib</outputDirectory>
<artifactItems>
<artifactItem>
<groupId>org.xipki.example</groupId>
<artifactId>ocsp-store-example</artifactId>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>repack-war</id>
<phase>prepare-package</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<zip basedir="${project.build.directory}/ocsp-servlet"
destfile="${project.build.directory}/webapps/ocsp.war"/>
</target>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>bin-main</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>src/assembly/descriptors/main.xml</descriptor>
</descriptors>
<appendAssemblyId>false</appendAssemblyId>
<!-- Don't install/publish the result -->
<attach>false</attach>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>