aboutsummaryrefslogtreecommitdiffstats
path: root/container-spifly/pom.xml
blob: 536786f3134834bb9f476d06905d6f78dee2744b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?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-SNAPSHOT</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>