blob: 4627efd2c31b667ef50b16d49178f9c2396dd13e [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>
Clement Escoffier5ab0b442010-04-16 13:54:16 +000023 <version>1.2.1</version>
Clement Escoffier0630c6b2009-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 Escoffier42530472011-02-23 10:55:38 +000031 <version>1.9.0-SNAPSHOT</version>
Clement Escoffierc80b73d2009-07-03 13:16:24 +000032
Clement Escoffier0630c6b2009-07-19 16:25:18 +000033 <properties>
Clement Escoffierd5c5b932011-01-16 20:09:13 +000034 <ipojo.package.version>1.8.0</ipojo.package.version>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000035 </properties>
Clement Escoffierd5c5b932011-01-16 20:09:13 +000036
Clement Escoffier0630c6b2009-07-19 16:25:18 +000037 <description>
Clement Escoffier5ab0b442010-04-16 13:54:16 +000038 iPOJO Composition Model. This is an iPOJO extension to execute service composition.
Clement Escoffier0630c6b2009-07-19 16:25:18 +000039 </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>
Clement Escoffier5ab0b442010-04-16 13:54:16 +000044 <groupId>org.osgi</groupId>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000045 <artifactId>org.osgi.core</artifactId>
Clement Escoffier5ab0b442010-04-16 13:54:16 +000046 <version>4.0.0</version>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000047 </dependency>
48 <dependency>
49 <groupId>org.apache.felix</groupId>
50 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffier812179c2011-02-20 17:59:20 +000051 <version>1.8.0</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 Escoffier812179c2011-02-20 17:59:20 +000056 <version>1.8.0</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>
Clement Escoffierfe606902010-05-01 10:46:02 +000069 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
Clement Escoffier0630c6b2009-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 Escoffier7b43bab2011-12-03 13:22:25 +000083 org.apache.felix.ipojo.manipulation,
84 org.objectweb.asm*;version=3.3,
85 org.osgi.framework;version=1.3,
86 </Import-Package>
Clement Escoffier0630c6b2009-07-19 16:25:18 +000087 <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 </Private-Package>
93 <Export-Package>
Clement Escoffier7b43bab2011-12-03 13:22:25 +000094 org.apache.felix.ipojo.composite; version="${ipojo.package.version}",
95 !org.objectweb.asm.xml*
Clement Escoffier0630c6b2009-07-19 16:25:18 +000096 </Export-Package>
Clement Escoffierd5c5b932011-01-16 20:09:13 +000097 <Include-Resource>
Clement Escoffierdd7c1152010-07-14 18:31:13 +000098 META-INF/LICENSE=LICENSE,
Clement Escoffierd5c5b932011-01-16 20:09:13 +000099 META-INF/NOTICE=NOTICE,
Clement Escoffierdd7c1152010-07-14 18:31:13 +0000100 META-INF/LICENSE.asm=LICENSE.asm,
101 META-INF/DEPENDENCIES=DEPENDENCIES
Clement Escoffier0630c6b2009-07-19 16:25:18 +0000102 </Include-Resource>
103 <IPOJO-Extension>
104 composite:org.apache.felix.ipojo.composite.CompositeFactory
105 </IPOJO-Extension>
106 <_donotcopy> (CVS|.svn|.+.bak|~.+|metadata.xml) </_donotcopy>
107 </instructions>
108 </configuration>
109 </plugin>
110 <plugin>
111 <groupId>org.apache.felix</groupId>
112 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier06569182011-02-16 15:51:44 +0000113 <version>1.8.0</version>
Clement Escoffier0630c6b2009-07-19 16:25:18 +0000114 <executions>
115 <execution>
116 <goals>
117 <goal>ipojo-bundle</goal>
118 </goals>
119 <configuration>
Clement Escoffiera0f88a92011-01-02 10:05:08 +0000120 <metadata>src/main/resources/metadata.xml</metadata>
Clement Escoffier0630c6b2009-07-19 16:25:18 +0000121 <ignoreAnnotations>true</ignoreAnnotations>
122 </configuration>
123 </execution>
124 </executions>
125 </plugin>
126 <plugin>
127 <groupId>org.codehaus.mojo</groupId>
128 <artifactId>rat-maven-plugin</artifactId>
129 <configuration>
130 <excludeSubProjects>false</excludeSubProjects>
131 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
132 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
133 <excludes>
134 <param>doc/**/*</param>
135 <param>maven-eclipse.xml</param>
136 <param>.checkstyle</param>
137 <param>.externalToolBuilders/*</param>
138 <param>LICENSE.asm</param>
139 </excludes>
140 </configuration>
141 </plugin>
142 <plugin>
143 <groupId>org.apache.maven.plugins</groupId>
144 <artifactId>maven-checkstyle-plugin</artifactId>
145 <configuration>
146 <enableRulesSummary>false</enableRulesSummary>
147 <violationSeverity>warning</violationSeverity>
148 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
149 </configuration>
150 </plugin>
151 </plugins>
152 </build>
153</project>