Clement Escoffier | cb5bca0 | 2008-10-14 11:52:24 +0000 | [diff] [blame^] | 1 | <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"> |
| 2 | <parent> |
| 3 | <groupId>org.apache.felix</groupId> |
| 4 | <artifactId>felix</artifactId> |
| 5 | <version>1.0.2</version> |
| 6 | <relativePath>../../pom/pom.xml</relativePath> |
| 7 | </parent> |
| 8 | <modelVersion>4.0.0</modelVersion> |
| 9 | <packaging>bundle</packaging> |
| 10 | <artifactId>org.apache.felix.ipojo.handler.temporal</artifactId> |
| 11 | <groupId>org.apache.felix</groupId> |
| 12 | <version>1.0.0</version> |
| 13 | <name>Apache Felix iPOJO Temporal Service Dependency Handler</name> |
| 14 | |
| 15 | <dependencies> |
| 16 | <dependency> |
| 17 | <groupId>org.apache.felix</groupId> |
| 18 | <artifactId>org.osgi.core</artifactId> |
| 19 | <version>1.0.0</version> |
| 20 | </dependency> |
| 21 | <dependency> |
| 22 | <groupId>org.apache.felix</groupId> |
| 23 | <artifactId>org.osgi.compendium</artifactId> |
| 24 | <version>1.0.0</version> |
| 25 | </dependency> |
| 26 | <dependency> |
| 27 | <groupId>org.apache.felix</groupId> |
| 28 | <artifactId>org.apache.felix.ipojo.metadata</artifactId> |
| 29 | <version>1.0.0</version> |
| 30 | </dependency> |
| 31 | <dependency> |
| 32 | <groupId>org.apache.felix</groupId> |
| 33 | <artifactId>org.apache.felix.ipojo</artifactId> |
| 34 | <version>1.0.0</version> |
| 35 | </dependency> |
| 36 | </dependencies> |
| 37 | |
| 38 | <build> |
| 39 | <plugins> |
| 40 | <plugin> |
| 41 | <groupId>org.apache.felix</groupId> |
| 42 | <artifactId>maven-bundle-plugin</artifactId> |
| 43 | <version>1.4.2</version> |
| 44 | <extensions>true</extensions> |
| 45 | <configuration> |
| 46 | <instructions> |
| 47 | <Private-Package> |
| 48 | org.apache.felix.ipojo.handler.temporal |
| 49 | </Private-Package> |
| 50 | <Bundle-Name>${pom.name}</Bundle-Name> |
| 51 | <Bundle-SymbolicName> |
| 52 | org.apache.felix.ipojo.handler.temporal |
| 53 | </Bundle-SymbolicName> |
| 54 | <Bundle-Vendor> |
| 55 | The Apache Software Foundation |
| 56 | </Bundle-Vendor> |
| 57 | <Bundle-Description> |
| 58 | iPOJO Temporal Dependency Handler |
| 59 | </Bundle-Description> |
| 60 | <Bundle-DocURL> |
| 61 | http://felix.apache.org/site/temporal-service-dependency.html |
| 62 | </Bundle-DocURL> |
| 63 | <Include-Resource> |
| 64 | META-INF/LICENCE=LICENSE, |
| 65 | META-INF/NOTICE=NOTICE |
| 66 | </Include-Resource> |
| 67 | </instructions> |
| 68 | </configuration> |
| 69 | </plugin> |
| 70 | <plugin> |
| 71 | <groupId>org.apache.felix</groupId> |
| 72 | <artifactId>maven-ipojo-plugin</artifactId> |
| 73 | <version>1.0.0</version> |
| 74 | <executions> |
| 75 | <execution> |
| 76 | <goals> |
| 77 | <goal>ipojo-bundle</goal> |
| 78 | </goals> |
| 79 | <configuration> |
| 80 | <metadata>metadata.xml</metadata> |
| 81 | </configuration> |
| 82 | </execution> |
| 83 | </executions> |
| 84 | </plugin> |
| 85 | </plugins> |
| 86 | </build> |
| 87 | |
| 88 | <scm> |
| 89 | <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.temporal-1.0.0</connection> |
| 90 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.temporal-1.0.0</developerConnection> |
| 91 | <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.temporal-1.0.0</url> |
| 92 | </scm> |
| 93 | </project> |