blob: 45d21f5e9e2c6aa3835b71ff5e6e24a6b90cdfb5 [file] [log] [blame]
Clement Escoffier4f2609b2013-03-20 07:35:37 +00001<!--
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 Escoffierec4c3eb2013-05-15 13:29:45 +000019<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 Escoffier4f2609b2013-03-20 07:35:37 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
23 <version>2.1</version>
24 <relativePath>../../../pom/pom.xml</relativePath>
25 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
28 <name>Apache Felix iPOJO - Online Manipulator</name>
29 <artifactId>org.apache.felix.ipojo.manipulator.online</artifactId>
Clement Escoffierd5a66c42013-05-15 13:30:34 +000030 <version>1.10.1-SNAPSHOT</version>
Clement Escoffier4f2609b2013-03-20 07:35:37 +000031
32 <description>
33 iPOJO online manipulator allowing install time manipulation of iPOJO bundle.
34 </description>
35 <url>http://felix.apache.org/site/apache-felix-ipojo-online-manipulator.html</url>
36
37 <properties>
38 <ipojo.import.packages>[1.8.0,2.0.0)</ipojo.import.packages>
39 <ipojo.manipulator.version>${project.version}</ipojo.manipulator.version>
40 </properties>
41
42 <dependencies>
43 <dependency>
44 <groupId>org.osgi</groupId>
45 <artifactId>org.osgi.core</artifactId>
46 <version>4.3.1</version>
47 </dependency>
48 <dependency>
49 <groupId>org.osgi</groupId>
50 <artifactId>org.osgi.compendium</artifactId>
51 <version>4.0.0</version>
52 </dependency>
53 <dependency>
54 <groupId>org.apache.felix</groupId>
55 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
56 <version>1.6.0</version>
57 </dependency>
58 <dependency>
59 <groupId>org.apache.felix</groupId>
60 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
61 <version>${project.version}</version>
62 </dependency>
63 <dependency>
64 <groupId>asm</groupId>
65 <artifactId>asm-all</artifactId>
66 <version>3.3.1</version>
67 <exclusions>
68 <exclusion>
69 <groupId>asm</groupId>
70 <artifactId>asm-tree</artifactId>
71 </exclusion>
72 </exclusions>
73 </dependency>
74 <dependency>
75 <groupId>org.mockito</groupId>
76 <artifactId>mockito-all</artifactId>
77 <version>1.9.5</version>
78 <scope>test</scope>
79 </dependency>
80 </dependencies>
81 <build>
82 <resources>
83 <resource>
84 <directory>src/main/resources</directory>
85 <filtering>true</filtering>
86 </resource>
87 </resources>
88 <plugins>
89 <plugin>
90 <groupId>org.apache.maven.plugins</groupId>
91 <artifactId>maven-compiler-plugin</artifactId>
92 <version>3.0</version>
93 <configuration>
94 <target>1.5</target>
95 <source>1.5</source>
96 <testTarget>1.5</testTarget>
97 <testSource>1.5</testSource>
98 </configuration>
99 </plugin>
100 <plugin>
101 <groupId>org.apache.felix</groupId>
102 <artifactId>maven-bundle-plugin</artifactId>
103 <version>2.3.7</version>
104 <extensions>true</extensions>
105 <configuration>
106 <instructions>
107 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
108 <Private-Package>org.apache.felix.ipojo.online.manipulator</Private-Package>
109 <Bundle-DocURL>
110 http://felix.apache.org/site/apache-felix-ipojo-online-manipulator.html
111 </Bundle-DocURL>
112 <Export-Package>
113 org.apache.felix.ipojo.manipulation*; version="${ipojo.manipulator.version}",
114 org.apache.felix.ipojo.xml.parser; version="${ipojo.manipulator.version}",
115 org.apache.felix.ipojo.manipulator*; version="${ipojo.manipulator.version}",
116 org.apache.felix.ipojo.annotations*; version="${ipojo.manipulator.version}",
117 </Export-Package>
118 <Private-Package>
119 org.objectweb.asm,
120 org.objectweb.asm.commons,
121 org.objectweb.asm.signature,
122 org.objectweb.asm.tree,
123 org.apache.felix.ipojo.online.manipulator
124 </Private-Package>
125 <Import-Package>!sun.io, org.osgi.framework;version=1.3, *
126 </Import-Package>
127 </instructions>
128 </configuration>
129 </plugin>
130 <plugin>
131 <groupId>org.apache.felix</groupId>
132 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffierd5a66c42013-05-15 13:30:34 +0000133 <version>1.10.1-SNAPSHOT</version>
Clement Escoffier4f2609b2013-03-20 07:35:37 +0000134 <executions>
135 <execution>
136 <goals>
137 <goal>ipojo-bundle</goal>
138 </goals>
139 <configuration>
140 <ignoreAnnotations>true</ignoreAnnotations>
141 </configuration>
142 </execution>
143 </executions>
144 </plugin>
145 <plugin>
146 <groupId>org.apache.maven.plugins</groupId>
147 <artifactId>maven-checkstyle-plugin</artifactId>
148 <configuration>
149 <enableRulesSummary>false</enableRulesSummary>
150 <violationSeverity>warning</violationSeverity>
151 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
152 </configuration>
153 </plugin>
154 <plugin>
155 <groupId>org.apache.rat</groupId>
156 <artifactId>apache-rat-plugin</artifactId>
157 <executions>
158 <execution>
159 <phase>verify</phase>
160 <goals>
161 <goal>check</goal>
162 </goals>
163 </execution>
164 </executions>
165 <configuration>
166 <!-- check src only (except remote resources additions) -->
167 <includes>
168 <include>src/**</include>
169 </includes>
170 <excludes>
171 <exclude>src/main/appended-resources/**</exclude>
172 <exclude>src/main/resources/META-INF/**</exclude>
173 </excludes>
174 </configuration>
175 </plugin>
176 </plugins>
177 </build>
Clement Escoffier4f2609b2013-03-20 07:35:37 +0000178</project>