Clement Escoffier | ec73deb | 2008-10-14 11:53:43 +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 | ec73deb | 2008-10-14 11:53:43 +0000 | [diff] [blame] | 18 | --> |
Clement Escoffier | b77241d | 2009-01-28 10:54:37 +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> |
Clement Escoffier | 86215df | 2010-04-16 13:54:16 +0000 | [diff] [blame] | 23 | <version>1.2.1</version> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 24 | <relativePath>../../pom/pom.xml</relativePath> |
| 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <packaging>bundle</packaging> |
| 28 | <artifactId>org.apache.felix.ipojo.handler.temporal</artifactId> |
| 29 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | 5a1b231 | 2010-05-16 15:11:36 +0000 | [diff] [blame] | 30 | <version>1.7.0-SNAPSHOT</version> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 31 | <name>Apache Felix iPOJO Temporal Service Dependency Handler</name> |
| 32 | |
| 33 | <description> |
| 34 | iPOJO extension to inject temporal service dependencies. |
| 35 | </description> |
| 36 | <url>http://felix.apache.org/site/temporal-service-dependency.html</url> |
| 37 | |
| 38 | <dependencies> |
| 39 | <dependency> |
Clement Escoffier | 86215df | 2010-04-16 13:54:16 +0000 | [diff] [blame] | 40 | <groupId>org.osgi</groupId> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 41 | <artifactId>org.osgi.core</artifactId> |
Clement Escoffier | 86215df | 2010-04-16 13:54:16 +0000 | [diff] [blame] | 42 | <version>4.0.0</version> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>org.apache.felix</groupId> |
| 46 | <artifactId>org.apache.felix.ipojo</artifactId> |
Clement Escoffier | 48a85df | 2010-05-16 15:10:39 +0000 | [diff] [blame] | 47 | <version>1.6.0</version> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>asm</groupId> |
| 51 | <artifactId>asm-all</artifactId> |
| 52 | <version>3.0</version> |
| 53 | <exclusions> |
| 54 | <exclusion> |
| 55 | <groupId>asm</groupId> |
| 56 | <artifactId>asm-tree</artifactId> |
| 57 | </exclusion> |
| 58 | </exclusions> |
| 59 | </dependency> |
| 60 | </dependencies> |
| 61 | <build> |
| 62 | <plugins> |
| 63 | <plugin> |
| 64 | <groupId>org.apache.felix</groupId> |
| 65 | <artifactId>maven-bundle-plugin</artifactId> |
| 66 | <version>1.4.3</version> |
| 67 | <extensions>true</extensions> |
| 68 | <configuration> |
| 69 | <instructions> |
| 70 | <Private-Package> |
| 71 | org.apache.felix.ipojo.handler.temporal, |
| 72 | org.objectweb.asm |
| 73 | </Private-Package> |
Clement Escoffier | 134b006 | 2010-05-01 10:46:02 +0000 | [diff] [blame] | 74 | <Bundle-Name>${project.name}</Bundle-Name> |
| 75 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 76 | <Import-Package>!org.objectweb.asm.tree, *</Import-Package> |
| 77 | <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor> |
| 78 | <Bundle-Description> iPOJO Temporal Dependency Handler |
| 79 | </Bundle-Description> |
| 80 | <Bundle-DocURL> |
| 81 | http://felix.apache.org/site/temporal-service-dependency.html |
| 82 | </Bundle-DocURL> |
| 83 | <Include-Resource> META-INF/LICENSE=LICENSE, |
| 84 | META-INF/LICENSE.asm=LICENSE.asm, |
| 85 | META-INF/NOTICE=NOTICE |
| 86 | </Include-Resource> |
| 87 | </instructions> |
| 88 | </configuration> |
| 89 | </plugin> |
| 90 | <plugin> |
| 91 | <groupId>org.apache.felix</groupId> |
| 92 | <artifactId>maven-ipojo-plugin</artifactId> |
Clement Escoffier | 48a85df | 2010-05-16 15:10:39 +0000 | [diff] [blame] | 93 | <version>1.6.0</version> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 94 | <executions> |
| 95 | <execution> |
| 96 | <goals> |
| 97 | <goal>ipojo-bundle</goal> |
| 98 | </goals> |
| 99 | <configuration> |
| 100 | <metadata>metadata.xml</metadata> |
| 101 | </configuration> |
| 102 | </execution> |
| 103 | </executions> |
| 104 | </plugin> |
| 105 | <plugin> |
| 106 | <groupId>org.codehaus.mojo</groupId> |
| 107 | <artifactId>rat-maven-plugin</artifactId> |
| 108 | <configuration> |
| 109 | <excludeSubProjects>false</excludeSubProjects> |
| 110 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes> |
| 111 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes> |
| 112 | <excludes> |
| 113 | <param>doc/**/*</param> |
| 114 | <param>maven-eclipse.xml</param> |
| 115 | <param>.checkstyle</param> |
| 116 | <param>.externalToolBuilders/*</param> |
| 117 | <param>LICENSE.asm</param> |
| 118 | </excludes> |
| 119 | </configuration> |
| 120 | </plugin> |
| 121 | <plugin> |
| 122 | <groupId>org.apache.maven.plugins</groupId> |
| 123 | <artifactId>maven-checkstyle-plugin</artifactId> |
| 124 | <configuration> |
| 125 | <enableRulesSummary>false</enableRulesSummary> |
| 126 | <violationSeverity>warning</violationSeverity> |
| 127 | <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation> |
| 128 | </configuration> |
| 129 | </plugin> |
| 130 | </plugins> |
| 131 | </build> |
| 132 | </project> |