Add parent pom for the Karaf static distribution 83/94783/6
authorOleksii Mozghovyi <oleksii.mozghovyi@pantheon.tech>
Sun, 24 Jan 2021 23:34:59 +0000 (01:34 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Tue, 9 Feb 2021 04:30:35 +0000 (05:30 +0100)
Karaf provides two flavors of distribution. While karaf4-parent
deals with the dynamic distribution, we need separate support
for the static distribution.

JIRA: ODLPARENT-251
Change-Id: I03a6024405ca4dc5ba673c9ac27893a8ef481f04
Signed-off-by: Oleksii Mozghovyi <oleksii.mozghovyi@pantheon.tech>
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
karaf/karaf-dist-static/pom.xml [new file with mode: 0644]
karaf/pom.xml
karaf/test-static/pom.xml [new file with mode: 0644]
odlparent/pom.xml

diff --git a/karaf/karaf-dist-static/pom.xml b/karaf/karaf-dist-static/pom.xml
new file mode 100644 (file)
index 0000000..e3556ac
--- /dev/null
@@ -0,0 +1,280 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ Copyright (c) 2020 PANTHEON.tech, s.r.o. and others.  All rights reserved.
+
+ This program and the accompanying materials are made available under the
+ terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ and is available at http://www.eclipse.org/legal/epl-v10.html
+-->
+<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>
+
+    <parent>
+        <groupId>org.opendaylight.odlparent</groupId>
+        <artifactId>odlparent</artifactId>
+        <version>8.1.1-SNAPSHOT</version>
+        <relativePath>../../odlparent</relativePath>
+    </parent>
+
+    <artifactId>karaf-dist-static</artifactId>
+    <version>8.1.1-SNAPSHOT</version>
+    <packaging>pom</packaging>
+    <name>ODL :: odlparent :: ${project.artifactId}</name>
+    <description>
+        Baseline parent pom.xml for artifacts packaging a static Karaf distribution.
+    </description>
+
+    <properties>
+        <karaf.archiveZip>true</karaf.archiveZip>
+        <karaf.archiveTarGz>true</karaf.archiveTarGz>
+    </properties>
+
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>org.apache.karaf.features</groupId>
+                <artifactId>static</artifactId>
+                <version>${karaf.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.karaf.features</groupId>
+                <artifactId>standard</artifactId>
+                <version>${karaf.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.karaf.features</groupId>
+                <artifactId>framework</artifactId>
+                <version>${karaf.version}</version>
+            </dependency>
+            <dependency>
+                <groupId>org.bouncycastle</groupId>
+                <artifactId>bcpkix-jdk15on</artifactId>
+            </dependency>
+            <dependency>
+                <groupId>org.bouncycastle</groupId>
+                <artifactId>bcprov-jdk15on</artifactId>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
+
+    <dependencies>
+        <!-- karaf static distribution -->
+        <dependency>
+            <groupId>org.apache.karaf.features</groupId>
+            <artifactId>static</artifactId>
+            <type>kar</type>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.karaf.features</groupId>
+            <artifactId>standard</artifactId>
+            <classifier>features</classifier>
+            <type>xml</type>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.karaf.services</groupId>
+            <artifactId>org.apache.karaf.services.staticcm</artifactId>
+        </dependency>
+
+        <dependency>
+            <groupId>org.ops4j.pax.url</groupId>
+            <artifactId>pax-url-aether</artifactId>
+            <!-- FIXME: why do we need this version (maven-3.6.3 defaults to 2.5.4) -->
+            <version>2.6.5</version>
+        </dependency>
+
+        <!-- required by controller component -->
+        <dependency>
+            <groupId>org.apache.aries.quiesce</groupId>
+            <artifactId>org.apache.aries.quiesce.api</artifactId>
+        </dependency>
+
+        <!-- for https://jira.opendaylight.org/browse/ODLPARENT-24 -->
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.service.event</artifactId>
+        </dependency>
+
+        <!-- Optional dependency of karaf.config.core -->
+        <dependency>
+            <groupId>org.apache.felix</groupId>
+            <artifactId>org.apache.felix.metatype</artifactId>
+        </dependency>
+
+        <!-- ODL Branding -->
+        <dependency>
+            <groupId>org.opendaylight.odlparent</groupId>
+            <artifactId>karaf.branding</artifactId>
+        </dependency>
+
+        <!-- ODL configuration -->
+        <dependency>
+            <groupId>org.opendaylight.odlparent</groupId>
+            <artifactId>opendaylight-karaf-resources</artifactId>
+        </dependency>
+
+        <!-- BouncyCastle Framework Extension Bundles -->
+        <dependency>
+            <groupId>org.opendaylight.odlparent</groupId>
+            <artifactId>bcpkix-framework-ext</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.opendaylight.odlparent</groupId>
+            <artifactId>bcprov-framework-ext</artifactId>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <artifactId>maven-remote-resources-plugin</artifactId>
+                <configuration>
+                    <skip>true</skip>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-dependency-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>apply-branding</id>
+                        <goals>
+                            <goal>copy</goal>
+                        </goals>
+                        <phase>prepare-package</phase>
+                        <configuration>
+                            <artifactItems>
+                                <artifactItem>
+                                    <groupId>org.opendaylight.odlparent</groupId>
+                                    <artifactId>karaf.branding</artifactId>
+                                    <version>8.1.1-SNAPSHOT</version>
+                                    <outputDirectory>target/assembly/lib</outputDirectory>
+                                    <destFileName>karaf.branding-8.1.1-SNAPSHOT.jar</destFileName>
+                                </artifactItem>
+                            </artifactItems>
+                            <silent>true</silent>
+                        </configuration>
+                    </execution>
+                    <execution>
+                        <id>unpack-karaf-resources</id>
+                        <goals>
+                            <goal>unpack-dependencies</goal>
+                        </goals>
+                        <phase>prepare-package</phase>
+                        <configuration>
+                            <outputDirectory>${project.build.directory}/assembly</outputDirectory>
+                            <groupId>org.opendaylight.odlparent</groupId>
+                            <includeArtifactIds>opendaylight-karaf-resources</includeArtifactIds>
+                            <!-- Let maven plugin to configure start.properties  -->
+                            <!-- Don't apply monkey patches to artifacsts in the system repository  -->
+                            <excludes>META-INF/**,system/**,etc/startup.properties</excludes>-->
+                            <excludeTransitive>true</excludeTransitive>
+                            <ignorePermissions>false</ignorePermissions>
+                            <silent>true</silent>
+                        </configuration>
+                    </execution>
+                    <execution>
+                        <id>org.ops4j.pax.url.mvn.cfg</id>
+                        <goals>
+                            <goal>copy</goal>
+                        </goals>
+                        <phase>prepare-package</phase>
+                        <configuration>
+                            <artifactItems>
+                                <artifactItem>
+                                    <groupId>org.opendaylight.odlparent</groupId>
+                                    <artifactId>opendaylight-karaf-resources</artifactId>
+                                    <type>properties</type>
+                                    <classifier>config</classifier>
+                                    <overWrite>true</overWrite>
+                                    <outputDirectory>${project.build.directory}/assembly/etc/</outputDirectory>
+                                    <destFileName>org.ops4j.pax.url.mvn.cfg</destFileName>
+                                </artifactItem>
+                            </artifactItems>
+                            <overWriteReleases>true</overWriteReleases>
+                            <overWriteSnapshots>true</overWriteSnapshots>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <artifactId>maven-antrun-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <id>fix-permissions</id>
+                        <phase>prepare-package</phase>
+                        <goals>
+                            <goal>run</goal>
+                        </goals>
+                        <configuration>
+                            <target>
+                                <chmod perm="755">
+                                    <fileset dir="${project.build.directory}/assembly/bin">
+                                        <!-- Ensure that all the shell scripts are executable -->
+                                        <exclude name="*.bat"/>
+                                        <exclude name="contrib/*"/>
+                                    </fileset>
+                                </chmod>
+                            </target>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.karaf.tooling</groupId>
+                <artifactId>karaf-maven-plugin</artifactId>
+                <version>${karaf.version}</version>
+                <extensions>true</extensions>
+                <executions>
+                    <execution>
+                        <id>process-resources</id>
+                        <phase>process-resources</phase>
+                        <goals>
+                            <goal>assembly</goal>
+                        </goals>
+                    </execution>
+                    <execution>
+                        <id>package</id>
+                        <goals>
+                            <goal>archive</goal>
+                        </goals>
+                    </execution>
+                </executions>
+                <configuration>
+                    <startupBundles>
+                        <!-- FIXME: we want to generate these versions somehow -->
+                        <bundle>mvn:org.apache.felix/org.apache.felix.cm.json/1.0.2</bundle>
+                        <bundle>mvn:org.apache.felix/org.apache.felix.converter/1.0.14</bundle>
+                        <bundle>mvn:org.apache.felix/org.apache.felix.fileinstall/3.6.8</bundle>
+                        <bundle>mvn:org.apache.sling/org.apache.sling.commons.johnzon/1.2.6</bundle>
+                        <bundle>mvn:org.ops4j.pax.url/pax-url-aether/2.6.5</bundle>
+
+                        <bundle>mvn:org.opendaylight.odlparent/bcprov-framework-ext/8.1.1-SNAPSHOT</bundle>
+                        <bundle>mvn:org.opendaylight.odlparent/bcpkix-framework-ext/8.1.1-SNAPSHOT</bundle>
+                    </startupBundles>
+                    <startupFeatures>
+                        <feature>static-framework</feature>
+                        <feature>scr</feature>
+                        <feature>log</feature>
+                        <feature>system</feature>
+                        <!-- disable shell by default-->
+                        <!-- <feature>shell</feature>-->
+                        <feature>feature</feature>
+                        <feature>deployer</feature>
+                        <feature>wrap</feature>
+                        <feature>aries-blueprint</feature>
+                        <feature>eventadmin</feature>
+                    </startupFeatures>
+                    <writeProfiles>true</writeProfiles>
+                    <framework>static</framework>
+                    <useReferenceUrls>true</useReferenceUrls>
+                    <environment>static</environment>
+                    <javase>${maven.compiler.release}</javase>
+                    <archiveTarGz>${karaf.archiveTarGz}</archiveTarGz>
+                    <archiveZip>${karaf.archiveZip}</archiveZip>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>
index 697545b7f048798ce2e06fa9ab2a5a6e0fd8cf04..bace70efe7e1cf76d7e91046dfa7f767c6f20db2 100644 (file)
@@ -29,9 +29,11 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
         <module>bcpkix-framework-ext</module>
         <module>bcprov-framework-ext</module>
         <module>karaf-branding</module>
+        <module>karaf-dist-static</module>
         <module>karaf4-parent</module>
         <module>opendaylight-karaf-resources</module>
         <module>opendaylight-karaf-empty</module>
         <module>test-distribution</module>
+        <module>test-static</module>
     </modules>
 </project>
diff --git a/karaf/test-static/pom.xml b/karaf/test-static/pom.xml
new file mode 100644 (file)
index 0000000..9b7f3ed
--- /dev/null
@@ -0,0 +1,50 @@
+<?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>
+
+    <parent>
+        <groupId>org.opendaylight.odlparent</groupId>
+        <artifactId>karaf-dist-static</artifactId>
+        <version>8.1.1-SNAPSHOT</version>
+        <relativePath>../karaf-dist-static</relativePath>
+    </parent>
+
+    <artifactId>test-static</artifactId>
+    <packaging>pom</packaging>
+
+    <dependencies>
+        <!-- Project local features -->
+        <dependency>
+            <groupId>org.opendaylight.odlparent</groupId>
+            <artifactId>features-odlparent</artifactId>
+            <type>xml</type>
+            <classifier>features</classifier>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.karaf.tooling</groupId>
+                <artifactId>karaf-maven-plugin</artifactId>
+                <configuration>
+                    <startupFeatures combine.children="append">
+                        <startupFeature>http-whiteboard</startupFeature>
+                        <startupFeature>shell</startupFeature>
+
+                        <startupFeature>odl-dropwizard-metrics</startupFeature>
+                        <startupFeature>odl-gson</startupFeature>
+                        <startupFeature>odl-guava</startupFeature>
+                        <startupFeature>odl-jackson-2.11</startupFeature>
+                        <startupFeature>odl-jakarta-activation-api</startupFeature>
+                        <startupFeature>odl-jetty-2</startupFeature>
+                        <!-- FIXME: needs https://issues.apache.org/jira/browse/KARAF-6573
+                        <startupFeature>odl-jung-2.1</startupFeature-->
+                        <startupFeature>odl-lmax-3</startupFeature>
+                        <startupFeature>odl-netty-4</startupFeature>
+                    </startupFeatures>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>
index 99851ee38ef4437de10fc85d4f440c99d579561a..b52f52e3456481cd59bbeac1abcc78683f673e37 100644 (file)
           <groupId>org.apache.karaf.tooling</groupId>
           <artifactId>karaf-maven-plugin</artifactId>
           <version>${karaf.version}</version>
+          <extensions>true</extensions>
         </plugin>
 
         <plugin>