blob: 2b1ab3eb0806c2bfb759602d62edb41a129a53cc [file] [log] [blame]
Carsten Ziegelerdef0aa22009-09-24 12:09:34 +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-->
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">
20
21 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.apache.felix</groupId>
24 <artifactId>felix-parent</artifactId>
25 <version>1.2.0</version>
26 <relativePath>../../../pom/pom.xml</relativePath>
27 </parent>
28
29 <artifactId>org.apache.felix.webconsole.plugins.event</artifactId>
30 <packaging>bundle</packaging>
Felix Meschberger37e06512010-03-26 12:51:05 +000031 <version>1.0.3-SNAPSHOT</version>
Carsten Ziegelerdef0aa22009-09-24 12:09:34 +000032
33 <name>Apache Felix Web Console Event Plugin</name>
34 <description>
Felix Meschberger24083382009-09-25 21:40:38 +000035 This is a plugin for the Apache Felix OSGi web console for displaying
Carsten Ziegelerdef0aa22009-09-24 12:09:34 +000036 OSGi events.
37 </description>
38
39 <scm>
Felix Meschberger37e06512010-03-26 12:51:05 +000040 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/event</connection>
41 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/event</developerConnection>
42 <url>http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/event</url>
Carsten Ziegelerdef0aa22009-09-24 12:09:34 +000043 </scm>
44
45 <build>
Valentin Valchev21b137b2012-04-05 11:57:25 +000046 <!-- add UTF-8-to-ISO translated resources -->
47 <resources>
48 <resource>
49 <directory>${basedir}/src/main/resources</directory>
50 </resource>
51 <resource>
52 <directory>target/classes</directory>
53 <includes>
54 <include>OSGI-INF/**</include>
55 </includes>
56 <filtering>false</filtering>
57 </resource>
58 </resources>
59
Carsten Ziegelerdef0aa22009-09-24 12:09:34 +000060 <plugins>
Valentin Valchev699cc022010-03-15 14:17:58 +000061 <!-- translate UTF-8 encoded properties files to ISO-8859-1 -->
62 <plugin>
63 <groupId>org.codehaus.mojo</groupId>
64 <artifactId>native2ascii-maven-plugin</artifactId>
Felix Meschbergereefdec22012-03-26 15:56:06 +000065 <version>1.0-beta-1</version>
Valentin Valchev699cc022010-03-15 14:17:58 +000066 <executions>
67 <execution>
68 <goals>
69 <goal>native2ascii</goal>
70 </goals>
71 <configuration>
72 <encoding>UTF-8</encoding>
73 </configuration>
74 </execution>
75 </executions>
76 </plugin>
77
Carsten Ziegelerdef0aa22009-09-24 12:09:34 +000078 <plugin>
79 <groupId>org.apache.felix</groupId>
80 <artifactId>maven-bundle-plugin</artifactId>
Valentin Valchev21b137b2012-04-05 11:57:25 +000081 <version>2.3.4</version>
Carsten Ziegelerdef0aa22009-09-24 12:09:34 +000082 <extensions>true</extensions>
83 <configuration>
84 <instructions>
85 <Bundle-SymbolicName>
Valentin Valchev21b137b2012-04-05 11:57:25 +000086 ${project.artifactId}
Carsten Ziegelerdef0aa22009-09-24 12:09:34 +000087 </Bundle-SymbolicName>
Carsten Ziegelerdef0aa22009-09-24 12:09:34 +000088 <Bundle-Activator>
89 org.apache.felix.webconsole.plugins.event.internal.Activator
90 </Bundle-Activator>
91 <Private-Package>
Carsten Ziegelereed7e012010-02-03 16:44:16 +000092 org.apache.felix.webconsole.plugins.event.*
Carsten Ziegelerdef0aa22009-09-24 12:09:34 +000093 </Private-Package>
Carsten Ziegelerdef0aa22009-09-24 12:09:34 +000094 <DynamicImport-Package>
Felix Meschbergerd7274052011-12-17 13:57:38 +000095 org.osgi.service.event,org.osgi.service.cm,
96 javax.servlet,javax.servlet.http
Carsten Ziegelerdef0aa22009-09-24 12:09:34 +000097 </DynamicImport-Package>
98 </instructions>
99 </configuration>
100 </plugin>
101 </plugins>
102 </build>
103
104 <dependencies>
105 <dependency>
106 <groupId>javax.servlet</groupId>
107 <artifactId>servlet-api</artifactId>
108 <version>2.4</version>
109 <scope>provided</scope>
110 </dependency>
111
112 <dependency>
113 <groupId>org.osgi</groupId>
114 <artifactId>org.osgi.core</artifactId>
115 <version>4.0.0</version>
116 <scope>provided</scope>
117 </dependency>
118 <dependency>
119 <groupId>org.osgi</groupId>
120 <artifactId>org.osgi.compendium</artifactId>
121 <version>4.0.0</version>
122 <scope>provided</scope>
123 </dependency>
Carsten Ziegelerdef0aa22009-09-24 12:09:34 +0000124 </dependencies>
125</project>