crxde-support
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.day.crx</groupId>
<artifactId>crxde-support</artifactId>
<version>2.2.0</version>
</dependency><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 -->
<!-- ======================================================================= -->
<parent>
<groupId>com.day.crx.sling</groupId>
<artifactId>parent</artifactId>
<version>2.2.0</version>
<relativePath>../../../../../../../parent/pom.xml</relativePath>
</parent>
<!-- ======================================================================= -->
<!-- P R O J E C T -->
<!-- ======================================================================= -->
<groupId>com.day.crx</groupId>
<artifactId>crxde-support</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>Day CRXDE Support</name>
<description>
This module provides services for the CRX integrated development environment.
</description>
<scm>
<connection>scm:svn:http://svn.day.com/repos/crx/tags/crx-2.2.0/sling/crxde-support/content/jcr_root/libs/crxde/src/impl</connection>
<developerConnection>scm:svn:http://svn.day.com/repos/crx/tags/crx-2.2.0/sling/crxde-support/content/jcr_root/libs/crxde/src/impl</developerConnection>
<url>http://svn.day.com/repos/crx/tags/crx-2.2.0/sling/crxde-support/content/jcr_root/libs/crxde/src/impl</url>
</scm>
<!-- ======================================================================= -->
<!-- B U I L D -->
<!-- ======================================================================= -->
<build>
<resources>
<resource>
<directory>${basedir}/src/main/resources</directory>
</resource>
</resources>
<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/crxde/install/</slingUrlSuffix>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Embed-Dependency>
bndlib,
maven-scr-plugin,
org.apache.felix.scr.annotations,
asm-all,
qdox
</Embed-Dependency>
<Embed-Transitive>false</Embed-Transitive>
<!-- Downgrade dependency versions to avoid problems
when upgrading CRX in CQ5.3 (bug #29010).
TODO: Upgrade also the Jackrabbit bundles -->
<Import-Package>
org.apache.jackrabbit.commons;version=2.0.0,
org.apache.jackrabbit.commons.iterator;version=2.0.0,
org.apache.jackrabbit.util;version=2.0.0,
!org.apache.maven.*,
!org.codehaus.plexus.*,
!junit.*,
!org.apache.tools.ant.*,
*
</Import-Package>
<Private-Package>
com.day.crx.ide.*
</Private-Package>
</instructions>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<includeArtifactIds>bndlib,maven-scr-plugin,org.apache.felix.scr.annotations,asm-all,qdox</includeArtifactIds>
<outputDirectory>${project.build.directory}/embedded-libs</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>false</overWriteSnapshots>
<overWriteIfNewer>true</overWriteIfNewer>
</configuration>
</execution>
</executions>
</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>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</reporting>
<!-- ====================================================================== -->
<!-- D E P E N D E N C I E S -->
<!-- ====================================================================== -->
<dependencies>
<!-- servlet API -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>javax.jcr</groupId>
<artifactId>jcr</artifactId>
</dependency>
<!-- CRX related -->
<dependency>
<groupId>com.day.crx</groupId>
<artifactId>crx-scm-integration</artifactId>
</dependency>
<dependency>
<groupId>com.day.crx</groupId>
<artifactId>crx-commons</artifactId>
</dependency>
<dependency>
<groupId>com.day.crx</groupId>
<artifactId>crx-packaging</artifactId>
</dependency>
<!-- filevault -->
<dependency>
<groupId>com.day.jcr.vault</groupId>
<artifactId>com.day.jcr.vault</artifactId>
</dependency>
<!-- for logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<!-- Sling related -->
<dependency>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.settings</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.jcr.api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.commons.json</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.jcr.compiler</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.commons.compiler</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.sling</groupId>
<artifactId>org.apache.sling.commons.classloader</artifactId>
<scope>provided</scope>
</dependency>
<!-- SCR plugin to generate descriptors -->
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>maven-scr-plugin</artifactId>
<version>1.4.2</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.scr.annotations</artifactId>
<version>1.2.0</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>asm</groupId>
<artifactId>asm-all</artifactId>
<version>3.1</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.thoughtworks.qdox</groupId>
<artifactId>qdox</artifactId>
<version>1.9.1</version>
<scope>provided</scope>
<optional>true</optional>
</dependency>
<!-- OSGi related -->
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.osgi.core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.osgi.compendium</artifactId>
</dependency>
<!-- commons -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<!-- <version>1.4</version> -->
<scope>provided</scope>
</dependency>
<!-- bnd -->
<dependency>
<groupId>biz.aQute</groupId>
<!-- ><artifactId>bnd</artifactId> -->
<artifactId>bndlib</artifactId>
<version>0.0.323</version>
</dependency>
<!-- for testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
</dependency>
</dependencies>
<!-- TODO: Add to Central -->
<repositories>
<repository>
<id>aQute</id>
<url>http://www.aQute.biz/repo</url>
</repository>
</repositories>
</project>