cq-social-srp-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.adobe.cq.social</groupId> <artifactId>cq-social-srp-api</artifactId> <version>1.0.5</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ADOBE CONFIDENTIAL __________________ Copyright 2012 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.1.55</version> </parent> <!-- ====================================================================== --> <!-- 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-srp-api</artifactId> <version>1.0.5</version> <packaging>bundle</packaging> <name>AEM Communities SRP Base - API Bundle</name> <scm> <connection>scm:git:git@git.corp.adobe.com:CQ/social-srp.git</connection> <developerConnection>scm:git:git@git.corp.adobe.com:CQ/social-srp.git</developerConnection> <url>https://git.corp.adobe.com/CQ/social-srp/tree/master/bundles/cq-social-srp-api</url> <tag>cq-social-srp-api-1.0.5</tag> </scm> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <argLine>-Djcr.repository.fixture=Oak</argLine> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-scr-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Bundle-Category>social</Bundle-Category> </instructions> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.sling</groupId> <artifactId>maven-sling-plugin</artifactId> <configuration> <slingUrl>${sling.url}/crx/repository/crx.default</slingUrl> <slingUrlSuffix>/libs/social/srp/install</slingUrlSuffix> <usePut>true</usePut> <skip>true</skip> </configuration> <executions> <execution> <id>deploy-to-cq</id> <phase>install</phase> <goals> <goal>install</goal> </goals> <configuration> <user>admin</user> <password>admin</password> </configuration> </execution> </executions> </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> <forceCreation>true</forceCreation> <includes> </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> </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> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <!-- *************************************************************** --> <!-- APACHE --> <!-- *************************************************************** --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.0</version> <scope>provided</scope> </dependency> <!-- *************************************************************** --> <!-- FELIX --> <!-- *************************************************************** --> <dependency> <groupId>org.apache.felix</groupId> <artifactId>org.apache.felix.scr.annotations</artifactId> </dependency> <dependency> <groupId>biz.aQute</groupId> <artifactId>bndlib</artifactId> <version>1.43.0</version> <scope>provided</scope> </dependency> <!-- *************************************************************** --> <!-- SLING --> <!-- *************************************************************** --> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.api</artifactId> <version>2.7.0</version> <scope>provided</scope> </dependency> <!-- *************************************************************** --> <!-- 3rd Party --> <!-- *************************************************************** --> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <!-- *************************************************************** --> <!-- TEST ONLY --> <!-- *************************************************************** --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.9.5</version> <scope>test</scope> </dependency> </dependencies> </project>