blob: 957b90dd549c8052c1767723e4e02b04f782ee30 [file] [log] [blame]
Clement Escoffier4a6414c2008-05-18 22:30:54 +00001<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 Escoffierce0e1e52008-03-28 15:33:36 +00002 <parent>
Clement Escoffierce0e1e52008-03-28 15:33:36 +00003 <groupId>org.apache.felix</groupId>
Clement Escoffier7d116ff2008-03-29 15:04:02 +00004 <artifactId>felix</artifactId>
5 <version>1.0.2</version>
6 <relativePath>../../pom/pom.xml</relativePath>
Clement Escoffierce0e1e52008-03-28 15:33:36 +00007 </parent>
8 <modelVersion>4.0.0</modelVersion>
9 <packaging>bundle</packaging>
10 <name>Apache Felix iPOJO Arch Command</name>
11 <artifactId>org.apache.felix.ipojo.arch</artifactId>
Clement Escoffier7d116ff2008-03-29 15:04:02 +000012 <groupId>org.apache.felix</groupId>
Clement Escoffier5bb754f2008-10-14 10:59:57 +000013 <version>1.0.0</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000014 <dependencies>
15 <dependency>
Clement Escoffier4a12e332008-04-07 13:29:34 +000016 <groupId>org.apache.felix</groupId>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000017 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier5bb754f2008-10-14 10:59:57 +000018 <version>1.0.0</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000019 </dependency>
20 <dependency>
Clement Escoffier4a12e332008-04-07 13:29:34 +000021 <groupId>org.apache.felix</groupId>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000022 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Clement Escoffier5bb754f2008-10-14 10:59:57 +000023 <version>1.0.0</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000024 </dependency>
25 <dependency>
Clement Escoffier4a12e332008-04-07 13:29:34 +000026 <groupId>org.apache.felix</groupId>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000027 <artifactId>org.apache.felix.shell</artifactId>
28 <version>1.0.0</version>
29 </dependency>
30 </dependencies>
31 <build>
32 <plugins>
33 <plugin>
34 <groupId>org.apache.felix</groupId>
35 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffier9fc9a3c2008-08-11 09:55:34 +000036 <version>1.4.2</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000037 <extensions>true</extensions>
38 <configuration>
39 <instructions>
40 <Bundle-Name>
41 iPOJO Arch Felix Command
42 </Bundle-Name>
43 <Bundle-SymbolicName>
44 ${pom.artifactId}
45 </Bundle-SymbolicName>
Clement Escoffier9d7a0052008-05-05 18:30:18 +000046 <Bundle-Vendor>
47 The Apache Software Foundation
48 </Bundle-Vendor>
Clement Escoffier2ae452a2008-08-13 14:14:55 +000049 <Bundle-Description>
50 iPOJO Arch command for Felix
51 </Bundle-Description>
52 <Bundle-DocURL>
53 http://felix.apache.org/site/architecture-handler.html
54 </Bundle-DocURL>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000055 <Private-Package>
56 org.apache.felix.ipojo.arch
57 </Private-Package>
Clement Escoffier9d7a0052008-05-05 18:30:18 +000058 <Include-Resource>
59 META-INF/LICENCE=LICENSE,
60 META-INF/NOTICE=NOTICE
61 </Include-Resource>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000062 </instructions>
63 </configuration>
64 </plugin>
65 <plugin>
66 <groupId>org.apache.felix</groupId>
67 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier5bb754f2008-10-14 10:59:57 +000068 <version>1.0.0</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000069 <executions>
70 <execution>
71 <goals>
72 <goal>ipojo-bundle</goal>
73 </goals>
74 <configuration>
75 <ignoreAnnotations>true</ignoreAnnotations>
76 </configuration>
77 </execution>
78 </executions>
79 </plugin>
80 </plugins>
81 </build>
Clement Escoffier5bb754f2008-10-14 10:59:57 +000082
83 <scm>
84 <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.arch-1.0.0</connection>
85 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.arch-1.0.0</developerConnection>
86 <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.arch-1.0.0</url>
87 </scm>
88</project>