Carsten Ziegeler | def0aa2 | 2009-09-24 12:09:34 +0000 | [diff] [blame] | 1 | <!-- |
| 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 Ziegeler | b972c2b | 2013-07-26 08:47:46 +0000 | [diff] [blame] | 25 | <version>2.1</version> |
Carsten Ziegeler | def0aa2 | 2009-09-24 12:09:34 +0000 | [diff] [blame] | 26 | <relativePath>../../../pom/pom.xml</relativePath> |
| 27 | </parent> |
| 28 | |
| 29 | <artifactId>org.apache.felix.webconsole.plugins.event</artifactId> |
| 30 | <packaging>bundle</packaging> |
Valentin Valchev | 1c98856 | 2014-12-16 11:11:07 +0000 | [diff] [blame] | 31 | <version>1.1.3-SNAPSHOT</version> |
Carsten Ziegeler | def0aa2 | 2009-09-24 12:09:34 +0000 | [diff] [blame] | 32 | |
| 33 | <name>Apache Felix Web Console Event Plugin</name> |
| 34 | <description> |
Felix Meschberger | 2408338 | 2009-09-25 21:40:38 +0000 | [diff] [blame] | 35 | This is a plugin for the Apache Felix OSGi web console for displaying |
Carsten Ziegeler | def0aa2 | 2009-09-24 12:09:34 +0000 | [diff] [blame] | 36 | OSGi events. |
| 37 | </description> |
| 38 | |
| 39 | <scm> |
Valentin Valchev | 1c98856 | 2014-12-16 11:11:07 +0000 | [diff] [blame] | 40 | <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 Ziegeler | def0aa2 | 2009-09-24 12:09:34 +0000 | [diff] [blame] | 43 | </scm> |
| 44 | |
| 45 | <build> |
Valentin Valchev | 21b137b | 2012-04-05 11:57:25 +0000 | [diff] [blame] | 46 | <!-- add UTF-8-to-ISO translated resources --> |
| 47 | <resources> |
| 48 | <resource> |
| 49 | <directory>${basedir}/src/main/resources</directory> |
| 50 | </resource> |
Valentin Valchev | 21b137b | 2012-04-05 11:57:25 +0000 | [diff] [blame] | 51 | </resources> |
| 52 | |
Carsten Ziegeler | def0aa2 | 2009-09-24 12:09:34 +0000 | [diff] [blame] | 53 | <plugins> |
Valentin Valchev | 699cc02 | 2010-03-15 14:17:58 +0000 | [diff] [blame] | 54 | <!-- 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 Meschberger | eefdec2 | 2012-03-26 15:56:06 +0000 | [diff] [blame] | 58 | <version>1.0-beta-1</version> |
Valentin Valchev | 699cc02 | 2010-03-15 14:17:58 +0000 | [diff] [blame] | 59 | <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 Ziegeler | def0aa2 | 2009-09-24 12:09:34 +0000 | [diff] [blame] | 71 | <plugin> |
| 72 | <groupId>org.apache.felix</groupId> |
| 73 | <artifactId>maven-bundle-plugin</artifactId> |
Valentin Valchev | 21b137b | 2012-04-05 11:57:25 +0000 | [diff] [blame] | 74 | <version>2.3.4</version> |
Carsten Ziegeler | def0aa2 | 2009-09-24 12:09:34 +0000 | [diff] [blame] | 75 | <extensions>true</extensions> |
| 76 | <configuration> |
| 77 | <instructions> |
| 78 | <Bundle-SymbolicName> |
Valentin Valchev | 21b137b | 2012-04-05 11:57:25 +0000 | [diff] [blame] | 79 | ${project.artifactId} |
Carsten Ziegeler | def0aa2 | 2009-09-24 12:09:34 +0000 | [diff] [blame] | 80 | </Bundle-SymbolicName> |
Carsten Ziegeler | def0aa2 | 2009-09-24 12:09:34 +0000 | [diff] [blame] | 81 | <Bundle-Activator> |
| 82 | org.apache.felix.webconsole.plugins.event.internal.Activator |
| 83 | </Bundle-Activator> |
| 84 | <Private-Package> |
Carsten Ziegeler | eed7e01 | 2010-02-03 16:44:16 +0000 | [diff] [blame] | 85 | org.apache.felix.webconsole.plugins.event.* |
Carsten Ziegeler | def0aa2 | 2009-09-24 12:09:34 +0000 | [diff] [blame] | 86 | </Private-Package> |
Carsten Ziegeler | def0aa2 | 2009-09-24 12:09:34 +0000 | [diff] [blame] | 87 | <DynamicImport-Package> |
Felix Meschberger | d727405 | 2011-12-17 13:57:38 +0000 | [diff] [blame] | 88 | org.osgi.service.event,org.osgi.service.cm, |
| 89 | javax.servlet,javax.servlet.http |
Carsten Ziegeler | def0aa2 | 2009-09-24 12:09:34 +0000 | [diff] [blame] | 90 | </DynamicImport-Package> |
Valentin Valchev | 88e3f0e | 2014-12-16 09:25:28 +0000 | [diff] [blame] | 91 | <Include-Resource>{maven-resources},OSGI-INF=target/classes/OSGI-INF</Include-Resource> |
Carsten Ziegeler | def0aa2 | 2009-09-24 12:09:34 +0000 | [diff] [blame] | 92 | </instructions> |
| 93 | </configuration> |
| 94 | </plugin> |
Carsten Ziegeler | b972c2b | 2013-07-26 08:47:46 +0000 | [diff] [blame] | 95 | <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 Ziegeler | def0aa2 | 2009-09-24 12:09:34 +0000 | [diff] [blame] | 108 | </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 Valchev | 88e3f0e | 2014-12-16 09:25:28 +0000 | [diff] [blame] | 128 | <version>4.0.0</version> |
Carsten Ziegeler | def0aa2 | 2009-09-24 12:09:34 +0000 | [diff] [blame] | 129 | <scope>provided</scope> |
| 130 | </dependency> |
Carsten Ziegeler | def0aa2 | 2009-09-24 12:09:34 +0000 | [diff] [blame] | 131 | </dependencies> |
| 132 | </project> |