blob: ee5bac3080a4c5e5520c77a70c64fbc77e11d423 [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 Escoffierb2f58212009-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 Escoffierbfa74d02009-07-19 16:25:18 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
Clement Escoffier86215df2010-04-16 13:54:16 +000023 <version>1.2.1</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +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>
30 <groupId>org.apache.felix</groupId>
Clement Escoffier9e9d6632010-04-16 14:33:59 +000031 <version>1.7.0-SNAPSHOT</version>
Clement Escoffier0b93f382009-07-03 13:16:24 +000032
Clement Escoffierbfa74d02009-07-19 16:25:18 +000033 <properties>
Clement Escoffieraf9ad1b2009-08-14 12:11:19 +000034 <ipojo.package.version>1.6.0</ipojo.package.version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000035 </properties>
36
37 <description>
Clement Escoffier86215df2010-04-16 13:54:16 +000038 iPOJO Composition Model. This is an iPOJO extension to execute service composition.
Clement Escoffierbfa74d02009-07-19 16:25:18 +000039 </description>
40 <url>http://felix.apache.org/site/ipojo-composition-tutorial.html</url>
Clement Escoffier0b93f382009-07-03 13:16:24 +000041
Clement Escoffierbfa74d02009-07-19 16:25:18 +000042 <dependencies>
43 <dependency>
Clement Escoffier86215df2010-04-16 13:54:16 +000044 <groupId>org.osgi</groupId>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000045 <artifactId>org.osgi.core</artifactId>
Clement Escoffier86215df2010-04-16 13:54:16 +000046 <version>4.0.0</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000047 </dependency>
48 <dependency>
49 <groupId>org.apache.felix</groupId>
50 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffier134b0062010-05-01 10:46:02 +000051 <version>${project.version}</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000052 </dependency>
53 <dependency>
54 <groupId>org.apache.felix</groupId>
55 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier134b0062010-05-01 10:46:02 +000056 <version>${project.version}</version>
Clement Escoffierbfa74d02009-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>
Clement Escoffier134b0062010-05-01 10:46:02 +000069 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000070 <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,
Clement Escoffier769c9942009-12-26 11:15:42 +000083 org.objectweb.asm*;version=3.0,
Clement Escoffierbfa74d02009-07-19 16:25:18 +000084 org.osgi.framework;version=1.3 </Import-Package>
85 <Private-Package>
86 org.apache.felix.ipojo.composite.architecture,
87 org.apache.felix.ipojo.composite.service*,
88 org.apache.felix.ipojo.composite.instance,
89 org.apache.felix.ipojo.composite.util
90 </Private-Package>
91 <Export-Package>
92 org.apache.felix.ipojo.composite; version="${ipojo.package.version}" ,
93 !org.objectweb.asm.xml*,
Clement Escoffier769c9942009-12-26 11:15:42 +000094 org.objectweb.asm*;version=3.0;-split-package:=merge-first ,
Clement Escoffierbfa74d02009-07-19 16:25:18 +000095 org.apache.felix.ipojo.manipulation
96 </Export-Package>
97 <Include-Resource> META-INF/LICENSE=LICENSE,
98 META-INF/NOTICE=NOTICE, META-INF/LICENSE.asm=LICENSE.asm
99 </Include-Resource>
100 <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>
Clement Escoffier134b0062010-05-01 10:46:02 +0000110 <version>${project.version}</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +0000111 <executions>
112 <execution>
113 <goals>
114 <goal>ipojo-bundle</goal>
115 </goals>
116 <configuration>
117 <metadata>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>
148 </plugins>
149 </build>
150</project>