accesscontroltool-exampleconfig-package
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>biz.netcentric.cq.tools.accesscontroltool</groupId> <artifactId>accesscontroltool-exampleconfig-package</artifactId> <version>3.6.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- (C) Copyright 2016 Netcentric AG. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html --> <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> <!-- ====================================================================== --> <!-- P A R E N T P R O J E C T D E S C R I P T I O N --> <!-- ====================================================================== --> <parent> <groupId>biz.netcentric.cq.tools.accesscontroltool</groupId> <artifactId>accesscontroltool</artifactId> <version>3.6.2</version> </parent> <!-- ====================================================================== --> <!-- P R O J E C T D E S C R I P T I O N --> <!-- ====================================================================== --> <artifactId>accesscontroltool-exampleconfig-package</artifactId> <packaging>content-package</packaging> <name>Access Control Tool Package - Example Configuration</name> <description>This package contains example YAML files for usage with the Access Control Tool.</description> <build> <plugins> <plugin> <groupId>org.apache.jackrabbit</groupId> <artifactId>filevault-package-maven-plugin</artifactId> <configuration> <group>Netcentric</group> <filterSource>src/main/META-INF/vault/filter.xml</filterSource> <packageType>mixed</packageType> </configuration> </plugin> <plugin> <groupId>com.day.jcr.vault</groupId> <artifactId>content-package-maven-plugin</artifactId> <configuration> <targetURL>http://${crx.host}:${crx.port}/crx/packmgr/service.jsp</targetURL> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>autoInstallExamplePackage</id> <build> <plugins> <plugin> <groupId>com.day.jcr.vault</groupId> <artifactId>content-package-maven-plugin</artifactId> <executions> <execution> <id>install-content-package</id> <phase>install</phase> <goals> <goal>install</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>autoInstallExamplePackagePublish</id> <build> <plugins> <plugin> <groupId>com.day.jcr.vault</groupId> <artifactId>content-package-maven-plugin</artifactId> <executions> <execution> <id>install-content-package-publish</id> <phase>install</phase> <goals> <goal>install</goal> </goals> <configuration> <targetURL>http://${publish.crx.host}:${publish.crx.port}/crx/packmgr/service.jsp</targetURL> <userId>${publish.crx.username}</userId> <password>${publish.crx.password}</password> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>