${project.artifactId}.
hawtio :: Plugin MBean.
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.
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.
Category | Artifact | Depended By Count |
---|---|---|
Log | slf4j-api 1.6.1 The slf4j API | 621 |
The following plugins are used in the hawtio-plugin-mbean-1.2.3.jar
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>