Karl Pauls | c6eda45 | 2010-02-14 22:52:56 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | Licensed to the Apache Software Foundation (ASF) under one |
| 3 | or more contributor license agreements. See the NOTICE file |
| 4 | distributed with this work for additional information |
| 5 | regarding copyright ownership. The ASF licenses this file |
| 6 | to you under the Apache License, Version 2.0 (the |
| 7 | "License"); you may not use this file except in compliance |
| 8 | with the License. You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, |
| 13 | software distributed under the License is distributed on an |
| 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | KIND, either express or implied. See the License for the |
| 16 | specific language governing permissions and limitations |
| 17 | under the License. |
| 18 | --> |
| 19 | <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/maven-v4_0_0.xsd"> |
| 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
| 22 | <artifactId>felix-parent</artifactId> |
Karl Pauls | 834023d | 2011-09-22 13:08:42 +0000 | [diff] [blame] | 23 | <version>2.1</version> |
Karl Pauls | c6eda45 | 2010-02-14 22:52:56 +0000 | [diff] [blame] | 24 | <relativePath>../pom/pom.xml</relativePath> |
| 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <packaging>pom</packaging> |
| 28 | <name>Apache Felix Main Distribution</name> |
| 29 | <artifactId>org.apache.felix.main.distribution</artifactId> |
Karl Pauls | d7a9d74 | 2013-02-05 22:59:21 +0000 | [diff] [blame] | 30 | <version>4.3.0-SNAPSHOT</version> |
Karl Pauls | c6eda45 | 2010-02-14 22:52:56 +0000 | [diff] [blame] | 31 | <properties> |
Richard S. Hall | 487fef2 | 2010-12-22 19:06:38 +0000 | [diff] [blame] | 32 | <dollar>$</dollar> |
Karl Pauls | 97262fe | 2013-02-05 22:48:47 +0000 | [diff] [blame] | 33 | <framework.version>4.2.0</framework.version> |
Richard S. Hall | 0eb83c5 | 2011-08-11 16:46:31 +0000 | [diff] [blame] | 34 | <gogo.runtime.version>0.10.0</gogo.runtime.version> |
| 35 | <gogo.shell.version>0.10.0</gogo.shell.version> |
Karl Pauls | 80097fe | 2011-09-22 15:38:07 +0000 | [diff] [blame] | 36 | <gogo.command.version>0.12.0</gogo.command.version> |
Richard S. Hall | 1392d77 | 2011-09-20 19:44:18 +0000 | [diff] [blame] | 37 | <obr.version>1.6.6</obr.version> |
Karl Pauls | c6eda45 | 2010-02-14 22:52:56 +0000 | [diff] [blame] | 38 | </properties> |
Karl Pauls | 80097fe | 2011-09-22 15:38:07 +0000 | [diff] [blame] | 39 | <scm> |
Karl Pauls | d7a9d74 | 2013-02-05 22:59:21 +0000 | [diff] [blame] | 40 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/main.distribution</connection> |
| 41 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/main.distribution</developerConnection> |
| 42 | <url>http://svn.apache.org/repos/asf/felix/main.distribution</url> |
Karl Pauls | 80097fe | 2011-09-22 15:38:07 +0000 | [diff] [blame] | 43 | </scm> |
Karl Pauls | c6eda45 | 2010-02-14 22:52:56 +0000 | [diff] [blame] | 44 | <build> |
| 45 | <plugins> |
| 46 | <plugin> |
| 47 | <groupId>org.apache.maven.plugins</groupId> |
| 48 | <artifactId>maven-dependency-plugin</artifactId> |
| 49 | <executions> |
| 50 | <execution> |
| 51 | <id>copy</id> |
| 52 | <phase>generate-resources</phase> |
| 53 | <goals> |
| 54 | <goal>copy</goal> |
| 55 | </goals> |
| 56 | <configuration> |
Richard S. Hall | d6db1d0 | 2010-05-27 18:44:37 +0000 | [diff] [blame] | 57 | <artifactItems> |
| 58 | <artifactItem> |
| 59 | <groupId>${pom.groupId}</groupId> |
| 60 | <artifactId>org.apache.felix.gogo.runtime</artifactId> |
| 61 | <version>${gogo.runtime.version}</version> |
| 62 | <type>jar</type> |
| 63 | <overWrite>true</overWrite> |
| 64 | <outputDirectory>${project.basedir}/bundle</outputDirectory> |
| 65 | </artifactItem> |
| 66 | <artifactItem> |
| 67 | <groupId>${pom.groupId}</groupId> |
| 68 | <artifactId>org.apache.felix.gogo.shell</artifactId> |
| 69 | <version>${gogo.shell.version}</version> |
| 70 | <type>jar</type> |
| 71 | <overWrite>true</overWrite> |
| 72 | <outputDirectory>${project.basedir}/bundle</outputDirectory> |
| 73 | </artifactItem> |
| 74 | <artifactItem> |
| 75 | <groupId>${pom.groupId}</groupId> |
| 76 | <artifactId>org.apache.felix.gogo.command</artifactId> |
| 77 | <version>${gogo.command.version}</version> |
| 78 | <type>jar</type> |
| 79 | <overWrite>true</overWrite> |
| 80 | <outputDirectory>${project.basedir}/bundle</outputDirectory> |
| 81 | </artifactItem> |
| 82 | <artifactItem> |
| 83 | <groupId>${pom.groupId}</groupId> |
| 84 | <artifactId>org.apache.felix.bundlerepository</artifactId> |
| 85 | <version>${obr.version}</version> |
| 86 | <type>jar</type> |
| 87 | <overWrite>true</overWrite> |
| 88 | <outputDirectory>${project.basedir}/bundle</outputDirectory> |
| 89 | </artifactItem> |
| 90 | <artifactItem> |
| 91 | <groupId>${pom.groupId}</groupId> |
| 92 | <artifactId>org.apache.felix.main</artifactId> |
| 93 | <version>${framework.version}</version> |
| 94 | <type>jar</type> |
| 95 | <overWrite>true</overWrite> |
| 96 | <outputDirectory>${project.basedir}/bin</outputDirectory> |
| 97 | <destFileName>felix.jar</destFileName> |
| 98 | </artifactItem> |
| 99 | </artifactItems> |
Karl Pauls | c6eda45 | 2010-02-14 22:52:56 +0000 | [diff] [blame] | 100 | </configuration> |
| 101 | </execution> |
| 102 | </executions> |
| 103 | </plugin> |
| 104 | <plugin> |
| 105 | <artifactId>maven-assembly-plugin</artifactId> |
| 106 | <executions> |
| 107 | <execution> |
| 108 | <id>assemble</id> |
| 109 | <phase>package</phase> |
| 110 | <goals> |
| 111 | <goal>single</goal> |
| 112 | </goals> |
| 113 | <configuration> |
| 114 | <descriptors> |
| 115 | <descriptor>assembly.xml</descriptor> |
| 116 | </descriptors> |
| 117 | <appendAssemblyId>false</appendAssemblyId> |
| 118 | <finalName>felix-framework-${framework.version}</finalName> |
| 119 | </configuration> |
| 120 | </execution> |
| 121 | </executions> |
| 122 | </plugin> |
Karl Pauls | 834023d | 2011-09-22 13:08:42 +0000 | [diff] [blame] | 123 | <plugin> |
| 124 | <groupId>org.codehaus.mojo</groupId> |
| 125 | <artifactId>ianal-maven-plugin</artifactId> |
| 126 | <executions> |
| 127 | <execution> |
| 128 | <goals> |
| 129 | <goal>verify-legal-files</goal> |
| 130 | </goals> |
| 131 | <configuration> |
| 132 | <skip>true</skip> |
| 133 | </configuration> |
| 134 | </execution> |
| 135 | </executions> |
| 136 | </plugin> |
Karl Pauls | c6eda45 | 2010-02-14 22:52:56 +0000 | [diff] [blame] | 137 | </plugins> |
| 138 | <resources> |
| 139 | <resource> |
| 140 | <directory>src/main/resources</directory> |
| 141 | <filtering>true</filtering> |
| 142 | </resource> |
| 143 | </resources> |
| 144 | </build> |
Karl Pauls | c6eda45 | 2010-02-14 22:52:56 +0000 | [diff] [blame] | 145 | </project> |