osgi-wrappers
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.emtee</groupId> <artifactId>osgi-wrappers</artifactId> <version>0.0.1</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>net.emtee</groupId> <artifactId>osgi-wrappers</artifactId> <version>0.0.1</version> <packaging>pom</packaging> <name>Parent for OSGI Bundle wrappers</name> <description>Multi-module project for wraping non-OSGI Java libraries with maven-bundle-plugin</description> <url>https://github.com/matt-trem/osgi-wrappers</url> <modules> <module>sentry</module> </modules> <scm> <connection>scm:git:git@github.com:matt-trem/osgi-wrappers.git</connection> <developerConnection>scm:git:ssh://github.com:matt-trem/osgi-wrappers.git</developerConnection> <url>https://github.com/matt-trem/osgi-wrappers/tree/main</url> </scm> <developers> <developer> <name>Matthieu Tremblay</name> <url>http://github.com/matt-trem</url> </developer> </developers> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <properties> <aem.host>http://localhost</aem.host> <aem.port>4502</aem.port> </properties> <build> <pluginManagement> <plugins> <!-- Maven Bundle Plugin --> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>5.1.8</version> </plugin> <!-- Sling Maven Plugin --> <plugin> <groupId>org.apache.sling</groupId> <artifactId>sling-maven-plugin</artifactId> <version>2.4.0</version> <configuration> <slingUrl>${aem.host}:${aem.port}/system/console</slingUrl> <deploymentMethod>WebConsole</deploymentMethod> </configuration> </plugin> </plugins> </pluginManagement> </build> <profiles> <!-- Development profile: install only the bundle --> <profile> <id>autoInstallBundle</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.sling</groupId> <artifactId>sling-maven-plugin</artifactId> <executions> <execution> <id>install-bundle</id> <goals> <goal>install</goal> </goals> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> </profile> <profile> <id>ci-cd</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <!-- Prevent gpg from using pinentry programs. Fixes: gpg: signing failed: Inappropriate ioctl for device --> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> </project>