cq-commerce-hybris-impl
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.adobe.cq.commerce</groupId> <artifactId>cq-commerce-hybris-impl</artifactId> <version>6.5.2</version> </dependency>
<?xml version="1.0"?><!-- /************************************************************************* * * ADOBE CONFIDENTIAL * __________________ * * Copyright 2011 Adobe Systems Incorporated * All Rights Reserved. * * NOTICE: All information contained herein is, and remains * the property of Adobe Systems Incorporated and its suppliers, * if any. The intellectual and technical concepts contained * herein are proprietary to Adobe Systems Incorporated and its * suppliers and are protected by trade secret or copyright law. * Dissemination of this information or reproduction of this material * is strictly forbidden unless prior written permission is obtained * from Adobe Systems Incorporated. **************************************************************************/ --> <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.day.cq</groupId> <artifactId>parent</artifactId> <version>52</version> </parent> <!-- ====================================================================== --> <!-- P R O J E C T D E S C R I P T I O N --> <!-- ====================================================================== --> <groupId>com.adobe.cq.commerce</groupId> <artifactId>cq-commerce-hybris-impl</artifactId> <packaging>bundle</packaging> <name>Day Communique 5 Commerce Core Implementation for Hybris</name> <version>6.5.2</version> <description>Day CQ5 Commerce implementation bundle for the Hybris e-commerce system</description> <scm> <connection>scm:git:git@git.corp.adobe.com:CQ5/cq5-hybris-integration.git</connection> <developerConnection>scm:git:git@git.corp.adobe.com:CQ5/cq5-hybris-integration.git</developerConnection> <url>https://git.corp.adobe.com/CQ5/cq5-hybris-integration/tree/master/hybris-pkg/jcr_root/libs/commerce/src/hybris-impl</url> <tag>hybris-reactor-6.5.2</tag> </scm> <properties> <baseline.skip>true</baseline.skip> <baseline.failOnError>false</baseline.failOnError> </properties> <!-- ====================================================================== --> <!-- B U I L D D E F I N I T I O N --> <!-- ====================================================================== --> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-scr-plugin</artifactId> <configuration> <specVersion>1.2</specVersion> </configuration> </plugin> <plugin> <groupId>org.apache.sling</groupId> <artifactId>maven-sling-plugin</artifactId> <configuration> <slingUrl>http://localhost:4502/system/console</slingUrl> <usePut>false</usePut> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Bundle-Category>cq5</Bundle-Category> <Private-Package> com.adobe.cq.commerce.hybris.impl, com.adobe.cq.commerce.hybris.impl.* </Private-Package> </instructions> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <excludePackageNames> com.adobe.cq.commerce.hybris.impl </excludePackageNames> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <systemPropertyVariables> <jcr.repository.fixture>Oak</jcr.repository.fixture> </systemPropertyVariables> </configuration> </plugin> </plugins> </build> <!-- ====================================================================== --> <!-- R E P O R T I N G --> <!-- ====================================================================== --> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <excludePackageNames> com.adobe.cq.commerce.hybris.impl </excludePackageNames> </configuration> </plugin> </plugins> </reporting> <!-- ====================================================================== --> <!-- D E P E N D E N C I E S --> <!-- ====================================================================== --> <dependencies> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.api</artifactId> <version>2.9.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.jcr.resource</artifactId> <scope>provided</scope> <version>2.0.8</version> </dependency> <dependency> <groupId>com.day.cq</groupId> <artifactId>cq-polling-importer</artifactId> <version>5.5.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> </dependency> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.commons.osgi</artifactId> <version>2.1.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.day.cq</groupId> <artifactId>cq-compat-commons-auth</artifactId> <version>0.1.2</version> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.felix</groupId> <artifactId>org.apache.felix.scr.annotations</artifactId> <version>1.9.6</version> <scope>provided</scope> </dependency> <!-- Testing --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit-addons</groupId> <artifactId>junit-addons</artifactId> <version>1.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.jackrabbit</groupId> <artifactId>jackrabbit-api</artifactId> <version>2.7.0</version> </dependency> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.commons.testing</artifactId> <version>2.0.12</version> <scope>test</scope> <exclusions> <!-- exclude the 1.4 version--> <exclusion> <groupId>org.apache.jackrabbit</groupId> <artifactId>jackrabbit-api</artifactId> </exclusion> <exclusion> <groupId>org.apache.jackrabbit</groupId> <artifactId>jackrabbit-core</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.day.cq</groupId> <artifactId>cq-commons-testing</artifactId> <version>5.5.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.8.4</version> <scope>test</scope> </dependency> <dependency> <groupId>com.adobe.granite</groupId> <artifactId>com.adobe.granite.testing.external-systems</artifactId> <version>0.0.8</version> <scope>test</scope> </dependency> <dependency> <groupId>com.adobe.granite</groupId> <artifactId>com.adobe.granite.test.tooling</artifactId> <version>0.0.12</version> <scope>test</scope> <exclusions> <exclusion> <groupId>com.day.crx</groupId> <artifactId>crx-core</artifactId> </exclusion> </exclusions> </dependency> <dependency> <!-- public --> <groupId>com.adobe.aem</groupId> <artifactId>uber-jar</artifactId> <version>6.5.0</version> <classifier>apis</classifier> <scope>provided</scope> </dependency> </dependencies> </project>