blob: 2f71b7a632cb60132821a8de86abdf3bca4c254f [file] [log] [blame]
Clement Escoffier9e935de2008-10-14 10:52:53 +00001<!--
Clement Escoffierbfa74d02009-07-19 16:25:18 +00002 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
Clement Escoffier0b93f382009-07-03 13:16:24 +00009
Clement Escoffierbfa74d02009-07-19 16:25:18 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffier0b93f382009-07-03 13:16:24 +000011
Clement Escoffierbfa74d02009-07-19 16:25:18 +000012 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.
Clement Escoffier9e935de2008-10-14 10:52:53 +000018-->
Clement Escoffier3beb6042012-04-21 16:06:23 +000019<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">
Clement Escoffier2f1e9482012-04-21 16:04:33 +000020 <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 Escoffier2f1e9482012-04-21 16:04:33 +000024 <relativePath>../../../pom/pom.xml</relativePath>
25 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
28 <name>Apache Felix iPOJO Composite</name>
29 <artifactId>org.apache.felix.ipojo.composite</artifactId>
Clement Escoffier27df38e2012-12-18 09:53:35 +000030 <version>1.9.0-SNAPSHOT</version>
Clement Escoffier0b93f382009-07-03 13:16:24 +000031
Clement Escoffier2f1e9482012-04-21 16:04:33 +000032 <properties>
Clement Escoffier0da375f2012-12-18 09:51:11 +000033 <ipojo.package.version>1.8.4</ipojo.package.version>
Clement Escoffier2f1e9482012-04-21 16:04:33 +000034 </properties>
Clement Escoffier879f0f02011-01-16 20:09:13 +000035
Clement Escoffier2f1e9482012-04-21 16:04:33 +000036 <description>
37 iPOJO Composition Model. This is an iPOJO extension to execute service composition.
38 </description>
39 <url>http://felix.apache.org/site/ipojo-composition-tutorial.html</url>
Clement Escoffier0b93f382009-07-03 13:16:24 +000040
Clement Escoffier2f1e9482012-04-21 16:04:33 +000041 <dependencies>
42 <dependency>
43 <groupId>org.osgi</groupId>
44 <artifactId>org.osgi.core</artifactId>
45 <version>4.0.0</version>
46 </dependency>
47 <dependency>
48 <groupId>org.apache.felix</groupId>
49 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
50 <!-- Same as the iPOJO core embedded manipulator -->
Clement Escoffierc8bbc372012-10-28 15:20:17 +000051 <version>1.8.6</version>
Clement Escoffier2f1e9482012-04-21 16:04:33 +000052 </dependency>
53 <dependency>
54 <groupId>org.apache.felix</groupId>
55 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier27df38e2012-12-18 09:53:35 +000056 <version>1.9.0-SNAPSHOT</version>
Clement Escoffier2f1e9482012-04-21 16:04:33 +000057 </dependency>
58 </dependencies>
59 <build>
Clement Escoffier2f1e9482012-04-21 16:04:33 +000060 <plugins>
61 <plugin>
62 <groupId>org.apache.felix</groupId>
63 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffiered4ca022013-03-13 15:27:20 +000064 <version>2.3.7</version>
Clement Escoffier2f1e9482012-04-21 16:04:33 +000065 <extensions>true</extensions>
66 <configuration>
67 <instructions>
68 <Bundle-Name>Apache Felix iPOJO Composite</Bundle-Name>
69 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
70 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
71 <Bundle-Description>iPOJO Composititon Framework
72 </Bundle-Description>
73 <Bundle-DocURL>
74 http://felix.apache.org/site/ipojo-composition-tutorial.html
75 </Bundle-DocURL>
76 <Import-Package>
77 org.apache.felix.ipojo,
78 org.apache.felix.ipojo.architecture,
79 org.apache.felix.ipojo.context,
80 org.apache.felix.ipojo.metadata,
81 org.apache.felix.ipojo.parser,
82 org.apache.felix.ipojo.util,
83 org.apache.felix.ipojo.manipulation,
84 org.osgi.framework;version=1.3,
85 !org.objectweb.asm.tree,
86 </Import-Package>
87 <Private-Package>
88 org.apache.felix.ipojo.composite.architecture,
89 org.apache.felix.ipojo.composite.service*,
90 org.apache.felix.ipojo.composite.instance,
91 org.apache.felix.ipojo.composite.util,
92 <!-- ASM (Manipulator dependencies) -->
93 org.objectweb.asm.commons,
94 org.objectweb.asm.signature,
95 org.objectweb.asm
96 </Private-Package>
97 <Export-Package>
98 org.apache.felix.ipojo.composite; version="${ipojo.package.version}"
99 </Export-Package>
Clement Escoffier2f1e9482012-04-21 16:04:33 +0000100 <IPOJO-Extension>
101 composite:org.apache.felix.ipojo.composite.CompositeFactory
102 </IPOJO-Extension>
103 <_donotcopy>(CVS|.svn|.+.bak|~.+|metadata.xml)</_donotcopy>
104 </instructions>
105 </configuration>
106 </plugin>
107 <plugin>
108 <groupId>org.apache.felix</groupId>
109 <artifactId>maven-ipojo-plugin</artifactId>
110 <version>1.8.4</version>
111 <executions>
112 <execution>
113 <goals>
114 <goal>ipojo-bundle</goal>
115 </goals>
116 <configuration>
117 <metadata>src/main/resources/metadata.xml</metadata>
118 <ignoreAnnotations>true</ignoreAnnotations>
119 </configuration>
120 </execution>
121 </executions>
122 </plugin>
123 <plugin>
124 <groupId>org.codehaus.mojo</groupId>
125 <artifactId>rat-maven-plugin</artifactId>
126 <configuration>
127 <excludeSubProjects>false</excludeSubProjects>
128 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
129 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
130 <excludes>
131 <param>doc/**/*</param>
132 <param>maven-eclipse.xml</param>
133 <param>.checkstyle</param>
134 <param>.externalToolBuilders/*</param>
135 <param>LICENSE.asm</param>
136 </excludes>
137 </configuration>
138 </plugin>
139 <plugin>
140 <groupId>org.apache.maven.plugins</groupId>
141 <artifactId>maven-checkstyle-plugin</artifactId>
142 <configuration>
143 <enableRulesSummary>false</enableRulesSummary>
144 <violationSeverity>warning</violationSeverity>
145 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
146 </configuration>
147 </plugin>
Clement Escoffierc5b8d122013-03-04 09:01:52 +0000148 <plugin>
149 <groupId>org.apache.maven.plugins</groupId>
150 <artifactId>maven-compiler-plugin</artifactId>
151 <configuration>
152 <target>1.5</target>
153 <source>1.5</source>
154 </configuration>
155 </plugin>
Clement Escoffier2f1e9482012-04-21 16:04:33 +0000156 </plugins>
157 </build>
Clement Escoffierbfa74d02009-07-19 16:25:18 +0000158</project>