composum-nodes-debugutil-bundle
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.composum.nodes</groupId> <artifactId>composum-nodes-debugutil-bundle</artifactId> <version>4.2.2</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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.composum.nodes</groupId> <artifactId>composum-nodes</artifactId> <version>4.2.2</version> <relativePath>../../pom.xml</relativePath> </parent> <artifactId>composum-nodes-debugutil-bundle</artifactId> <packaging>bundle</packaging> <name>Composum Nodes Debug Util Bundle</name> <description>Various utilities for debugging during development on Composum or AEM, independent from Composum </description> <properties> <bundle.name>com.composum.nodes.debugutil</bundle.name> </properties> <build> <plugins> <plugin> <groupId>pl.project13.maven</groupId> <artifactId>git-commit-id-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.sling</groupId> <artifactId>sling-maven-plugin</artifactId> <executions> <execution> <id>generate-adapter-metadata</id> <phase>process-classes</phase> <goals> <goal>generate-adapter-metadata</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <exportScr>true</exportScr> <instructions> <_dsannotations>*</_dsannotations> <_metatypeannotations>*</_metatypeannotations> <Bundle-Category>${bundle.category}</Bundle-Category> <Bundle-SymbolicName>${bundle.name}</Bundle-SymbolicName> </instructions> </configuration> </plugin> <plugin> <groupId>org.apache.sling</groupId> <artifactId>slingfeature-maven-plugin</artifactId> <extensions>true</extensions> <configuration> <jarStartOrder>20</jarStartOrder> </configuration> <executions> <execution> <id>features</id> <phase>package</phase> <goals> <goal>include-artifact</goal> <goal>attach-features</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <!-- OSGi, Felix --> <dependency> <groupId>org.osgi</groupId> <artifactId>org.osgi.core</artifactId> </dependency> <dependency> <groupId>org.osgi</groupId> <artifactId>osgi.cmpn</artifactId> </dependency> <!-- JCR API, Jackrabbit --> <dependency> <groupId>javax.jcr</groupId> <artifactId>jcr</artifactId> </dependency> <dependency> <groupId>org.apache.jackrabbit.vault</groupId> <artifactId>org.apache.jackrabbit.vault</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> </dependency> <!-- Apache Sling --> <dependency> <groupId>org.apache.sling</groupId> <artifactId>org.apache.sling.api</artifactId> </dependency> <!-- Apache Commons --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <!-- Logging --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> </dependencies> <profiles> <profile> <!-- install bundles via Sling installer (REST API: /system/console/install) --> <id>installBundle</id> <activation> <property> <name>install.bundle</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.sling</groupId> <artifactId>sling-maven-plugin</artifactId> <executions> <execution> <id>install-bundle</id> <phase>install</phase> <goals> <goal>install</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <!-- install bundles via upload (WebDAV) to 'install' path (/libs/composum/nodes/install) --> <id>uploadBundle</id> <activation> <property> <name>upload.bundle</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <groupId>org.apache.sling</groupId> <artifactId>sling-maven-plugin</artifactId> <executions> <execution> <id>upload-bundle</id> <phase>install</phase> <goals> <goal>install</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>