blob: 429d190eaceeb0d48e5b18e343d5182bc24ad16f [file] [log] [blame]
Clement Escoffier90444b22012-04-15 19:14:20 +00001<!--
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/xsd/maven-4.0.0.xsd">
20 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
Clement Escoffiered4ca022013-03-13 15:27:20 +000023 <version>2.1</version>
Clement Escoffier90444b22012-04-15 19:14:20 +000024 <relativePath>../../pom/pom.xml</relativePath>
25 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <artifactId>org.apache.felix.ipojo.runtime-project</artifactId>
Clement Escoffierd87e55b2014-12-16 13:29:36 +000028 <version>1.12.2-SNAPSHOT</version>
Clement Escoffier90444b22012-04-15 19:14:20 +000029 <name>Apache Felix iPOJO Runtime Project</name>
30 <packaging>pom</packaging>
31
32 <description>
Guillaume Sauthier8c8c7c22013-06-01 18:45:03 +000033 The iPOJO runtime project contains the core iPOJO bundle, the composite support and the api.
Clement Escoffier90444b22012-04-15 19:14:20 +000034 </description>
35
36 <modules>
Clement Escoffier081cf362013-02-26 18:48:35 +000037 <module>core</module>
Clement Escoffier2a00d9e2013-03-12 14:28:33 +000038 <module>api</module>
Clement Escoffierd3b68ee2013-06-22 13:15:49 +000039 <module>composite</module>
40 <module>core-it</module>
41 <module>composite-it</module>
Clement Escoffier54534252013-06-12 12:46:17 +000042 <module>ipojo-gogo-commands</module>
Clement Escoffier639c71a2013-10-02 16:29:35 +000043 <module>karaf-feature</module>
Clement Escoffier90444b22012-04-15 19:14:20 +000044 </modules>
45
Clement Escoffier639c71a2013-10-02 16:29:35 +000046 <profiles>
47 <profile>
48 <id>distributions</id>
49 <activation>
50 <activeByDefault>true</activeByDefault>
51 </activation>
52 <modules>
53 <module>distributions/quickstart</module>
54 <module>distributions/ten-minutes-tutorial</module>
55 <module>distributions/maven-tutorial</module>
56 </modules>
57 </profile>
58 </profiles>
59
Clement Escoffier685739a2013-05-15 13:37:15 +000060 <scm>
Clement Escoffierd87e55b2014-12-16 13:29:36 +000061 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/ipojo/runtime</connection>
62 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/ipojo/runtime</developerConnection>
63 <url>http://svn.apache.org/viewvc/felix/trunk/ipojo/runtime</url>
Clement Escoffier685739a2013-05-15 13:37:15 +000064 </scm>
65
Clement Escoffier9408bd62014-12-16 13:23:40 +000066 <build>
67 <plugins>
68 <plugin>
69 <artifactId>maven-release-plugin</artifactId>
70 <version>2.5.1</version>
71 <configuration>
72 <tagBase>https://svn.apache.org/repos/asf/felix/releases</tagBase>
73 <useReleaseProfile>false</useReleaseProfile>
74 <goals>deploy</goals>
75 <arguments>-Papache-release</arguments>
76 </configuration>
77 </plugin>
78 </plugins>
79 </build>
80
Clement Escoffier90444b22012-04-15 19:14:20 +000081</project>