blob: 1cdb4e206bc9c3cafd295671fbe4df0e6c020c42 [file] [log] [blame]
Guillaume Nodetfcc5f322009-09-02 07:19:55 +00001<?xml version="1.0"?>
Guillaume Nodet2dc205f2009-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 Nodetd7019d02009-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 Nodete5d66652009-06-22 22:27:13 +000021 <parent>
Guillaume Nodet2dc205f2009-06-22 22:07:09 +000022 <groupId>org.apache.felix</groupId>
Guillaume Nodete5d66652009-06-22 22:27:13 +000023 <artifactId>felix-parent</artifactId>
Guillaume Nodet20513852010-04-29 18:27:53 +000024 <version>1.2.1</version>
Guillaume Nodete5d66652009-06-22 22:27:13 +000025 <relativePath>../pom/pom.xml</relativePath>
26 </parent>
27 <modelVersion>4.0.0</modelVersion>
Guillaume Nodet5eb2d4e2009-06-30 20:52:04 +000028 <packaging>pom</packaging>
Derek Baum99446702010-05-13 17:32:34 +000029 <name>Apache Felix Gogo</name>
Richard S. Hall17f23022010-05-24 19:03:10 +000030 <description>Apache Felix Gogo Subproject</description>
31 <artifactId>gogo-parent</artifactId>
Guillaume Nodet87a12382010-04-29 18:34:05 +000032 <version>0.5.0-SNAPSHOT</version>
Guillaume Nodet5eb2d4e2009-06-30 20:52:04 +000033
34 <modules>
Richard S. Halld6b04432009-07-03 21:05:34 +000035 <module>runtime</module>
Derek Baumee1898e2010-05-13 23:08:59 +000036 <module>shell</module>
Richard S. Hall17f23022010-05-24 19:03:10 +000037 <module>command</module>
Guillaume Nodet5eb2d4e2009-06-30 20:52:04 +000038 </modules>
39
40 <dependencyManagement>
41 <dependencies>
42 <dependency>
Guillaume Nodet5eb2d4e2009-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 Nodet5eb2d4e2009-06-30 20:52:04 +000048 </dependencies>
49 </dependencyManagement>
50
Guillaume Nodete5d66652009-06-22 22:27:13 +000051 <build>
Guillaume Nodetcca03b42009-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 Nodetcca03b42009-09-02 06:46:25 +000057 <configuration>
58 <autoVersionSubmodules>true</autoVersionSubmodules>
Guillaume Nodeta47ff572009-09-02 07:27:33 +000059 <preparationGoals>clean verify install</preparationGoals>
Guillaume Nodetcca03b42009-09-02 06:46:25 +000060 </configuration>
61 </plugin>
Guillaume Nodet66af9af2009-09-02 08:16:16 +000062 <plugin>
63 <groupId>org.apache.felix</groupId>
64 <artifactId>maven-bundle-plugin</artifactId>
Guillaume Nodet71f91c42009-09-08 20:17:16 +000065 <version>1.4.3</version>
Guillaume Nodet66af9af2009-09-02 08:16:16 +000066 <extensions>true</extensions>
67 </plugin>
Guillaume Nodetcca03b42009-09-02 06:46:25 +000068 </plugins>
69 </pluginManagement>
Guillaume Nodete5d66652009-06-22 22:27:13 +000070 <plugins>
71 <plugin>
Guillaume Nodete5d66652009-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 Nodet2f5f0ea2009-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 Nodete5d66652009-06-22 22:27:13 +000099 </plugins>
100 </build>
Guillaume Nodetfcc5f322009-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 Nodet2dc205f2009-06-22 22:07:09 +0000163</project>