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