acs-aem-commons-bundle-cloud
Used in: 1 component
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
Overview
Description
OSGi Core bundle fragment for ACS AEM Commons (only AEMaaCS)
Snippets
<dependency> <groupId>com.adobe.acs</groupId> <artifactId>acs-aem-commons-bundle-cloud</artifactId> <version>6.11.0</version> </dependency>
Maven POM File
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ ACS AEM Commons ~ ~ Copyright (C) 2013 - 2023 Adobe ~ ~ Licensed under the Apache License, Version 2.0 (the "License"); ~ you may not use this file except in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, software ~ distributed under the License is distributed on an "AS IS" BASIS, ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ~ See the License for the specific language governing permissions and ~ limitations under the License. --> <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/xsd/maven-4.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.acs</groupId> <artifactId>acs-aem-commons</artifactId> <version>6.11.0</version> </parent> <!-- ====================================================================== --> <!-- P R O J E C T D E S C R I P T I O N --> <!-- ====================================================================== --> <artifactId>acs-aem-commons-bundle-cloud</artifactId> <name>ACS AEM Commons Bundle - Core Cloud Fragment</name> <description>OSGi Core bundle fragment for ACS AEM Commons (only AEMaaCS)</description> <build> <plugins> <plugin> <groupId>biz.aQute.bnd</groupId> <artifactId>bnd-maven-plugin</artifactId> <configuration> <bnd><![CDATA[ Bundle-Name: ACS AEM Commons - Bundle Fragment (for AEMaaCS) Bundle-Description: ACS AEM Commons Core OSGi bundle fragment containing AEM server-side logic requiring AEMaaCS Fragment-Host: com.adobe.acs.acs-aem-commons-bundle ]]></bnd> </configuration> </plugin> <plugin> <groupId>biz.aQute.bnd</groupId> <artifactId>bnd-baseline-maven-plugin</artifactId> <configuration> <skip>true</skip><!-- temporarily ignore due to empty interface being exported in 6.3.x --> </configuration> </plugin> <plugin> <groupId>org.apache.sling</groupId> <artifactId>sling-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.adobe.acs</groupId> <artifactId>acs-aem-commons-bundle</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <!-- Start Test dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.testing.osgi-mock.junit4</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.testing.sling-mock.junit4</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.wcm</groupId> <artifactId>io.wcm.testing.aem-mock.junit4</artifactId> <scope>test</scope> </dependency> <!-- End Test dependencies --> <!-- the aem-sdk-api should be the last dependency, as other dependencies should take precedence in case of package clashes --> <dependency> <groupId>com.adobe.aem</groupId> <artifactId>aem-sdk-api</artifactId> <scope>provided</scope> </dependency> </dependencies> <profiles> <profile> <id>release</id> <activation> <property> <name>performRelease</name> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <!-- generate empty jar, as long as no javadoc is generated --> <execution> <id>javadoc-jar</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> <configuration> <classesDirectory>${project.build.directory}/invalid</classesDirectory> <classifier>javadoc</classifier> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>