cq-social-handlebars
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.adobe.cq.social</groupId> <artifactId>cq-social-handlebars</artifactId> <version>1.8.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ADOBE CONFIDENTIAL __________________ Copyright 2013 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.adobe.cq.social</groupId> <artifactId>socialcommunities-parent</artifactId> <version>1.4.3</version> <relativePath /> </parent> <!-- PROJECT DESCRIPTION ================================================== --> <!-- ====================================================================== --> <!-- P R O J E C T D E S C R I P T I O N --> <!-- ====================================================================== --> <groupId>com.adobe.cq.social</groupId> <artifactId>cq-social-handlebars</artifactId> <version>1.8.0</version> <packaging>bundle</packaging> <name>AEM Communities Handlebars Scripting Engine - Bundle</name> <description>Support for Handlebars scripting</description> <scm> <connection>scm:git:git@git.corp.adobe.com:CQ/social-commons.git</connection> <developerConnection>scm:git:git@git.corp.adobe.com:CQ/social-commons.git</developerConnection> <url>https://git.corp.adobe.com/CQ/social-commons/tree/master/bundles/handlebars-engine</url> <tag>cq-social-handlebars-1.8.0</tag> </scm> <build> <plugins> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Bundle-Category>social</Bundle-Category> <_exportcontents>com.github.jknack.handlebars.cache,com.github.jknack.handlebars.context,com.github.jknack.handlebars,com.github.jknack.handlebars.helper,com.github.jknack.handlebars.io,com.github.jknack.handlebars.js</_exportcontents> <Export-Package>!com.adobe.cq.social.handlebars,com.adobe.cq.social.handlebars.api</Export-Package> <Private-Package>com.adobe.cq.social.handlebars</Private-Package> <Embed-Dependency>scope=compile</Embed-Dependency> <Import-Package>com.github.jknack.handlebars,*</Import-Package> </instructions> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-scr-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.sling</groupId> <artifactId>maven-sling-plugin</artifactId> <configuration> <slingUrlSuffix>/libs/social/commons/install/</slingUrlSuffix> <usePut>true</usePut> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <plugins> <!-- The release profile builds a source jar containing only the public classes, for javadocs --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <includes> <include>com/adobe/cq/social/handlebars/api/*</include> </includes> <excludes> <exclude>**/impl/**</exclude> </excludes> </configuration> </execution> </executions> </plugin> <!-- The release profile builds a jar containing only the public classes, for the api jar --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <id>api-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classifier>public-api</classifier> <includes> <include>com/adobe/cq/social/handlebars/api/*</include> </includes> <excludes> <exclude>**/impl/**</exclude> </excludes> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>static-analysis</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <configuration> <failOnError>false</failOnError> </configuration> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>com.adobe.cq.social</groupId> <artifactId>cq-social-ugcbase-api</artifactId> <version>2.0.10</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.adobe.cq.social</groupId> <artifactId>cq-social-serviceusers-api</artifactId> <version>1.0.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.adobe.cq.social</groupId> <artifactId>cq-social-scf-api</artifactId> <version>2.0.4</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.compendium</artifactId> </dependency> <dependency> <groupId>org.apache.felix</groupId> <artifactId>org.apache.felix.framework</artifactId> <version>4.0.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </dependency> <dependency> <groupId>javax.jcr</groupId> <artifactId>jcr</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.4</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.api</artifactId> <version>2.7.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.scripting.api</artifactId> <version>2.1.4</version> <scope>provided</scope> </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>org.apache.sling</groupId> <artifactId>org.apache.sling.jcr.api</artifactId> <version>2.0.6</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.felix</groupId> <artifactId>org.apache.felix.scr.annotations</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>com.adobe.granite</groupId> <artifactId>com.adobe.granite.xssprotection</artifactId> <version>5.5.8</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.day.cq</groupId> <artifactId>cq-commons</artifactId> <version>5.4.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.day.cq</groupId> <artifactId>cq-rewriter</artifactId> <version>5.6.4</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.adobe.granite</groupId> <artifactId>com.adobe.granite.i18n</artifactId> <version>5.5.10</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.adobe.granite</groupId> <artifactId>com.adobe.granite.ui.clientlibs</artifactId> <version>1.0.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.day.cq.wcm</groupId> <artifactId>cq-wcm-api</artifactId> <version>5.6.6</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.github.jknack</groupId> <artifactId>handlebars</artifactId> <version>4.0.5</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId> <version>4.5.3</version> <scope>compile</scope> </dependency> <dependency> <groupId>de.matrixweb.osgi.wrapped</groupId> <artifactId>osgi-wrapped-rhino</artifactId> <version>1.7R4</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.github.jknack</groupId> <artifactId>handlebars-guava-cache</artifactId> <version>4.0.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>15.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.2.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <version>2.2.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> <version>2.2.2</version> <scope>provided</scope> </dependency> <dependency> <groupId>biz.aQute</groupId> <artifactId>bndlib</artifactId> <version>1.43.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.adobe.granite</groupId> <artifactId>com.adobe.granite.security.user</artifactId> <version>0.0.14</version> <scope>provided</scope> </dependency> <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> <version>3.1</version> <scope>provided</scope> </dependency> <!-- Testing --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.9.5</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <scope>test</scope> </dependency> </dependencies> </project>