Clement Escoffier | ec73deb | 2008-10-14 11:53:43 +0000 | [diff] [blame] | 1 | <!-- |
| 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 |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 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. |
| 18 | --> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 19 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 20 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
Clement Escoffier | cb5bca0 | 2008-10-14 11:52:24 +0000 | [diff] [blame] | 21 | <parent> |
| 22 | <groupId>org.apache.felix</groupId> |
| 23 | <artifactId>felix</artifactId> |
| 24 | <version>1.0.2</version> |
| 25 | <relativePath>../../pom/pom.xml</relativePath> |
| 26 | </parent> |
| 27 | <modelVersion>4.0.0</modelVersion> |
| 28 | <packaging>bundle</packaging> |
| 29 | <artifactId>org.apache.felix.ipojo.handler.temporal</artifactId> |
| 30 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | 2e9f4b3 | 2008-10-14 13:55:56 +0000 | [diff] [blame] | 31 | <version>1.1.0-SNAPSHOT</version> |
Clement Escoffier | cb5bca0 | 2008-10-14 11:52:24 +0000 | [diff] [blame] | 32 | <name>Apache Felix iPOJO Temporal Service Dependency Handler</name> |
Clement Escoffier | cb5bca0 | 2008-10-14 11:52:24 +0000 | [diff] [blame] | 33 | <dependencies> |
| 34 | <dependency> |
| 35 | <groupId>org.apache.felix</groupId> |
| 36 | <artifactId>org.osgi.core</artifactId> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 37 | <version>1.0.1</version> |
Clement Escoffier | cb5bca0 | 2008-10-14 11:52:24 +0000 | [diff] [blame] | 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | cb5bca0 | 2008-10-14 11:52:24 +0000 | [diff] [blame] | 41 | <artifactId>org.apache.felix.ipojo</artifactId> |
Clement Escoffier | 6e0a82a | 2009-01-28 10:44:07 +0000 | [diff] [blame] | 42 | <version>1.2.0</version> |
Clement Escoffier | cb5bca0 | 2008-10-14 11:52:24 +0000 | [diff] [blame] | 43 | </dependency> |
Clement Escoffier | 8839821 | 2009-01-19 08:50:50 +0000 | [diff] [blame] | 44 | <dependency> |
| 45 | <groupId>asm</groupId> |
| 46 | <artifactId>asm-all</artifactId> |
| 47 | <version>3.0</version> |
| 48 | <exclusions> |
| 49 | <exclusion> |
| 50 | <groupId>asm</groupId> |
| 51 | <artifactId>asm-tree</artifactId> |
| 52 | </exclusion> |
| 53 | </exclusions> |
| 54 | </dependency> |
Clement Escoffier | cb5bca0 | 2008-10-14 11:52:24 +0000 | [diff] [blame] | 55 | </dependencies> |
Clement Escoffier | cb5bca0 | 2008-10-14 11:52:24 +0000 | [diff] [blame] | 56 | <build> |
| 57 | <plugins> |
| 58 | <plugin> |
| 59 | <groupId>org.apache.felix</groupId> |
| 60 | <artifactId>maven-bundle-plugin</artifactId> |
Clement Escoffier | 2e9f4b3 | 2008-10-14 13:55:56 +0000 | [diff] [blame] | 61 | <version>1.4.3</version> |
Clement Escoffier | cb5bca0 | 2008-10-14 11:52:24 +0000 | [diff] [blame] | 62 | <extensions>true</extensions> |
| 63 | <configuration> |
| 64 | <instructions> |
Clement Escoffier | 8839821 | 2009-01-19 08:50:50 +0000 | [diff] [blame] | 65 | <Private-Package> |
| 66 | org.apache.felix.ipojo.handler.temporal, |
| 67 | org.objectweb.asm |
Clement Escoffier | cb5bca0 | 2008-10-14 11:52:24 +0000 | [diff] [blame] | 68 | </Private-Package> |
| 69 | <Bundle-Name>${pom.name}</Bundle-Name> |
Clement Escoffier | 8d88835 | 2008-12-10 12:29:41 +0000 | [diff] [blame] | 70 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
Clement Escoffier | 8839821 | 2009-01-19 08:50:50 +0000 | [diff] [blame] | 71 | <Import-Package>!org.objectweb.asm.tree, *</Import-Package> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 72 | <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor> |
| 73 | <Bundle-Description> iPOJO Temporal Dependency Handler |
Clement Escoffier | cb5bca0 | 2008-10-14 11:52:24 +0000 | [diff] [blame] | 74 | </Bundle-Description> |
| 75 | <Bundle-DocURL> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 76 | http://felix.apache.org/site/temporal-service-dependency.html |
Clement Escoffier | cb5bca0 | 2008-10-14 11:52:24 +0000 | [diff] [blame] | 77 | </Bundle-DocURL> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 78 | <Include-Resource> META-INF/LICENCE=LICENSE, |
Clement Escoffier | 8839821 | 2009-01-19 08:50:50 +0000 | [diff] [blame] | 79 | META-INF/LICENCE.asm=LICENSE.asm, |
| 80 | META-INF/NOTICE=NOTICE |
| 81 | </Include-Resource> |
Clement Escoffier | cb5bca0 | 2008-10-14 11:52:24 +0000 | [diff] [blame] | 82 | </instructions> |
| 83 | </configuration> |
| 84 | </plugin> |
| 85 | <plugin> |
| 86 | <groupId>org.apache.felix</groupId> |
| 87 | <artifactId>maven-ipojo-plugin</artifactId> |
Clement Escoffier | 6e0a82a | 2009-01-28 10:44:07 +0000 | [diff] [blame] | 88 | <version>1.2.0</version> |
Clement Escoffier | cb5bca0 | 2008-10-14 11:52:24 +0000 | [diff] [blame] | 89 | <executions> |
| 90 | <execution> |
| 91 | <goals> |
| 92 | <goal>ipojo-bundle</goal> |
| 93 | </goals> |
| 94 | <configuration> |
| 95 | <metadata>metadata.xml</metadata> |
| 96 | </configuration> |
| 97 | </execution> |
| 98 | </executions> |
| 99 | </plugin> |
Clement Escoffier | 31f25df | 2008-11-20 15:51:56 +0000 | [diff] [blame] | 100 | <plugin> |
| 101 | <groupId>org.codehaus.mojo</groupId> |
| 102 | <artifactId>rat-maven-plugin</artifactId> |
| 103 | <configuration> |
| 104 | <excludeSubProjects>false</excludeSubProjects> |
| 105 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes> |
| 106 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes> |
| 107 | <excludes> |
| 108 | <param>doc/**/*</param> |
| 109 | <param>maven-eclipse.xml</param> |
| 110 | <param>.checkstyle</param> |
| 111 | <param>.externalToolBuilders/*</param> |
| 112 | <param>LICENSE.asm</param> |
| 113 | </excludes> |
| 114 | </configuration> |
| 115 | </plugin> |
| 116 | <plugin> |
| 117 | <groupId>org.apache.maven.plugins</groupId> |
| 118 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 119 | <configuration> |
| 120 | <enableRulesSummary>false</enableRulesSummary> |
| 121 | <violationSeverity>warning</violationSeverity> |
| 122 | <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation> |
| 123 | </configuration> |
| 124 | </plugin> |
Clement Escoffier | cb5bca0 | 2008-10-14 11:52:24 +0000 | [diff] [blame] | 125 | </plugins> |
| 126 | </build> |
Clement Escoffier | cb5bca0 | 2008-10-14 11:52:24 +0000 | [diff] [blame] | 127 | </project> |