| <?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> |
| </parent> |
| |
| |
| <packaging>pom</packaging> |
| |
| <name>Apache Felix iPOJO - Distribution - Maven Tutorial</name> |
| <artifactId>org.apache.felix.ipojo.distribution.maventutorial</artifactId> |
| <version>1.11.2</version> |
| |
| |
| <description>This project builds the iPOJO Maven tutorial package</description> |
| |
| |
| <build> |
| <plugins> |
| <!-- |
| The build is configured to filter the skeleton and generate a distribution out of it. |
| --> |
| |
| <plugin> |
| <artifactId>maven-resources-plugin</artifactId> |
| <version>2.6</version> |
| <executions> |
| <execution> |
| <goals> |
| <goal>copy-resources</goal> |
| </goals> |
| <phase>compile</phase> |
| <id>copy-skeleton</id> |
| <configuration> |
| <outputDirectory>${project.build.directory}/maven-tutorial</outputDirectory> |
| <delimiters> |
| <!-- we use a specific delimiter to avoid filtering internal properties --> |
| <delimiter>@</delimiter> |
| </delimiters> |
| <escapeString>\</escapeString> |
| <resources> |
| <resource> |
| <directory>src/main/skeleton</directory> |
| <filtering>true</filtering> |
| </resource> |
| </resources> |
| </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> |
| </plugins> |
| </build> |
| |
| <scm> |
| <connection>scm:svn:http://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.runtime-project-1.11.2/felix-parent-2.1/org.apache.felix.ipojo.distribution.maventutorial</connection> |
| <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.runtime-project-1.11.2/felix-parent-2.1/org.apache.felix.ipojo.distribution.maventutorial</developerConnection> |
| <url>http://svn.apache.org/viewvc/felix/releases/?root=Apache-SVN/org.apache.felix.ipojo.runtime-project-1.11.2/felix-parent-2.1/org.apache.felix.ipojo.distribution.maventutorial</url> |
| </scm> |
| </project> |