conga-aem-crypto-cli
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.wcm.devops.conga.plugins</groupId> <artifactId>conga-aem-crypto-cli</artifactId> <version>2.20.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- #%L wcm.io %% Copyright (C) 2018 wcm.io %% Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. #L% --> <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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.wcm.devops.conga.plugins</groupId> <artifactId>io.wcm.devops.conga.plugins.aem.parent</artifactId> <version>2.20.2</version> <relativePath>../../parent/pom.xml</relativePath> </parent> <groupId>io.wcm.devops.conga.plugins</groupId> <artifactId>conga-aem-crypto-cli</artifactId> <packaging>jar</packaging> <version>2.20.2</version> <name>CONGA AEM Crypto Command Line Interface</name> <description>Command line tool to generate Crypto keys for AEM.</description> <dependencies> <dependency> <groupId>io.wcm.devops.conga.plugins</groupId> <artifactId>io.wcm.devops.conga.plugins.aem</artifactId> <version>2.20.2</version> <scope>compile</scope> <exclusions> <!-- Exclude all deps - only crypto util classes are used --> <exclusion> <groupId>io.wcm.devops.conga</groupId> <artifactId>io.wcm.devops.conga.generator</artifactId> </exclusion> <exclusion> <groupId>io.wcm.devops.conga.plugins</groupId> <artifactId>io.wcm.devops.conga.plugins.sling</artifactId> </exclusion> <exclusion> <groupId>io.wcm.tooling.commons</groupId> <artifactId>io.wcm.tooling.commons.content-package-builder</artifactId> </exclusion> <exclusion> <groupId>io.wcm.tooling.commons</groupId> <artifactId>io.wcm.tooling.commons.crx-packmgr-helper</artifactId> </exclusion> <exclusion> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </exclusion> <exclusion> <groupId>com.day.commons</groupId> <artifactId>day-commons-any</artifactId> </exclusion> <exclusion> <groupId>com.day.commons</groupId> <artifactId>day-commons-text</artifactId> </exclusion> <exclusion> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> </exclusion> <exclusion> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.jcr.contentparser</artifactId> </exclusion> <exclusion> <groupId>org.apache.geronimo.specs</groupId> <artifactId>geronimo-json_1.1_spec</artifactId> </exclusion> <exclusion> <groupId>org.apache.johnzon</groupId> <artifactId>johnzon-core</artifactId> </exclusion> <exclusion> <groupId>org.apache.jackrabbit</groupId> <artifactId>oak-security-spi</artifactId> </exclusion> <exclusion> <groupId>org.apache.jackrabbit</groupId> <artifactId>oak-commons</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.wcm.devops.conga.plugins</groupId> <artifactId>io.wcm.devops.conga.plugins.ansible</artifactId> <scope>compile</scope> <exclusions> <!-- Exclude all deps - only Ansible Vault util classes are used --> <exclusion> <groupId>io.wcm.devops.conga</groupId> <artifactId>io.wcm.devops.conga.generator</artifactId> </exclusion> <exclusion> <groupId>org.apache.commons</groupId> <artifactId>commons-exec</artifactId> </exclusion> <exclusion> <groupId>com.jayway.jsonpath</groupId> <artifactId>json-path</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <scope>compile</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>io.wcm.devops.maven.plugins</groupId> <artifactId>eclipse-maven-plugin</artifactId> <configuration> <addVersionToProjectName>false</addVersionToProjectName> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <addClasspath>true</addClasspath> <mainClass>io.wcm.devops.conga.plugins.aem.tooling.crypto.cli.AemCryptoCli</mainClass> </manifest> </archive> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptors> <descriptor>src/main/assembly/dist.xml</descriptor> </descriptors> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <!-- do not generate site for this project --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <inherited>false</inherited> <configuration> <skip>true</skip> <skipDeploy>true</skipDeploy> </configuration> </plugin> </plugins> </build> </project>