forked from Adobe-Consulting-Services/acs-aem-commons
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
solves Adobe-Consulting-Services#3148: Add cloud bundle + cloud all p…
…ackage containing fixes for dispatcher flush rules (Adobe-Consulting-Services#3149) * solves Adobe-Consulting-Services#3148: Add cloud bundle + cloud all package containing dispatcher flush rules fixes --------- Co-authored-by: Roy Teeuwen <c-roy.teeuwen@acolad.com>
- Loading branch information
1 parent
6e88e55
commit 302aade
Showing
13 changed files
with
665 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
<?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.2.1-SNAPSHOT</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> | ||
</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> | ||
<!-- annotations --> | ||
<dependency> | ||
<groupId>com.google.code.findbugs</groupId> | ||
<artifactId>jsr305</artifactId> | ||
<scope>provided</scope><!-- should not transitively be exposed --> | ||
</dependency> | ||
<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>com.adobe.acs</groupId> | ||
<artifactId>acs-aem-commons-bundle</artifactId> | ||
<version>${project.version}</version> | ||
<classifier>tests</classifier> | ||
<type>test-jar</type> | ||
<scope>test</scope> | ||
</dependency> | ||
<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> | ||
</project> |
Oops, something went wrong.