pa.container-spifly.8.301.19.source-code.pom.xml Maven / Gradle / Ivy
<?xml version="1.0"?> <!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. --> <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> <artifactId>container-spifly</artifactId> <packaging>jar</packaging> <parent> <groupId>com.yahoo.vespa</groupId> <artifactId>parent</artifactId> <version>8.301.19</version> <relativePath>../parent/pom.xml</relativePath> </parent> <properties> <relocation-pkg-prefix>com.yahoo.vespa.spifly.repackaged</relocation-pkg-prefix> </properties> <dependencies> <!-- Required for ServiceLoader to function in OSGi environment. ServiceLoader is used by Jetty --> <dependency> <groupId>org.apache.aries.spifly</groupId> <artifactId>org.apache.aries.spifly.dynamic.bundle</artifactId> <scope>compile</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <minimizeJar>false</minimizeJar> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>module-info.class</exclude> <exclude>META-INF/*</exclude> </excludes> </filter> </filters> <relocations> <relocation> <pattern>org.apache.aries.spifly</pattern> <shadedPattern>${relocation-pkg-prefix}.spifly</shadedPattern> </relocation> <relocation> <pattern>aQute</pattern> <shadedPattern>${relocation-pkg-prefix}.aQute</shadedPattern> </relocation> <relocation> <pattern>org.objectweb.asm</pattern> <shadedPattern>${relocation-pkg-prefix}.asm</shadedPattern> </relocation> </relocations> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> <manifestEntries> <Bundle-Name>container-spifly</Bundle-Name> <Bundle-SymbolicName>container-spifly</Bundle-SymbolicName> <Bundle-Version>${spifly.vespa.version}</Bundle-Version> <Export-Package> ${relocation-pkg-prefix}.spifly;version="${spifly.vespa.version}", ${relocation-pkg-prefix}.spifly.dynamic;version="${spifly.vespa.version}", ${relocation-pkg-prefix}.spifly.weaver;version="${spifly.vespa.version}" </Export-Package> <Import-Package> org.osgi.framework;version="[1.7,2)", org.osgi.framework.hooks.weaving;version="[1.0,2)", org.osgi.framework.wiring;version="[1.1,2)", org.osgi.util.tracker;version="[1.5,2)" </Import-Package> <Require-Capability>osgi.ee</Require-Capability> <Provide-Capability> osgi.extender;osgi.extender="osgi.serviceloader.registrar";version:Version="1.0", osgi.extender;osgi.extender="osgi.serviceloader.processor";version:Version="1.0";uses:="${relocation-pkg-prefix}.spifly" </Provide-Capability> <Bundle-Activator> ${relocation-pkg-prefix}.spifly.dynamic.DynamicWeavingActivator </Bundle-Activator> </manifestEntries> </transformer> </transformers> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy