blob: 1cdb4e206bc9c3cafd295671fbe4df0e6c020c42 [file] [log] [blame]
Guillaume Nodet5a60ee92009-09-02 07:19:55 +00001<?xml version="1.0"?>
Guillaume Nodet04a56372009-06-22 22:07:09 +00002<!--
3 Licensed to the Apache Software Foundation (ASF) under one
4 or more contributor license agreements. See the NOTICE file
5 distributed with this work for additional information
6 regarding copyright ownership. The ASF licenses this file
7 to you under the Apache License, Version 2.0 (the
8 "License"); you may not use this file except in compliance
9 with the License. You may obtain a copy of the License at
10
11 http://www.apache.org/licenses/LICENSE-2.0
12
13 Unless required by applicable law or agreed to in writing,
14 software distributed under the License is distributed on an
15 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 KIND, either express or implied. See the License for the
17 specific language governing permissions and limitations
18 under the License.
19-->
Guillaume Nodetcf6fe212009-09-08 20:19:54 +000020<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">
Guillaume Nodetc35dd9e2009-06-22 22:27:13 +000021 <parent>
Guillaume Nodet04a56372009-06-22 22:07:09 +000022 <groupId>org.apache.felix</groupId>
Guillaume Nodetc35dd9e2009-06-22 22:27:13 +000023 <artifactId>felix-parent</artifactId>
Guillaume Nodet6d269832010-04-29 18:27:53 +000024 <version>1.2.1</version>
Guillaume Nodetc35dd9e2009-06-22 22:27:13 +000025 <relativePath>../pom/pom.xml</relativePath>
26 </parent>
27 <modelVersion>4.0.0</modelVersion>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000028 <packaging>pom</packaging>
Derek Baumbd5b6082010-05-13 17:32:34 +000029 <name>Apache Felix Gogo</name>
Richard S. Halldf4169f2010-05-24 19:03:10 +000030 <description>Apache Felix Gogo Subproject</description>
31 <artifactId>gogo-parent</artifactId>
Guillaume Nodetaa83cca2010-04-29 18:34:05 +000032 <version>0.5.0-SNAPSHOT</version>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000033
34 <modules>
Richard S. Hallc1d2d3f2009-07-03 21:05:34 +000035 <module>runtime</module>
Derek Baum54c9dc82010-05-13 23:08:59 +000036 <module>shell</module>
Richard S. Halldf4169f2010-05-24 19:03:10 +000037 <module>command</module>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000038 </modules>
39
40 <dependencyManagement>
41 <dependencies>
42 <dependency>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000043 <groupId>junit</groupId>
44 <artifactId>junit</artifactId>
45 <version>4.5</version>
46 <scope>test</scope>
47 </dependency>
Guillaume Nodet907d4b12009-06-30 20:52:04 +000048 </dependencies>
49 </dependencyManagement>
50
Guillaume Nodetc35dd9e2009-06-22 22:27:13 +000051 <build>
Guillaume Nodet46c90a92009-09-02 06:46:25 +000052 <pluginManagement>
53 <plugins>
54 <plugin>
55 <groupId>org.apache.maven.plugins</groupId>
56 <artifactId>maven-release-plugin</artifactId>
Guillaume Nodet46c90a92009-09-02 06:46:25 +000057 <configuration>
58 <autoVersionSubmodules>true</autoVersionSubmodules>
Guillaume Nodet060f32b2009-09-02 07:27:33 +000059 <preparationGoals>clean verify install</preparationGoals>
Guillaume Nodet46c90a92009-09-02 06:46:25 +000060 </configuration>
61 </plugin>
Guillaume Nodetc070c8b2009-09-02 08:16:16 +000062 <plugin>
63 <groupId>org.apache.felix</groupId>
64 <artifactId>maven-bundle-plugin</artifactId>
Guillaume Nodetdc3b4522009-09-08 20:17:16 +000065 <version>1.4.3</version>
Guillaume Nodetc070c8b2009-09-02 08:16:16 +000066 <extensions>true</extensions>
67 </plugin>
Guillaume Nodet46c90a92009-09-02 06:46:25 +000068 </plugins>
69 </pluginManagement>
Guillaume Nodetc35dd9e2009-06-22 22:27:13 +000070 <plugins>
71 <plugin>
Guillaume Nodetc35dd9e2009-06-22 22:27:13 +000072 <artifactId>maven-compiler-plugin</artifactId>
73 <configuration>
74 <source>1.5</source>
75 <target>1.5</target>
76 </configuration>
77 </plugin>
Guillaume Nodetc9b3eb32009-09-02 07:56:07 +000078 <plugin>
79 <artifactId>maven-remote-resources-plugin</artifactId>
80 <version>1.0</version>
81 <executions>
82 <execution>
83 <goals>
84 <goal>process</goal>
85 </goals>
86 <configuration>
87 <resourceBundles>
88 <resourceBundle>org.apache:apache-jar-resource-bundle:1.4</resourceBundle>
89 </resourceBundles>
90 <properties>
91 <addLicense>true</addLicense>
92 <addArtifact>true</addArtifact>
93 <projectName>Apache Felix</projectName>
94 </properties>
95 </configuration>
96 </execution>
97 </executions>
98 </plugin>
Guillaume Nodetc35dd9e2009-06-22 22:27:13 +000099 </plugins>
100 </build>
Guillaume Nodet5a60ee92009-09-02 07:19:55 +0000101
102 <profiles>
103 <profile>
104 <id>release</id>
105 <build>
106 <plugins>
107 <plugin>
108 <groupId>org.apache.maven.plugins</groupId>
109 <artifactId>maven-assembly-plugin</artifactId>
110 <inherited>false</inherited>
111 <configuration>
112 <descriptorRefs>
113 <descriptorRef>project</descriptorRef>
114 </descriptorRefs>
115 </configuration>
116 <executions>
117 <execution>
118 <id>make-assembly</id>
119 <phase>package</phase>
120 <goals>
121 <goal>single</goal>
122 </goals>
123 <configuration>
124 <!-- we don't want to attach all the assemblies, such as bz2 -->
125 <attach>false</attach>
126 </configuration>
127 </execution>
128 </executions>
129 </plugin>
130 <plugin>
131 <!-- only attach the project and bin assemblies, in tar.gz and zip flavors -->
132 <groupId>org.codehaus.mojo</groupId>
133 <artifactId>build-helper-maven-plugin</artifactId>
134 <inherited>false</inherited>
135 <executions>
136 <execution>
137 <id>attach-assemblies</id>
138 <phase>package</phase>
139 <goals>
140 <goal>attach-artifact</goal>
141 </goals>
142 <configuration>
143 <artifacts>
144 <artifact>
145 <file>${project.build.directory}/${project.artifactId}-${project.version}-project.tar.gz</file>
146 <classifier>project</classifier>
147 <type>tar.gz</type>
148 </artifact>
149 <artifact>
150 <file>${project.build.directory}/${project.artifactId}-${project.version}-project.zip</file>
151 <classifier>project</classifier>
152 <type>zip</type>
153 </artifact>
154 </artifacts>
155 </configuration>
156 </execution>
157 </executions>
158 </plugin>
159 </plugins>
160 </build>
161 </profile>
162 </profiles>
Guillaume Nodet04a56372009-06-22 22:07:09 +0000163</project>