blob: b28062d25a3852c1bb2f946dc5f46996b9182a34 [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 Escoffiera5649bd2013-05-15 15:43:37 +000030 <version>1.10.1-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>
Clement Escoffierb76fae72013-05-28 04:37:54 +000039 <url>
40 http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-gettingstarted/ipojo-composition-tutorial.html
41 </url>
Clement Escoffier0b93f382009-07-03 13:16:24 +000042
Clement Escoffier2f1e9482012-04-21 16:04:33 +000043 <dependencies>
44 <dependency>
45 <groupId>org.osgi</groupId>
46 <artifactId>org.osgi.core</artifactId>
47 <version>4.0.0</version>
48 </dependency>
49 <dependency>
50 <groupId>org.apache.felix</groupId>
51 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffierc34ba5c2013-05-16 08:12:53 +000052 <version>1.10.1-SNAPSHOT</version>
Clement Escoffier2f1e9482012-04-21 16:04:33 +000053 </dependency>
54 <dependency>
55 <groupId>org.apache.felix</groupId>
56 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffiera5649bd2013-05-15 15:43:37 +000057 <version>1.10.1-SNAPSHOT</version>
Clement Escoffier2f1e9482012-04-21 16:04:33 +000058 </dependency>
59 </dependencies>
60 <build>
Clement Escoffier2f1e9482012-04-21 16:04:33 +000061 <plugins>
62 <plugin>
63 <groupId>org.apache.felix</groupId>
64 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffiered4ca022013-03-13 15:27:20 +000065 <version>2.3.7</version>
Clement Escoffier2f1e9482012-04-21 16:04:33 +000066 <extensions>true</extensions>
67 <configuration>
68 <instructions>
69 <Bundle-Name>Apache Felix iPOJO Composite</Bundle-Name>
70 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
71 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Clement Escoffierfc26c542013-05-15 15:40:52 +000072 <Bundle-Description>iPOJO Composition Layer
Clement Escoffier2f1e9482012-04-21 16:04:33 +000073 </Bundle-Description>
74 <Bundle-DocURL>
Clement Escoffierb76fae72013-05-28 04:37:54 +000075 http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-gettingstarted/ipojo-composition-tutorial.html
Clement Escoffier2f1e9482012-04-21 16:04:33 +000076 </Bundle-DocURL>
77 <Import-Package>
78 org.apache.felix.ipojo,
79 org.apache.felix.ipojo.architecture,
80 org.apache.felix.ipojo.context,
81 org.apache.felix.ipojo.metadata,
82 org.apache.felix.ipojo.parser,
83 org.apache.felix.ipojo.util,
Clement Escoffier2f1e9482012-04-21 16:04:33 +000084 org.osgi.framework;version=1.3,
85 !org.objectweb.asm.tree,
Clement Escoffierfc26c542013-05-15 15:40:52 +000086 !org.apache.felix.ipojo.xml.parser,
87 !org.apache.felix.ipojo.annotations,
Clement Escoffier9968ff72013-04-10 09:52:20 +000088 *
Clement Escoffier2f1e9482012-04-21 16:04:33 +000089 </Import-Package>
90 <Private-Package>
91 org.apache.felix.ipojo.composite.architecture,
92 org.apache.felix.ipojo.composite.service*,
93 org.apache.felix.ipojo.composite.instance,
94 org.apache.felix.ipojo.composite.util,
95 <!-- ASM (Manipulator dependencies) -->
96 org.objectweb.asm.commons,
97 org.objectweb.asm.signature,
Clement Escoffier9968ff72013-04-10 09:52:20 +000098 org.objectweb.asm,
Clement Escoffierfc26c542013-05-15 15:40:52 +000099 org.apache.felix.ipojo.manipulation*,
100 org.apache.felix.ipojo.manipulator*
Clement Escoffier2f1e9482012-04-21 16:04:33 +0000101 </Private-Package>
102 <Export-Package>
103 org.apache.felix.ipojo.composite; version="${ipojo.package.version}"
104 </Export-Package>
Clement Escoffier2f1e9482012-04-21 16:04:33 +0000105 <IPOJO-Extension>
106 composite:org.apache.felix.ipojo.composite.CompositeFactory
107 </IPOJO-Extension>
108 <_donotcopy>(CVS|.svn|.+.bak|~.+|metadata.xml)</_donotcopy>
109 </instructions>
110 </configuration>
111 </plugin>
112 <plugin>
113 <groupId>org.apache.felix</groupId>
114 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffierc34ba5c2013-05-16 08:12:53 +0000115 <version>1.10.1-SNAPSHOT</version>
Clement Escoffier2f1e9482012-04-21 16:04:33 +0000116 <executions>
117 <execution>
118 <goals>
119 <goal>ipojo-bundle</goal>
120 </goals>
121 <configuration>
122 <metadata>src/main/resources/metadata.xml</metadata>
123 <ignoreAnnotations>true</ignoreAnnotations>
124 </configuration>
125 </execution>
126 </executions>
127 </plugin>
128 <plugin>
129 <groupId>org.codehaus.mojo</groupId>
130 <artifactId>rat-maven-plugin</artifactId>
131 <configuration>
132 <excludeSubProjects>false</excludeSubProjects>
133 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
134 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
135 <excludes>
136 <param>doc/**/*</param>
137 <param>maven-eclipse.xml</param>
138 <param>.checkstyle</param>
139 <param>.externalToolBuilders/*</param>
140 <param>LICENSE.asm</param>
141 </excludes>
142 </configuration>
143 </plugin>
144 <plugin>
145 <groupId>org.apache.maven.plugins</groupId>
146 <artifactId>maven-checkstyle-plugin</artifactId>
147 <configuration>
148 <enableRulesSummary>false</enableRulesSummary>
149 <violationSeverity>warning</violationSeverity>
150 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
151 </configuration>
152 </plugin>
Clement Escoffierc5b8d122013-03-04 09:01:52 +0000153 <plugin>
154 <groupId>org.apache.maven.plugins</groupId>
155 <artifactId>maven-compiler-plugin</artifactId>
156 <configuration>
157 <target>1.5</target>
158 <source>1.5</source>
159 </configuration>
160 </plugin>
Clement Escoffiere6237552013-03-20 09:51:42 +0000161 <plugin>
162 <groupId>org.codehaus.mojo</groupId>
163 <artifactId>animal-sniffer-maven-plugin</artifactId>
164 <version>1.7</version>
165 <configuration>
166 <signature>
167 <groupId>org.codehaus.mojo.signature</groupId>
168 <artifactId>java15</artifactId>
169 <version>1.0</version>
170 </signature>
171 </configuration>
172 <executions>
173 <execution>
174 <phase>test</phase>
175 <goals>
176 <goal>check</goal>
177 </goals>
178 </execution>
179 </executions>
180 </plugin>
Clement Escoffier2f1e9482012-04-21 16:04:33 +0000181 </plugins>
182 </build>
Clement Escoffierbfa74d02009-07-19 16:25:18 +0000183</project>