Maven Repository - POM file for Console org.apache.felix.servicediagnostics.plugin 0.1.3 0.1.3

Summary

Apache Felix Web Console Service Diagnostics Plugin.

This is a plugin for the Apache Felix OSGi web console providing a graphical representation of services and missing required dependencies..

Declaration

Here is the list of declaration for org.apache.felix.servicediagnostics.plugin. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.apache.felix</groupId>
   <artifactId>org.apache.felix.servicediagnostics.plugin</artifactId>
   <version>0.1.3</version>
</dependency>

If you think this Maven repository POM file listing for org.apache.felix.servicediagnostics.plugin is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.





Depends on

The org.apache.felix.servicediagnostics.plugin-0.1.3 has 6 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
Scalascala-library 2.10.0
Standard library for the Scala Programming Language
435
JSONjson 20090211
JSON (JavaScript Object Notation) is a lightweight data-interchange format. It is easy for humans to read and write. It is easy for machines to parse and generate. It is based on a subset of the JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999. JSON is a te...
157

Plugin

The following plugins are used in the org.apache.felix.servicediagnostics.plugin-0.1.3.jar

  1. apache-rat-plugin
  2. maven-bundle-plugin

Packages

The following packages are defined in the org.apache.felix.servicediagnostics.plugin-0.1.3.jar

org.apache.felix.servicediagnostics
org.apache.felix.servicediagnostics.impl
org.apache.felix.servicediagnostics.shell
org.apache.felix.servicediagnostics.webconsole




POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
  
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.apache.felix</groupId>
    <artifactId>servicediagnostics.parent</artifactId>
    <version>0.1.3</version>
    <relativePath>../parent/pom.xml</relativePath>
  </parent>

  <artifactId>org.apache.felix.servicediagnostics.plugin</artifactId>
  <packaging>bundle</packaging>
  <version>0.1.3</version>
  <name>Apache Felix Web Console Service Diagnostics Plugin</name>
  <description>
    This is a plugin for the Apache Felix OSGi web console providing a graphical representation of services and missing required dependencies.
  </description>

  <scm>
    <connection>scm:svn:http://svn.apache.org/repos/asf/felix/releases/org.apache.felix.servicediagnostics.plugin-0.1.3</connection>
    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.servicediagnostics.plugin-0.1.3</developerConnection>
    <url>http://svn.apache.org/viewvc/felix/releases/org.apache.felix.servicediagnostics.plugin-0.1.3</url>
  </scm>

  <dependencies>
    <dependency>
      <groupId>org.apache.felix</groupId>
      <artifactId>org.apache.felix.webconsole</artifactId>
      <version>4.2.0</version>
    </dependency>
    <dependency>
      <groupId>org.apache.felix</groupId>
      <artifactId>org.apache.felix.shell</artifactId>
      <version>1.4.3</version>
    </dependency>
    <dependency>
      <groupId>org.apache.felix</groupId>
      <artifactId>org.apache.felix.gogo.command</artifactId>
      <version>0.10.0</version>
    </dependency>
    <dependency>
      <groupId>org.apache.felix</groupId>
      <artifactId>javax.servlet</artifactId>
      <version>1.0.0</version>
    </dependency>
    <dependency>
      <groupId>org.scala-lang</groupId>
      <artifactId>scala-library</artifactId>
      <version>2.10.0</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.json</groupId>
      <artifactId>json</artifactId>
      <version>20090211</version>
      <scope>provided</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <configuration>
          <instructions>
            <Bundle-Category>webconsole</Bundle-Category>
            <Bundle-SymbolicName> ${project.artifactId} </Bundle-SymbolicName>
            <Bundle-Activator>
              org.apache.felix.servicediagnostics.impl.Activator
            </Bundle-Activator>
            <Export-Package>
              org.apache.felix.servicediagnostics;version=0.1
            </Export-Package>
            <Import-Package>
            <!-- make imports on webconsole optional, so that core diagnostics engine can be used independently -->
              *;resolution:=optional
            </Import-Package>
            <Private-Package>
              org.apache.felix.servicediagnostics.impl,
              org.apache.felix.servicediagnostics.webconsole,
              org.apache.felix.servicediagnostics.shell,
            </Private-Package>
            <Include-Resource>
              {maven-resources}
            </Include-Resource>
          </instructions>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.rat</groupId>
        <artifactId>apache-rat-plugin</artifactId>
        <configuration>
          <includes>
            <include>src/**</include>
          </includes>
          <excludes>
            <exclude>src/main/appended-resources/**</exclude>
            <exclude>src/main/resources/html/js/jquery-1.7.1.min.js</exclude>
            <exclude>src/main/resources/html/js/raphael-1.3.1.min.js</exclude>
            <exclude>src/main/resources/html/js/graffle-1.3.1.js</exclude>
            <exclude>src/main/resources/html/js/graph.js</exclude>
            <exclude>src/main/resources/html/js/diagnostics.js</exclude>
          </excludes>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>