blob: b5390e4f509ccf00bef86360869643be9380b5aa [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>
Carsten Ziegelerb972c2b2013-07-26 08:47:46 +000025 <version>2.1</version>
Carsten Ziegelerdef0aa22009-09-24 12:09:34 +000026 <relativePath>../../../pom/pom.xml</relativePath>
27 </parent>
28
29 <artifactId>org.apache.felix.webconsole.plugins.event</artifactId>
30 <packaging>bundle</packaging>
Carsten Ziegeler0183d002013-07-29 12:29:54 +000031 <version>1.1.1-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>
Carsten Ziegeler0183d002013-07-29 12:29:54 +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>
Valentin Valchev21b137b2012-04-05 11:57:25 +000051 </resources>
52
Carsten Ziegelerdef0aa22009-09-24 12:09:34 +000053 <plugins>
Valentin Valchev699cc022010-03-15 14:17:58 +000054 <!-- translate UTF-8 encoded properties files to ISO-8859-1 -->
55 <plugin>
56 <groupId>org.codehaus.mojo</groupId>
57 <artifactId>native2ascii-maven-plugin</artifactId>
Felix Meschbergereefdec22012-03-26 15:56:06 +000058 <version>1.0-beta-1</version>
Valentin Valchev699cc022010-03-15 14:17:58 +000059 <executions>
60 <execution>
61 <goals>
62 <goal>native2ascii</goal>
63 </goals>
64 <configuration>
65 <encoding>UTF-8</encoding>
66 </configuration>
67 </execution>
68 </executions>
69 </plugin>
70
Carsten Ziegelerdef0aa22009-09-24 12:09:34 +000071 <plugin>
72 <groupId>org.apache.felix</groupId>
73 <artifactId>maven-bundle-plugin</artifactId>
Valentin Valchev21b137b2012-04-05 11:57:25 +000074 <version>2.3.4</version>
Carsten Ziegelerdef0aa22009-09-24 12:09:34 +000075 <extensions>true</extensions>
76 <configuration>
77 <instructions>
78 <Bundle-SymbolicName>
Valentin Valchev21b137b2012-04-05 11:57:25 +000079 ${project.artifactId}
Carsten Ziegelerdef0aa22009-09-24 12:09:34 +000080 </Bundle-SymbolicName>
Carsten Ziegelerdef0aa22009-09-24 12:09:34 +000081 <Bundle-Activator>
82 org.apache.felix.webconsole.plugins.event.internal.Activator
83 </Bundle-Activator>
84 <Private-Package>
Carsten Ziegelereed7e012010-02-03 16:44:16 +000085 org.apache.felix.webconsole.plugins.event.*
Carsten Ziegelerdef0aa22009-09-24 12:09:34 +000086 </Private-Package>
Carsten Ziegelerdef0aa22009-09-24 12:09:34 +000087 <DynamicImport-Package>
Felix Meschbergerd7274052011-12-17 13:57:38 +000088 org.osgi.service.event,org.osgi.service.cm,
89 javax.servlet,javax.servlet.http
Carsten Ziegelerdef0aa22009-09-24 12:09:34 +000090 </DynamicImport-Package>
Valentin Valchev88e3f0e2014-12-16 09:25:28 +000091 <Include-Resource>{maven-resources},OSGI-INF=target/classes/OSGI-INF</Include-Resource>
Carsten Ziegelerdef0aa22009-09-24 12:09:34 +000092 </instructions>
93 </configuration>
94 </plugin>
Carsten Ziegelerb972c2b2013-07-26 08:47:46 +000095 <plugin>
96 <groupId>org.apache.rat</groupId>
97 <artifactId>apache-rat-plugin</artifactId>
98 <configuration>
99 <includes>
100 <include>src/**</include>
101 </includes>
102 <excludes>
103 <exclude>src/main/resources/res/events.html</exclude>
104 <exclude>src/main/appended-resources/**</exclude>
105 </excludes>
106 </configuration>
107 </plugin>
Carsten Ziegelerdef0aa22009-09-24 12:09:34 +0000108 </plugins>
109 </build>
110
111 <dependencies>
112 <dependency>
113 <groupId>javax.servlet</groupId>
114 <artifactId>servlet-api</artifactId>
115 <version>2.4</version>
116 <scope>provided</scope>
117 </dependency>
118
119 <dependency>
120 <groupId>org.osgi</groupId>
121 <artifactId>org.osgi.core</artifactId>
122 <version>4.0.0</version>
123 <scope>provided</scope>
124 </dependency>
125 <dependency>
126 <groupId>org.osgi</groupId>
127 <artifactId>org.osgi.compendium</artifactId>
Valentin Valchev88e3f0e2014-12-16 09:25:28 +0000128 <version>4.0.0</version>
Carsten Ziegelerdef0aa22009-09-24 12:09:34 +0000129 <scope>provided</scope>
130 </dependency>
Carsten Ziegelerdef0aa22009-09-24 12:09:34 +0000131 </dependencies>
132</project>