Clement Escoffier | 9e935de | 2008-10-14 10:52:53 +0000 | [diff] [blame] | 1 | <!-- |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 2 | 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 Escoffier | 0b93f38 | 2009-07-03 13:16:24 +0000 | [diff] [blame] | 9 | |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 10 | http://www.apache.org/licenses/LICENSE-2.0 |
Clement Escoffier | 0b93f38 | 2009-07-03 13:16:24 +0000 | [diff] [blame] | 11 | |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 12 | 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 Escoffier | 9e935de | 2008-10-14 10:52:53 +0000 | [diff] [blame] | 18 | --> |
Clement Escoffier | b2f5821 | 2009-01-28 10:45:31 +0000 | [diff] [blame] | 19 | <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 Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 20 | <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 Escoffier | 5b565fc | 2009-07-21 18:36:36 +0000 | [diff] [blame] | 31 | <version>1.5.0-SNAPSHOT</version> |
Clement Escoffier | 0b93f38 | 2009-07-03 13:16:24 +0000 | [diff] [blame] | 32 | |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 33 | <properties> |
| 34 | <ipojo.package.version>1.4.0</ipojo.package.version> |
| 35 | </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 Escoffier | 0b93f38 | 2009-07-03 13:16:24 +0000 | [diff] [blame] | 41 | |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 42 | <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 Escoffier | 0f9f8e6 | 2009-07-21 19:00:07 +0000 | [diff] [blame] | 51 | <version>${pom.version}</version> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>org.apache.felix</groupId> |
| 55 | <artifactId>org.apache.felix.ipojo</artifactId> |
Clement Escoffier | 55b4f16 | 2009-07-21 18:38:11 +0000 | [diff] [blame] | 56 | <version>${pom.version}</version> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 57 | </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 Escoffier | 55b4f16 | 2009-07-21 18:38:11 +0000 | [diff] [blame] | 109 | <version>${pom.version}</version> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 110 | <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> |