Felix Meschberger | 97204d8 | 2012-01-31 12:47:45 +0000 | [diff] [blame] | 1 | <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor
|
| 2 | license agreements. See the NOTICE file distributed with this work for additional
|
| 3 | information regarding copyright ownership. The ASF licenses this file to
|
| 4 | you under the Apache License, Version 2.0 (the "License"); you may not use
|
| 5 | this file except in compliance with the License. You may obtain a copy of
|
| 6 | the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
|
| 7 | by applicable law or agreed to in writing, software distributed under the
|
| 8 | License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
|
| 9 | OF ANY KIND, either express or implied. See the License for the specific
|
| 10 | language governing permissions and limitations under the License. -->
|
| 11 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
| 12 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
| 13 |
|
| 14 | <modelVersion>4.0.0</modelVersion>
|
| 15 | <parent>
|
| 16 | <groupId>org.apache.felix</groupId>
|
| 17 | <artifactId>felix-parent</artifactId>
|
| 18 | <version>2.1</version>
|
| 19 | <relativePath>../../../pom/pom.xml</relativePath>
|
| 20 | </parent>
|
| 21 |
|
| 22 | <artifactId>org.apache.felix.webconsole.plugins.gogo</artifactId>
|
| 23 | <packaging>bundle</packaging>
|
| 24 | <version>0.0.1-SNAPSHOT</version>
|
| 25 |
|
Felix Meschberger | 494236c | 2013-01-21 21:26:52 +0000 | [diff] [blame] | 26 | <name>Apache Felix Web Console Gogo Shell Plugin</name>
|
Felix Meschberger | 97204d8 | 2012-01-31 12:47:45 +0000 | [diff] [blame] | 27 | <description>
|
| 28 | This is a plugin for the Apache Felix OSGi web console that provides access to Gogo shell commands.
|
| 29 | </description>
|
| 30 |
|
| 31 | <properties>
|
| 32 | <dollar>$</dollar>
|
| 33 | </properties>
|
| 34 |
|
| 35 | <scm>
|
| 36 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/gogo</connection>
|
| 37 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/webconsole-plugins/gogo</developerConnection>
|
| 38 | <url>http://svn.apache.org/viewvc/felix/trunk/webconsole-plugins/gogo</url>
|
| 39 | </scm>
|
| 40 |
|
| 41 | <build>
|
| 42 | <plugins>
|
| 43 | <!-- translate UTF-8 encoded properties files to ISO-8859-1 -->
|
| 44 | <plugin>
|
| 45 | <groupId>org.codehaus.mojo</groupId>
|
| 46 | <artifactId>native2ascii-maven-plugin</artifactId>
|
| 47 | <version>1.0-beta-1</version>
|
| 48 | <executions>
|
| 49 | <execution>
|
| 50 | <goals>
|
| 51 | <goal>native2ascii</goal>
|
| 52 | </goals>
|
| 53 | <configuration>
|
| 54 | <encoding>UTF-8</encoding>
|
| 55 | </configuration>
|
| 56 | </execution>
|
| 57 | </executions>
|
| 58 | </plugin>
|
| 59 |
|
| 60 | <plugin>
|
Felix Meschberger | 97204d8 | 2012-01-31 12:47:45 +0000 | [diff] [blame] | 61 | <artifactId>maven-compiler-plugin</artifactId>
|
| 62 | <configuration>
|
| 63 | <source>1.5</source>
|
| 64 | <target>1.5</target>
|
| 65 | </configuration>
|
| 66 | </plugin>
|
| 67 |
|
| 68 | <plugin>
|
| 69 | <groupId>org.apache.felix</groupId>
|
| 70 | <artifactId>maven-bundle-plugin</artifactId>
|
| 71 | <version>2.3.6</version>
|
| 72 | <extensions>true</extensions>
|
| 73 | <configuration>
|
| 74 | <instructions>
|
| 75 | <Bundle-SymbolicName>
|
| 76 | ${project.artifactId}
|
| 77 | </Bundle-SymbolicName>
|
| 78 | <Bundle-Activator>
|
| 79 | org.apache.felix.webconsole.plugins.gogo.impl.Activator
|
| 80 | </Bundle-Activator>
|
Felix Meschberger | 97204d8 | 2012-01-31 12:47:45 +0000 | [diff] [blame] | 81 | </instructions>
|
| 82 | </configuration>
|
| 83 | </plugin>
|
| 84 | </plugins>
|
| 85 | </build>
|
| 86 |
|
| 87 | <dependencies>
|
| 88 | <dependency>
|
| 89 | <groupId>org.apache.felix</groupId>
|
| 90 | <artifactId>org.apache.felix.gogo.runtime</artifactId>
|
| 91 | <version>0.6.1</version>
|
| 92 | <scope>provided</scope>
|
| 93 | </dependency>
|
| 94 | <dependency>
|
| 95 | <groupId>org.osgi</groupId>
|
| 96 | <artifactId>org.osgi.core</artifactId>
|
| 97 | <version>4.0.0</version>
|
| 98 | <scope>provided</scope>
|
| 99 | </dependency>
|
| 100 | <dependency>
|
| 101 | <groupId>org.osgi</groupId>
|
| 102 | <artifactId>org.osgi.compendium</artifactId>
|
| 103 | <version>4.0.0</version>
|
| 104 | <scope>provided</scope>
|
| 105 | </dependency>
|
| 106 | <dependency>
|
Felix Meschberger | 97204d8 | 2012-01-31 12:47:45 +0000 | [diff] [blame] | 107 | <groupId>org.apache.felix</groupId>
|
| 108 | <artifactId>org.apache.felix.webconsole</artifactId>
|
| 109 | <version>3.0.0</version>
|
| 110 | <scope>provided</scope>
|
| 111 | </dependency>
|
| 112 | <dependency>
|
| 113 | <groupId>javax.servlet</groupId>
|
| 114 | <artifactId>servlet-api</artifactId>
|
| 115 | <version>2.3</version>
|
| 116 | <scope>provided</scope>
|
| 117 | </dependency>
|
Felix Meschberger | 97204d8 | 2012-01-31 12:47:45 +0000 | [diff] [blame] | 118 | </dependencies>
|
| 119 | </project>
|