cpm-platform-replication-setup
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.composum.platform</groupId>
<artifactId>cpm-platform-replication-setup</artifactId>
<version>1.1.3</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>com.composum.platform</groupId>
<artifactId>cpm-platform-replication</artifactId>
<version>1.1.3</version>
</parent>
<artifactId>cpm-platform-replication-setup</artifactId>
<packaging>jar</packaging>
<name>Composum Platform Replication setup hook</name>
<description>the setup implementation code for Composum Platform subproject for replicating content remotely to publish hosts</description>
<build>
<plugins>
<plugin>
<groupId>pl.project13.maven</groupId>
<artifactId>git-commit-id-plugin</artifactId>
</plugin>
<!-- set main class -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>com.composum.platform.replication.setup.SetupHook</mainClass>
<addClasspath>true</addClasspath>
</manifest>
</archive>
</configuration>
</plugin>
<!-- embed utilities -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>embed</id>
<phase>validate</phase>
<goals>
<goal>unpack</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>com.composum.nodes.setup</groupId>
<artifactId>composum-nodes-setup-util</artifactId>
<outputDirectory>${project.build.directory}/classes</outputDirectory>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<!-- Composum Nodes (Core) -->
<dependency>
<groupId>com.composum.nodes</groupId>
<artifactId>composum-nodes-commons</artifactId>
</dependency>
<dependency>
<groupId>com.composum.nodes</groupId>
<artifactId>composum-nodes-usermgr</artifactId>
</dependency>
<!-- Setup utilities -->
<dependency>
<groupId>com.composum.nodes.setup</groupId>
<artifactId>composum-nodes-setup-util</artifactId>
</dependency>
<!-- Apache Sling -->
<dependency>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.api</artifactId>
</dependency>
<!-- JCR API, Jackrabbit -->
<dependency>
<groupId>javax.jcr</groupId>
<artifactId>jcr</artifactId>
</dependency>
<dependency>
<groupId>org.apache.jackrabbit</groupId>
<artifactId>jackrabbit-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.jackrabbit.vault</groupId>
<artifactId>org.apache.jackrabbit.vault</artifactId>
</dependency>
<!-- OSGi -->
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
</dependency>
<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
</dependency>
</dependencies>
<profiles>
<profile>
<id>installBundle</id>
</profile>
<profile>
<id>installPackage</id>
</profile>
<profile>
<id>installTestContent</id>
</profile>
</profiles>
</project>