core-cif-components-extensions-product-recs-content
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.adobe.commerce.cif</groupId> <artifactId>core-cif-components-extensions-product-recs-content</artifactId> <version>2.27.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2021 Adobe 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. --> <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.commerce.cif</groupId> <artifactId>core-cif-components-parent</artifactId> <version>2.27.0</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-cif-components-extensions-product-recs-content</artifactId> <packaging>content-package</packaging> <name>AEM CIF Core Components - Products Recommendations Content Package</name> <url>https://github.com/adobe/aem-core-cif-components</url> <scm> <connection>scm:git:https://github.com/adobe/aem-core-cif-components</connection> <developerConnection>scm:git:git@github.com:adobe/aem-core-cif-components.git</developerConnection> <url>https://github.com/adobe/aem-core-cif-components</url> <tag>core-cif-components-reactor-2.27.0</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> <plugins> <plugin> <groupId>org.apache.jackrabbit</groupId> <artifactId>filevault-package-maven-plugin</artifactId> <extensions>true</extensions> <configuration> <group>${vault.package.group}</group> <packageType>application</packageType> <properties> <acHandling>overwrite</acHandling> <description>${project.description}</description> <created>${buildNumber}</created> <createdBy>${vault.package.company}</createdBy> <cloudManagerTarget>none</cloudManagerTarget> </properties> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>core-cif-components-apps</artifactId> <version>${project.version}</version> </dependency> </dependencies> </configuration> </plugin> <!-- use the buildnumber plugin to generate a ISO8601 timestamp --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> </plugin> <plugin> <groupId>com.github.eirslett</groupId> <artifactId>frontend-maven-plugin</artifactId> <configuration> <installDirectory>../../../frontend-maven-plugin</installDirectory> <workingDirectory>${basedir}</workingDirectory> </configuration> <!-- The default phase for all executions is "generate-resources" --> <executions> <execution> <id>Install node and npm</id> <goals> <goal>install-node-and-npm</goal> </goals> </execution> <execution> <id>npm-install</id> <goals> <goal>npm</goal> </goals> </execution> <execution> <id>npm-check-formatting</id> <goals> <goal>npm</goal> </goals> <configuration> <arguments>run prettier:check</arguments> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-clean-plugin</artifactId> <configuration> <filesets> <fileset> <directory>src/main/content/jcr_root/apps/core/cif/extensions/product-recs/clientlibs/storefront-events-collector/dist</directory> </fileset> </filesets> </configuration> </plugin> <plugin> <groupId>org.apache.sling</groupId> <artifactId>htl-maven-plugin</artifactId> <version>2.0.2-1.4.0</version> <configuration> <sourceDirectory>src/main/content/jcr_root/apps/core/cif/extensions/product-recs/components</sourceDirectory> </configuration> <executions> <execution> <goals> <goal>validate</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>core-cif-components-apps</artifactId> <version>${project.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> </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> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>