Maven Repository - POM file for Library hawtio-plugin-mbean 1.2.3 1.2.3

Summary

${project.artifactId}.

hawtio :: Plugin MBean.

Declaration

Here is the list of declaration for hawtio-plugin-mbean. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>io.hawt</groupId>
   <artifactId>hawtio-plugin-mbean</artifactId>
   <version>1.2.3</version>
</dependency>

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

Depends on

The hawtio-plugin-mbean-1.2.3 has 1 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
Logslf4j-api 1.6.1
The slf4j API
621




Plugin

The following plugins are used in the hawtio-plugin-mbean-1.2.3.jar

  1. maven-bundle-plugin

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/maven-v4_0_0.xsd">
  <parent>
    <groupId>io.hawt</groupId>
    <artifactId>project</artifactId>
    <version>1.2.3</version>
  </parent>

  <modelVersion>4.0.0</modelVersion>
  <artifactId>hawtio-plugin-mbean</artifactId>
  <packaging>bundle</packaging>
  <name>${project.artifactId}</name>
  <description>hawtio :: Plugin MBean</description>

  <properties>
    <fuse.osgi.export>
      io.hawt.web.plugin
    </fuse.osgi.export>
    <fuse.osgi.import>
      io.hawt.web.plugin,
      javax.management,
      *;resolution:=optional
    </fuse.osgi.import>

    <slf4j-version>1.6.1</slf4j-version>

  </properties>

  <dependencies>

    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <version>${slf4j-version}</version>
      <scope>provided</scope>
    </dependency>

  </dependencies>

  <build>
    <plugins>

      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <version>${maven-bundle-plugin-version}</version>
        <extensions>true</extensions>
        <executions>
          <execution>
            <id>bundle-manifest</id>
            <phase>process-classes</phase>
            <goals>
              <goal>manifest</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <instructions>

            <Export-Package>${fuse.osgi.export}</Export-Package>
            <Import-Package>${fuse.osgi.import}</Import-Package>

            <Bundle-Name>${project.description}</Bundle-Name>
            <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
            <Implementation-Title>HawtIO</Implementation-Title>
            <Implementation-Version>${project.version}</Implementation-Version>

          </instructions>
        </configuration>
      </plugin>

    </plugins>
  </build>
</project>