| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| ~ Licensed to the Apache Software Foundation (ASF) under one |
| ~ or more contributor license agreements. See the NOTICE file |
| ~ distributed with this work for additional information |
| ~ regarding copyright ownership. The ASF licenses this file |
| ~ to you under the Apache License, Version 2.0 (the |
| ~ "License"); you may not use this file except in compliance |
| ~ with the License. You may obtain a copy of the License at |
| ~ |
| ~ http://www.apache.org/licenses/LICENSE-2.0 |
| ~ |
| ~ Unless required by applicable law or agreed to in writing, |
| ~ software distributed under the License is distributed on an |
| ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| ~ KIND, either express or implied. See the License for the |
| ~ specific language governing permissions and limitations |
| ~ under the License. |
| --> |
| |
| <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.apache.felix</groupId> |
| <artifactId>felix-parent</artifactId> |
| <version>2.1</version> |
| <relativePath>../../../../pom/pom.xml</relativePath> |
| </parent> |
| |
| |
| <packaging>pom</packaging> |
| |
| <name>Apache Felix iPOJO - Distribution - Quickstart</name> |
| <artifactId>org.apache.felix.ipojo.distribution.quickstart</artifactId> |
| <version>1.11.1-SNAPSHOT</version> |
| |
| <properties> |
| <!-- Felix version --> |
| <felix.version>4.2.1</felix.version> |
| |
| <!-- The location where the felix distribution is downloaded and expanded --> |
| <felix.destination>${project.build.directory}/felix-distribution</felix.destination> |
| |
| <!-- The location where the legal files are generated --> |
| <legal.files>${project.build.directory}/maven-shared-archive-resources/META-INF</legal.files> |
| |
| <!-- The base directory of the distribution --> |
| <distribution.baseDirectory>ipojo-distribution-${project.version}</distribution.baseDirectory> |
| </properties> |
| |
| <description> |
| A distribution of Felix including iPOJO core and gogo commands |
| </description> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>org.apache.felix.main.distribution</artifactId> |
| <version>${felix.version}</version> |
| <type>zip</type> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>org.apache.felix.ipojo</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>org.apache.felix.ipojo.gogo</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <plugins> |
| <!-- |
| The build is configured to download and unpack the felix distribution to the felix-distribution folder. |
| The assembly copy the unpacked file, stripping the base directory of the distribution |
| --> |
| |
| <plugin> |
| <artifactId>maven-dependency-plugin</artifactId> |
| <version>2.8</version> |
| <executions> |
| <execution> |
| <id>copy-felix-distribution</id> |
| <phase>package</phase> |
| <goals> |
| <goal>unpack-dependencies</goal> |
| </goals> |
| <configuration> |
| <includeGroupIds>org.apache.felix</includeGroupIds> |
| <includeTypes>zip</includeTypes> |
| <includeArtifactIds>org.apache.felix.main.distribution</includeArtifactIds> |
| <outputDirectory>${felix.destination}</outputDirectory> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <plugin> |
| <artifactId>maven-assembly-plugin</artifactId> |
| <version>2.4</version> |
| <configuration> |
| <attach>true</attach> |
| </configuration> |
| <executions> |
| <execution> |
| <id>build-distribution</id> |
| <goals> |
| <goal>single</goal> |
| </goals> |
| <phase>package</phase> |
| <configuration> |
| <descriptors> |
| <descriptor>src/main/assembly/distribution.xml</descriptor> |
| </descriptors> |
| |
| <appendAssemblyId>false</appendAssemblyId> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>ianal-maven-plugin</artifactId> |
| <executions> |
| <execution> |
| <goals> |
| <goal>verify-legal-files</goal> |
| </goals> |
| <configuration> |
| <searchPaths> |
| <searchPath>${distribution.baseDirectory}</searchPath> |
| </searchPaths> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |