core-forms-components-apps
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.adobe.aem</groupId> <artifactId>core-forms-components-apps</artifactId> <version>3.0.106</version> </dependency>
<?xml version="1.0" encoding="UTF-8" ?> <!-- Copyright 2020 Adobe. All rights reserved. This file is licensed to you 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 REPRESENTATIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <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>com.adobe.aem</groupId> <artifactId>core-forms-components-parent</artifactId> <version>3.0.106</version> <relativePath>../parent/pom.xml</relativePath> </parent> <!-- ====================================================================== --> <!-- P R O J E C T D E S C R I P T I O N --> <!-- ====================================================================== --> <artifactId>core-forms-components-apps</artifactId> <packaging>content-package</packaging> <name>AEM Forms Core Components - Content Package for apps</name> <description>Content Package with Components for AEM Forms Core Components</description> <url>https://github.com/adobe/aem-core-forms-components</url> <scm> <connection>scm:git:https://github.com/adobe/aem-core-forms-components</connection> <developerConnection>scm:git:git@github.com:adobe/aem-core-forms-components.git</developerConnection> <url>https://github.com/adobe/aem-core-forms-components</url> <tag>core-forms-components-reactor-3.0.106</tag> </scm> <organization> <name>Adobe</name> <url>https://www.adobe.com</url> </organization> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <!-- ====================================================================== --> <!-- P R O P E R T I E S --> <!-- ====================================================================== --> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <vault.package.version>${project.version}</vault.package.version> </properties> <!-- ====================================================================== --> <!-- B U I L D D E F I N I T I O N --> <!-- ====================================================================== --> <build> <sourceDirectory>src/main/content/jcr_root</sourceDirectory> <resources> <resource> <!-- keep some of the META-INF files and not configure everything in the plugin. --> <directory>${basedir}/src/main/content/META-INF/vault/definition</directory> <targetPath>../vault-work/META-INF/vault/definition</targetPath> </resource> </resources> <plugins> <plugin> <groupId>org.apache.jackrabbit</groupId> <artifactId>filevault-package-maven-plugin</artifactId> <extensions>true</extensions> <configuration> <filters> <filter> <root>/apps/core/fd/components/aemform</root> </filter> <filter> <root>/apps/core/fd/components/commons</root> </filter> <filter> <root>/apps/core/fd/components/formsportal</root> </filter> </filters> <validatorsSettings> <jackrabbit-filter> <options> <validRoots>/apps/core/fd/components</validRoots> </options> </jackrabbit-filter> </validatorsSettings> <packageType>application</packageType> <group>${vault.package.group}</group> <dependencies> <dependency> <group>day/cq60/product</group> <name>cq-ui-wcm-editor-content</name> <version>(1.0.138,)</version> </dependency> <dependency> <group>adobe/cq60</group> <name>core.wcm.components.content</name> <version>(2.20.6, )</version> </dependency> </dependencies> </configuration> </plugin> <plugin> <groupId>com.day.jcr.vault</groupId> <artifactId>content-package-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.sling</groupId> <artifactId>htl-maven-plugin</artifactId> <executions> <execution> <id>validate-htl-scripts</id> <goals> <goal>validate</goal> </goals> <phase>generate-sources</phase> <configuration> <generateJavaClasses>true</generateJavaClasses> <generatedJavaClassesPrefix>org.apache.sling.scripting.sightly</generatedJavaClassesPrefix> <allowedExpressionOptions> <allowedExpressionOption>cssClassName</allowedExpressionOption> <allowedExpressionOption>decoration</allowedExpressionOption> <allowedExpressionOption>decorationTagName</allowedExpressionOption> <allowedExpressionOption>wcmmode</allowedExpressionOption> </allowedExpressionOptions> </configuration> </execution> </executions> </plugin> <!-- use the buildnumber plugin to generate a ISO8601 timestamp --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> <configuration> <excludes combine.children="append"> <!-- Ignore lint-files --> <exclude>**/*.eslintrc</exclude> <exclude>**/*.editorconfig</exclude> <exclude>**/*.stylelintrc.yaml</exclude> <exclude>**/*.eslintignore</exclude> <!-- Ignore Node and npm --> <exclude>**/node/**</exclude> <exclude>**/node_modules/**</exclude> <!-- Ignore generated datalayer clientlib --> <exclude>**/core.wcm.components.commons.datalayer.v1/**</exclude> </excludes> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-text</artifactId> </dependency> <dependency> <groupId>com.adobe.cq</groupId> <artifactId>core.wcm.components.content</artifactId> <version>${core.wcm.components.version}</version> <type>zip</type> <scope>provided</scope> </dependency> </dependencies> <!-- ====================================================================== --> <!-- P R O F I L E S --> <!-- ====================================================================== --> <profiles> <profile> <id>autoInstallPackage</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>com.day.jcr.vault</groupId> <artifactId>content-package-maven-plugin</artifactId> <executions> <execution> <id>install-package</id> <goals> <goal>install</goal> </goals> <configuration> <targetURL>${quickstart.url}/crx/packmgr/service.jsp</targetURL> <failOnError>true</failOnError> <packageFile>${contentPackageFile}</packageFile> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>autoInstallPackagePublish</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>com.day.jcr.vault</groupId> <artifactId>content-package-maven-plugin</artifactId> <executions> <execution> <id>install-package-publish</id> <goals> <goal>install</goal> </goals> <configuration> <targetURL>${quickstart.url}/crx/packmgr/service.jsp</targetURL> <failOnError>true</failOnError> <packageFile>${contentPackageFile}</packageFile> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>cloud</id> <activation> <activeByDefault>false</activeByDefault> </activation> <properties> <contentPackageFile>${project.build.directory}/${project.build.finalName}-cloud.zip</contentPackageFile> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-resources</id> <phase>prepare-package</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/jcr_root/libs</outputDirectory> <resources> <resource> <directory>${basedir}/src/main/content/jcr_root/apps</directory> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <phase>prepare-package</phase> <configuration> <target> <replace file="target/jcr_root/libs/core/fd/components/aemform/v1/aemform/.content.xml" token=".core-forms" value="Core Content" /> <replace file="target/jcr_root/libs/core/fd/components/aemform/v2/aemform/.content.xml" token=".core-forms" value="Core Content" /> <replace file="target/jcr_root/libs/core/fd/components/formsportal/portallister/v1/portallister/.content.xml" token=".core-forms-and-communications-portal" value="Forms And Communications Portal" /> <replace file="target/jcr_root/libs/core/fd/components/formsportal/searchlister/v1/searchlister/.content.xml" token=".core-forms-and-communications-portal" value="Forms And Communications Portal" /> <replace file="target/jcr_root/libs/core/fd/components/formsportal/draftsandsubmissions/v1/draftsandsubmissions/.content.xml" token=".core-forms-and-communications-portal" value="Forms And Communications Portal" /> <replace file="target/jcr_root/libs/core/fd/components/formsportal/link/v1/link/.content.xml" token=".core-forms-and-communications-portal" value="Forms And Communications Portal" /> <replace file="target/jcr_root/libs/core/fd/components/formsportal/link/v2/link/.content.xml" token=".core-forms-and-communications-portal" value="Forms And Communications Portal" /> </target> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.jackrabbit</groupId> <artifactId>filevault-package-maven-plugin</artifactId> <executions> <execution> <id>generate-metadata-cloud</id> <goals> <goal>generate-metadata</goal> </goals> <configuration> <filters> <filter> <root>/libs/core/fd/components/aemform</root> </filter> <filter> <root>/libs/core/fd/components/commons</root> </filter> <filter> <root>/libs/core/fd/components/formsportal</root> </filter> </filters> <classifier>cloud</classifier> </configuration> </execution> <execution> <id>package-cloud</id> <goals> <goal>package</goal> </goals> <configuration> <jcrRootSourceDirectory>${project.build.directory}/jcr_root</jcrRootSourceDirectory> <classifier>cloud</classifier> <workDirectory>${project.build.directory}/vault-work-cloud</workDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <developers> <developer> <name>Rishi Mehta</name> <email>rismehta@adobe.com</email> <organization>Adobe</organization> <organizationUrl>https://www.adobe.com</organizationUrl> </developer> <developer> <name>Varun Dua</name> <email>vdua@adobe.com</email> <organization>Adobe</organization> <organizationUrl>https://www.adobe.com</organizationUrl> </developer> </developers> </project>