blob: d8851a132f47bfe5957d4a2250671c1f43fe261a [file] [log] [blame]
Clement Escoffier1e0d1102008-10-14 10:52:53 +00001<!--
Clement Escoffier0630c6b2009-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 Escoffierc80b73d2009-07-03 13:16:24 +00009
Clement Escoffier0630c6b2009-07-19 16:25:18 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffierc80b73d2009-07-03 13:16:24 +000011
Clement Escoffier0630c6b2009-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 Escoffier1e0d1102008-10-14 10:52:53 +000018-->
Clement Escoffier4b2ba262009-01-28 10:45:31 +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 Escoffier0630c6b2009-07-19 16:25:18 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
23 <version>1.2.0</version>
24 <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>
30 <groupId>org.apache.felix</groupId>
Clement Escoffier4775f982009-07-21 18:36:36 +000031 <version>1.5.0-SNAPSHOT</version>
Clement Escoffierc80b73d2009-07-03 13:16:24 +000032
Clement Escoffier0630c6b2009-07-19 16:25:18 +000033 <properties>
Clement Escoffier4cb4ff32009-08-14 12:11:19 +000034 <ipojo.package.version>1.6.0</ipojo.package.version>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000035 </properties>
36
37 <description>
38 iPOJO Compoistion Model. This is an iPOJO extension to execute service composition.
39 </description>
40 <url>http://felix.apache.org/site/ipojo-composition-tutorial.html</url>
Clement Escoffierc80b73d2009-07-03 13:16:24 +000041
Clement Escoffier0630c6b2009-07-19 16:25:18 +000042 <dependencies>
43 <dependency>
44 <groupId>org.apache.felix</groupId>
45 <artifactId>org.osgi.core</artifactId>
46 <version>1.0.1</version>
47 </dependency>
48 <dependency>
49 <groupId>org.apache.felix</groupId>
50 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffierbb666a32009-07-21 19:00:07 +000051 <version>${pom.version}</version>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000052 </dependency>
53 <dependency>
54 <groupId>org.apache.felix</groupId>
55 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffierce853382009-07-21 18:38:11 +000056 <version>${pom.version}</version>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000057 </dependency>
58 </dependencies>
59 <build>
60 <plugins>
61 <plugin>
62 <groupId>org.apache.felix</groupId>
63 <artifactId>maven-bundle-plugin</artifactId>
64 <version>1.4.3</version>
65 <extensions>true</extensions>
66 <configuration>
67 <instructions>
68 <Bundle-Name>Apache Felix iPOJO Composite</Bundle-Name>
69 <Bundle-SymbolicName>${pom.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.osgi.framework;version=1.3 </Import-Package>
84 <Private-Package>
85 org.apache.felix.ipojo.composite.architecture,
86 org.apache.felix.ipojo.composite.service*,
87 org.apache.felix.ipojo.composite.instance,
88 org.apache.felix.ipojo.composite.util
89 </Private-Package>
90 <Export-Package>
91 org.apache.felix.ipojo.composite; version="${ipojo.package.version}" ,
92 !org.objectweb.asm.xml*,
93 org.objectweb.asm*;-split-package:=merge-first ,
94 org.apache.felix.ipojo.manipulation
95 </Export-Package>
96 <Include-Resource> META-INF/LICENSE=LICENSE,
97 META-INF/NOTICE=NOTICE, META-INF/LICENSE.asm=LICENSE.asm
98 </Include-Resource>
99 <IPOJO-Extension>
100 composite:org.apache.felix.ipojo.composite.CompositeFactory
101 </IPOJO-Extension>
102 <_donotcopy> (CVS|.svn|.+.bak|~.+|metadata.xml) </_donotcopy>
103 </instructions>
104 </configuration>
105 </plugin>
106 <plugin>
107 <groupId>org.apache.felix</groupId>
108 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffierce853382009-07-21 18:38:11 +0000109 <version>${pom.version}</version>
Clement Escoffier0630c6b2009-07-19 16:25:18 +0000110 <executions>
111 <execution>
112 <goals>
113 <goal>ipojo-bundle</goal>
114 </goals>
115 <configuration>
116 <metadata>metadata.xml</metadata>
117 <ignoreAnnotations>true</ignoreAnnotations>
118 </configuration>
119 </execution>
120 </executions>
121 </plugin>
122 <plugin>
123 <groupId>org.codehaus.mojo</groupId>
124 <artifactId>rat-maven-plugin</artifactId>
125 <configuration>
126 <excludeSubProjects>false</excludeSubProjects>
127 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
128 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
129 <excludes>
130 <param>doc/**/*</param>
131 <param>maven-eclipse.xml</param>
132 <param>.checkstyle</param>
133 <param>.externalToolBuilders/*</param>
134 <param>LICENSE.asm</param>
135 </excludes>
136 </configuration>
137 </plugin>
138 <plugin>
139 <groupId>org.apache.maven.plugins</groupId>
140 <artifactId>maven-checkstyle-plugin</artifactId>
141 <configuration>
142 <enableRulesSummary>false</enableRulesSummary>
143 <violationSeverity>warning</violationSeverity>
144 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
145 </configuration>
146 </plugin>
147 </plugins>
148 </build>
149</project>