cq-chart
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.day.cq</groupId> <artifactId>cq-chart</artifactId> <version>5.3.0</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 --> <!-- ======================================================================= --> <parent> <groupId>com.day.cq</groupId> <artifactId>parent</artifactId> <version>9</version> </parent> <!-- ======================================================================= --> <!-- P R O J E C T --> <!-- ======================================================================= --> <groupId>com.day.cq</groupId> <artifactId>cq-chart</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 Communique 5 Charting</name> <version>5.3.0</version> <description> This module provides services and types for generating charts. </description> <scm> <connection>scm:svn:http://svn.day.com/repos/cq5/tags/cq-chart-5.3.0</connection> <developerConnection>scm:svn:http://svn.day.com/repos/cq5/tags/cq-chart-5.3.0</developerConnection> <url>http://svn.day.com/repos/cq5/tags/cq-chart-5.3.0</url> </scm> <!-- ======================================================================= --> <!-- B U I L D --> <!-- ======================================================================= --> <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/cq/chart/install/</slingUrlSuffix> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Export-Package> com.day.cq.graphics, com.day.cq.graphics.chart </Export-Package> </instructions> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <!-- currently the tests don't work correctly on all platforms due to a GFX font rendering NPE --> <skip>true</skip> </configuration> </plugin> </plugins> </build> <!-- ======================================================================= --> <!-- D E P E N D E N C I E S --> <!-- ======================================================================= --> <dependencies> <!-- servlet API --> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> </dependency> <!-- for logging --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <!-- day commons --> <dependency> <groupId>com.day.commons</groupId> <artifactId>day-commons-gfx</artifactId> <version>2.0.6</version> <scope>provided</scope> </dependency> <!-- Sling related --> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.api</artifactId> <version>2.0.6</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> <!-- for testing --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> </dependency> </dependencies> </project>