blob: dfa665d01b81f1291257e558c08eb3a08219f38e [file] [log] [blame]
Pierre De Rop17b6b8d2010-01-11 21:41:58 +00001<?xml version="1.0" encoding="UTF-8"?>
Pierre De Rop26d4fd62011-05-18 11:44:18 +00002 <!--
3 Licensed to the Apache Software Foundation (ASF) under one or more
4 contributor license agreements. See the NOTICE file distributed with
5 this work for additional information regarding copyright ownership.
6 The ASF licenses this file to you under the Apache License, Version
7 2.0 (the "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
Pierre De Rop17b6b8d2010-01-11 21:41:58 +00009
Pierre De Rop26d4fd62011-05-18 11:44:18 +000010 http://www.apache.org/licenses/LICENSE-2.0 Unless required by
11 applicable law or agreed to in writing, software distributed under the
12 License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
13 CONDITIONS OF ANY KIND, either express or implied. See the License for
14 the specific language governing permissions and limitations under the
15 License.
16 -->
Marcel Offermansf0380372013-01-23 14:58:35 +000017<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">
Pierre De Rop26d4fd62011-05-18 11:44:18 +000018 <modelVersion>4.0.0</modelVersion>
19 <parent>
20 <groupId>org.apache.felix</groupId>
21 <artifactId>felix-parent</artifactId>
Pierre De Rop37ef6512014-07-13 12:05:06 +000022 <version>1.2.0</version>
Pierre De Rop26d4fd62011-05-18 11:44:18 +000023 <relativePath>../../pom/pom.xml</relativePath>
24 </parent>
25 <properties>
26 <osgi.version>4.2.0</osgi.version>
27 </properties>
28 <name>Apache Felix Dependency Manager Annotation</name>
29 <description>Dependency Manager Annotation API and corresponding scanner plugins</description>
30 <artifactId>org.apache.felix.dependencymanager.annotation</artifactId>
Marcel Offermans7fc90a12013-01-23 14:58:55 +000031 <version>3.1.1-SNAPSHOT</version>
Pierre De Rop26d4fd62011-05-18 11:44:18 +000032 <packaging>maven-plugin</packaging>
Pierre De Ropd3147892013-09-15 21:37:43 +000033
Pierre De Rop244fa202014-07-07 10:28:31 +000034 <scm>
Pierre De Rop47139472014-07-11 21:42:49 +000035 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/dependencymanager/annotation</connection>
36 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/dependencymanager/annotation</developerConnection>
37 <url>http://svn.apache.org/repos/asf/felix/dependencymanager/annotation</url>
38 </scm>
Pierre De Rop244fa202014-07-07 10:28:31 +000039
Pierre De Rop26d4fd62011-05-18 11:44:18 +000040 <dependencies>
41 <dependency>
42 <groupId>org.osgi</groupId>
43 <artifactId>org.osgi.core</artifactId>
44 <version>${osgi.version}</version>
45 </dependency>
46 <dependency>
Pierre De Ropd3147892013-09-15 21:37:43 +000047 <groupId>biz.aQute.bnd</groupId>
Pierre De Rop26d4fd62011-05-18 11:44:18 +000048 <artifactId>bndlib</artifactId>
Pierre De Rop4cde86f2014-07-02 14:44:44 +000049 <version>2.3.0</version>
Pierre De Rop26d4fd62011-05-18 11:44:18 +000050 </dependency>
51 <dependency>
52 <groupId>org.apache.maven</groupId>
53 <artifactId>maven-project</artifactId>
54 <version>2.0.7</version>
55 </dependency>
56 <dependency>
57 <groupId>org.apache.maven</groupId>
58 <artifactId>maven-artifact</artifactId>
59 <version>2.0.7</version>
60 </dependency>
61 <dependency>
62 <groupId>org.apache.maven</groupId>
63 <artifactId>maven-plugin-api</artifactId>
64 <version>2.0</version>
65 </dependency>
66 <dependency>
67 <groupId>org.json</groupId>
68 <artifactId>json</artifactId>
69 <version>20070829</version>
70 </dependency>
71 </dependencies>
72 <build>
73 <resources>
74 <resource>
75 <directory>.</directory>
76 <targetPath>META-INF</targetPath>
77 <includes>
78 <include>LICENSE*</include>
79 <include>NOTICE*</include>
80 <include>DEPENDENCIES*</include>
81 <include>*.txt</include>
82 </includes>
83 </resource>
84 </resources>
85 <plugins>
86 <plugin>
87 <groupId>org.apache.maven.plugins</groupId>
88 <artifactId>maven-compiler-plugin</artifactId>
89 <configuration>
90 <source>1.5</source>
91 <target>1.5</target>
92 </configuration>
93 </plugin>
94 <plugin>
95 <artifactId>maven-dependency-plugin</artifactId>
96 <executions>
97 <execution>
98 <goals>
99 <goal>unpack-dependencies</goal>
100 </goals>
101 <configuration>
102 <includeArtifactIds>
103 json
104 </includeArtifactIds>
105 <outputDirectory>
106 ${project.build.outputDirectory}
107 </outputDirectory>
108 </configuration>
109 </execution>
110 </executions>
111 </plugin>
112 </plugins>
113 </build>
Pierre De Rop17b6b8d2010-01-11 21:41:58 +0000114</project>