cq-collab-blog
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.day.cq.collab</groupId>
<artifactId>cq-collab-blog</artifactId>
<version>5.6.10</version>
</dependency><?xml version="1.0"?><!--
Copyright 1997-2009 Day Management AG
Barfuesserplatz 6, 4001 Basel, Switzerland
All Rights Reserved.
This software is the confidential and proprietary information of
Day Management AG, ("Confidential Information"). You shall not
disclose such Confidential Information and shall use it only in
accordance with the terms of the license agreement you entered into
with Day.
-->
<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.0.75</version>
<relativePath />
</parent>
<!-- ====================================================================== -->
<!-- P R O J E C T D E S C R I P T I O N -->
<!-- ====================================================================== -->
<groupId>com.day.cq.collab</groupId>
<artifactId>cq-collab-blog</artifactId>
<packaging>bundle</packaging>
<url>https://adobe.com</url>
<licenses>
<license>
<name>License Agreement</name>
<url>http://adobe.com/go/terms</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>Adobe</name>
<url>http://www.adobe.com/</url>
</organization>
<developers>
<developer>
<name>Adobe</name>
<email>repo@adobe.com</email>
<organization>Adobe</organization>
<organizationUrl>http://www.adobe.com</organizationUrl>
</developer>
</developers>
<name>Collab Blog - Bundle</name>
<version>5.6.10</version>
<scm>
<connection>scm:git:git@git.corp.adobe.com:CQ5/cq5.git</connection>
<developerConnection>scm:git:git@git.corp.adobe.com:CQ5/cq5.git</developerConnection>
<url>https://git.corp.adobe.com/CQ5/cq5/tree/master/content/jcr_root/libs/collab/blog/src/impl</url>
<tag>cq-collab-blog-5.6.10</tag>
</scm>
<properties>
<sonar.web.sourceDirectory>../../components</sonar.web.sourceDirectory>
</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>
</plugin>
<plugin>
<groupId>org.apache.sling</groupId>
<artifactId>maven-sling-plugin</artifactId>
<configuration>
<slingUrlSuffix>/libs/collab/blog/install/</slingUrlSuffix>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-Category>cq5</Bundle-Category>
<Export-Package>
com.day.cq.collab.blog,
com.day.cq.collab.blog.antispam,
com.day.cq.collab.blog.antispam.process,
com.day.cq.collab.blog.search,
com.day.cq.collab.blog.search.process,
com.day.cq.collab.blog.trackback
</Export-Package>
<Private-Package>
com.day.cq.collab.blog.impl.*,
com.day.cq.collab.blog.antispam.impl,
com.day.cq.collab.blog.search.impl,
org.jdom.*
</Private-Package>
<Import-Package>
!oracle.xml.*,
!org.apache.xerces.*,
!org.jaxen.*,
javax.xml.*;resolution:=optional,
*
</Import-Package>
<Embed-Dependency>
rome;rome-fetcher;inline=true,
xmlrpc-common;inline=true,
xmlrpc-client;inline=true,
ws-commons-util;inline=true
</Embed-Dependency>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<executions>
<execution>
<id>attach-descriptor</id>
<goals>
<goal>attach-descriptor</goal>
</goals>
</execution>
</executions>
<configuration>
<!-- for an individual project, copy the <reportPlugins> and remove the ones you don't want -->
<reportPlugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<configuration>
<dependencyDetailsEnabled>false</dependencyDetailsEnabled>
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
</configuration>
<reportSets>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
</plugin>
</reportPlugins>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<executions>
<execution>
<id>checkstyle-java</id>
<phase>process-resources</phase>
<goals>
<goal>check</goal>
</goals>
<configuration>
<sourceDirectory>${basedir}</sourceDirectory>
<configLocation>checkstyle/java-day.xml</configLocation>
<includes>**/*.java,**/*.js,**/*.ecma</includes>
<excludes>**/target/**</excludes>
<failOnViolation>true</failOnViolation>
<consoleOutput>true</consoleOutput>
</configuration>
</execution>
<execution>
<id>checkstyle-jsp</id>
<phase>process-resources</phase>
<goals>
<goal>check</goal>
</goals>
<configuration>
<sourceDirectory>${basedir}</sourceDirectory>
<configLocation>checkstyle/jsp-day.xml</configLocation>
<includes>**/*.jsp</includes>
<excludes>**/target/**</excludes>
<failOnViolation>true</failOnViolation>
<consoleOutput>true</consoleOutput>
</configuration>
</execution>
<execution>
<id>checkstyle-xml</id>
<phase>process-resources</phase>
<goals>
<goal>check</goal>
</goals>
<configuration>
<sourceDirectory>${basedir}</sourceDirectory>
<configLocation>checkstyle/xml-day.xml</configLocation>
<includes>**/pom.xml</includes>
<excludes>**/target/**</excludes>
<failOnViolation>true</failOnViolation>
<consoleOutput>true</consoleOutput>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>com.adobe.cq.social</groupId>
<artifactId>social-build-tools</artifactId>
<version>${soco.build.tools.version}</version>
</dependency>
</dependencies>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
</plugins>
</build>
<!-- ====================================================================== -->
<!-- D E P E N D E N C I E S -->
<!-- ====================================================================== -->
<dependencies>
<!-- APIs -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</dependency>
<dependency>
<groupId>javax.jcr</groupId>
<artifactId>jcr</artifactId>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.scr.annotations</artifactId>
</dependency>
<!-- 3rd party libraries -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-email</artifactId>
<version>1.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>1.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.api</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.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.commons.json</artifactId>
<version>2.0.4-incubator</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.event</artifactId>
<version>2.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.servlets.post</artifactId>
<version>2.0.4-incubator</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
</dependency>
<!-- Day commons -->
<dependency>
<groupId>com.day.commons</groupId>
<artifactId>day-commons-text</artifactId>
<version>1.1.5</version>
<scope>provided</scope>
</dependency>
<!-- CQ5 Platform -->
<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-search</artifactId>
<version>5.2.10</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.day.cq</groupId>
<artifactId>cq-tagging</artifactId>
<version>5.3.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.day.cq</groupId>
<artifactId>cq-xssprotection</artifactId>
<version>5.4.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.day.cq</groupId>
<artifactId>cq-polling-importer</artifactId>
<version>5.2.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.day.cq</groupId>
<artifactId>cq-security-api</artifactId>
<version>5.2.6</version>
<scope>provided</scope>
</dependency>
<!-- CQ5 WCM -->
<dependency>
<groupId>com.day.cq.wcm</groupId>
<artifactId>cq-wcm-api</artifactId>
<version>5.3.0</version>
<scope>provided</scope>
</dependency>
<!-- CQ5 Workflow -->
<dependency>
<groupId>com.day.cq.workflow</groupId>
<artifactId>cq-workflow-api</artifactId>
<version>5.4.0</version>
<scope>provided</scope>
</dependency>
<!-- CQ5 Social Collaboration -->
<dependency>
<groupId>com.day.cq.collab</groupId>
<artifactId>cq-collab-commons</artifactId>
<version>5.6.40</version>
<scope>provided</scope>
</dependency>
<!-- ROME RSS Feed Parsing and Fetching -->
<dependency>
<groupId>rome</groupId>
<artifactId>rome</artifactId>
<version>1.0RC2</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>rome</groupId>
<artifactId>rome-fetcher</artifactId>
<version>1.0RC2</version>
<optional>true</optional>
</dependency>
<!-- commons -->
<dependency>
<groupId>commons-httpclient</groupId>
<artifactId>commons-httpclient</artifactId>
<version>3.1</version>
<scope>provided</scope>
<exclusions>
<!--
Same problem as JCR-683: commons-httpclient depends on
commons-logging. Since this webapp uses log4j (see the
slf4j-log4j12 dependency), we need to override this dependency with
jcl-over-sflf4j, found below
-->
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- XML-RPC -->
<dependency>
<groupId>org.apache.xmlrpc</groupId>
<artifactId>xmlrpc-common</artifactId>
<version>3.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.xmlrpc</groupId>
<artifactId>xmlrpc-client</artifactId>
<version>3.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.xmlrpc</groupId>
<artifactId>xmlrpc-server</artifactId>
<version>3.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.ws.commons</groupId>
<artifactId>ws-commons-util</artifactId>
<version>1.0.1</version>
<scope>provided</scope>
</dependency>
<!-- Testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</dependency>
<dependency>
<groupId>org.apache.jackrabbit</groupId>
<artifactId>jackrabbit-api</artifactId>
<version>2.0.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.jackrabbit</groupId>
<artifactId>jackrabbit-core</artifactId>
<version>2.0.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.commons.testing</artifactId>
<version>2.0.6</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.day.crx.sling</groupId>
<artifactId>com.day.crx.sling.testing</artifactId>
<version>2.0.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.day.cq</groupId>
<artifactId>cq-testing</artifactId>
<version>5.3.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.day.cq.wcm</groupId>
<artifactId>cq-wcm-core</artifactId>
<classifier>tests</classifier>
<version>5.4.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.day.cq.wcm</groupId>
<artifactId>cq-wcm-core</artifactId>
<version>5.3.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.day.cq</groupId>
<artifactId>cq-replication</artifactId>
<version>5.3.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.day.cq</groupId>
<artifactId>cq-commons-testing</artifactId>
<version>5.4.0</version>
<scope>test</scope>
</dependency>
<!-- needed explicitly -->
<dependency>
<groupId>com.day.crx</groupId>
<artifactId>crx-api</artifactId>
<version>2.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.commons.osgi</artifactId>
<version>2.0.4-incubator</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.jcr.resource</artifactId>
<version>2.0.6</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.day.cq</groupId>
<artifactId>cq-i18n</artifactId>
<version>5.4.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>