You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
214 lines
7.7 KiB
214 lines
7.7 KiB
<?xml version="1.0" encoding="UTF-8"?> |
|
<!-- |
|
| Copyright 2017 Adobe Systems Incorporated |
|
| |
|
| 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> |
|
<parent> |
|
<groupId>com.mcaps</groupId> |
|
<artifactId>mcaps-site</artifactId> |
|
<version>1.0.0-SNAPSHOT</version> |
|
<relativePath>../pom.xml</relativePath> |
|
</parent> |
|
<artifactId>mcaps-site.core</artifactId> |
|
<name>MCAPS Site - Core</name> |
|
<description>Core bundle for MCAPS Site</description> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.sling</groupId> |
|
<artifactId>sling-maven-plugin</artifactId> |
|
</plugin> |
|
<plugin> |
|
<groupId>biz.aQute.bnd</groupId> |
|
<artifactId>bnd-maven-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<id>bnd-process</id> |
|
<goals> |
|
<goal>bnd-process</goal> |
|
</goals> |
|
<configuration> |
|
<bnd><![CDATA[ |
|
Import-Package: javax.annotation;version=0.0.0,* |
|
]]></bnd> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<groupId>biz.aQute.bnd</groupId> |
|
<artifactId>bnd-baseline-maven-plugin</artifactId> |
|
<configuration> |
|
<failOnMissing>false</failOnMissing> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<id>baseline</id> |
|
<goals> |
|
<goal>baseline</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</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> |
|
<configuration> |
|
<archive> |
|
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> |
|
</archive> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>uk.org.lidalia</groupId> |
|
<artifactId>slf4j-test</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<!-- OSGi Dependencies --> |
|
<dependency> |
|
<groupId>org.osgi</groupId> |
|
<artifactId>org.osgi.annotation.versioning</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.osgi</groupId> |
|
<artifactId>org.osgi.annotation.bundle</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.osgi</groupId> |
|
<artifactId>org.osgi.service.metatype.annotations</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.osgi</groupId> |
|
<artifactId>org.osgi.service.component.annotations</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.osgi</groupId> |
|
<artifactId>org.osgi.service.component</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.osgi</groupId> |
|
<artifactId>org.osgi.service.cm</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.osgi</groupId> |
|
<artifactId>org.osgi.service.event</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.osgi</groupId> |
|
<artifactId>org.osgi.service.log</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.osgi</groupId> |
|
<artifactId>org.osgi.framework</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.osgi</groupId> |
|
<artifactId>org.osgi.resource</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.osgi</groupId> |
|
<artifactId>org.osgi.util.tracker</artifactId> |
|
</dependency> |
|
<!-- Other Dependencies --> |
|
<dependency> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>slf4j-api</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>javax.jcr</groupId> |
|
<artifactId>jcr</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>javax.servlet</groupId> |
|
<artifactId>javax.servlet-api</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>javax.annotation</groupId> |
|
<artifactId>javax.annotation-api</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.sling</groupId> |
|
<artifactId>org.apache.sling.servlets.annotations</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.adobe.aem</groupId> |
|
<artifactId>uber-jar</artifactId> |
|
<classifier>apis</classifier> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.adobe.cq</groupId> |
|
<artifactId>core.wcm.components.core</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.sling</groupId> |
|
<artifactId>org.apache.sling.models.api</artifactId> |
|
</dependency> |
|
|
|
|
|
<!-- Testing --> |
|
<dependency> |
|
<groupId>org.junit.jupiter</groupId> |
|
<artifactId>junit-jupiter</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.mockito</groupId> |
|
<artifactId>mockito-core</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.mockito</groupId> |
|
<artifactId>mockito-junit-jupiter</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>junit-addons</groupId> |
|
<artifactId>junit-addons</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>io.wcm</groupId> |
|
<artifactId>io.wcm.testing.aem-mock.junit5</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.apache.sling</groupId> |
|
<artifactId>org.apache.sling.testing.caconfig-mock-plugin</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>com.adobe.cq</groupId> |
|
<artifactId>core.wcm.components.testing.aem-mock-plugin</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
<!-- Required to be able to support injection with @Self and @Via --> |
|
<dependency> |
|
<groupId>org.apache.sling</groupId> |
|
<artifactId>org.apache.sling.models.impl</artifactId> |
|
<version>1.4.4</version> |
|
<scope>test</scope> |
|
</dependency> |
|
</dependencies> |
|
</project>
|
|
|