blob: 4ab06ac201aa220ecee730507a2de964bdc1a133 [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>
23 <version>1.2.1</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>
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>
60 <resources>
61 <resource>
62 <directory>src/main/resources</directory>
63 </resource>
64 <resource>
65 <directory>.</directory>
66 <targetPath>META-INF</targetPath>
67 <includes>
68 <include>LICENSE*</include>
69 <include>NOTICE*</include>
70 <include>DEPENDENCIES*</include>
71 </includes>
72 </resource>
73 </resources>
74
75 <plugins>
76 <plugin>
77 <groupId>org.apache.felix</groupId>
78 <artifactId>maven-bundle-plugin</artifactId>
79 <version>1.4.3</version>
80 <extensions>true</extensions>
81 <configuration>
82 <instructions>
83 <Bundle-Name>Apache Felix iPOJO Composite</Bundle-Name>
84 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
85 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
86 <Bundle-Description>iPOJO Composititon Framework
87 </Bundle-Description>
88 <Bundle-DocURL>
89 http://felix.apache.org/site/ipojo-composition-tutorial.html
90 </Bundle-DocURL>
91 <Import-Package>
92 org.apache.felix.ipojo,
93 org.apache.felix.ipojo.architecture,
94 org.apache.felix.ipojo.context,
95 org.apache.felix.ipojo.metadata,
96 org.apache.felix.ipojo.parser,
97 org.apache.felix.ipojo.util,
98 org.apache.felix.ipojo.manipulation,
99 org.osgi.framework;version=1.3,
100 !org.objectweb.asm.tree,
101 </Import-Package>
102 <Private-Package>
103 org.apache.felix.ipojo.composite.architecture,
104 org.apache.felix.ipojo.composite.service*,
105 org.apache.felix.ipojo.composite.instance,
106 org.apache.felix.ipojo.composite.util,
107 <!-- ASM (Manipulator dependencies) -->
108 org.objectweb.asm.commons,
109 org.objectweb.asm.signature,
110 org.objectweb.asm
111 </Private-Package>
112 <Export-Package>
113 org.apache.felix.ipojo.composite; version="${ipojo.package.version}"
114 </Export-Package>
115 <Include-Resource>
116 META-INF/LICENSE=LICENSE,
117 META-INF/NOTICE=NOTICE,
118 META-INF/LICENSE.asm=LICENSE.asm,
119 META-INF/DEPENDENCIES=DEPENDENCIES
120 </Include-Resource>
121 <IPOJO-Extension>
122 composite:org.apache.felix.ipojo.composite.CompositeFactory
123 </IPOJO-Extension>
124 <_donotcopy>(CVS|.svn|.+.bak|~.+|metadata.xml)</_donotcopy>
125 </instructions>
126 </configuration>
127 </plugin>
128 <plugin>
129 <groupId>org.apache.felix</groupId>
130 <artifactId>maven-ipojo-plugin</artifactId>
131 <version>1.8.4</version>
132 <executions>
133 <execution>
134 <goals>
135 <goal>ipojo-bundle</goal>
136 </goals>
137 <configuration>
138 <metadata>src/main/resources/metadata.xml</metadata>
139 <ignoreAnnotations>true</ignoreAnnotations>
140 </configuration>
141 </execution>
142 </executions>
143 </plugin>
144 <plugin>
145 <groupId>org.codehaus.mojo</groupId>
146 <artifactId>rat-maven-plugin</artifactId>
147 <configuration>
148 <excludeSubProjects>false</excludeSubProjects>
149 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
150 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
151 <excludes>
152 <param>doc/**/*</param>
153 <param>maven-eclipse.xml</param>
154 <param>.checkstyle</param>
155 <param>.externalToolBuilders/*</param>
156 <param>LICENSE.asm</param>
157 </excludes>
158 </configuration>
159 </plugin>
160 <plugin>
161 <groupId>org.apache.maven.plugins</groupId>
162 <artifactId>maven-checkstyle-plugin</artifactId>
163 <configuration>
164 <enableRulesSummary>false</enableRulesSummary>
165 <violationSeverity>warning</violationSeverity>
166 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
167 </configuration>
168 </plugin>
Clement Escoffierc5b8d122013-03-04 09:01:52 +0000169 <plugin>
170 <groupId>org.apache.maven.plugins</groupId>
171 <artifactId>maven-compiler-plugin</artifactId>
172 <configuration>
173 <target>1.5</target>
174 <source>1.5</source>
175 </configuration>
176 </plugin>
Clement Escoffier2f1e9482012-04-21 16:04:33 +0000177 </plugins>
178 </build>
Clement Escoffierbfa74d02009-07-19 16:25:18 +0000179</project>