harbor-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.icfolson.aem.harbor</groupId>
<artifactId>harbor-api</artifactId>
<version>5.0.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<groupId>com.icfolson.aem.harbor</groupId>
<artifactId>harbor</artifactId>
<version>5.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>harbor-api</artifactId>
<packaging>bundle</packaging>
<name>Harbor API</name>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
<Bundle-Name>${project.name}</Bundle-Name>
<Bundle-Vendor>${project.parent.organization.name}</Bundle-Vendor>
<Export-Package>!*.impl,com.icfolson.aem.harbor.api.*</Export-Package>
<Import-Package>!com.citytechinc.aem.component.*,!javassist</Import-Package>
<Require-Bundle>org.apache.sling.models.api</Require-Bundle>
<Sling-Model-Packages>com.icfolson.aem.harbor.api</Sling-Model-Packages>
<DynamicImport-Package>*</DynamicImport-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.adobe.aem</groupId>
<artifactId>uber-jar</artifactId>
<classifier>apis</classifier>
</dependency>
<!-- AEM Library -->
<dependency>
<groupId>com.icfolson.aem.library</groupId>
<artifactId>aem-library-api</artifactId>
</dependency>
<dependency>
<groupId>com.icfolson.aem.library</groupId>
<artifactId>aem-library-core</artifactId>
</dependency>
<!-- AEM Namespace -->
<dependency>
<groupId>com.icfolson.aem.namespace</groupId>
<artifactId>aem-namespace-extension-api</artifactId>
</dependency>
</dependencies>
</project>