Maven Repository - POM file for JEE Library fractal-jmx 0.2.5 0.2.5

Summary

The Fractal JMX management framework.

Fractal JMX provides components to enable the JMX management of Fractal applications.

Declaration

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

<dependency>
   <groupId>org.objectweb.fractal.fractaljmx</groupId>
   <artifactId>fractal-jmx</artifactId>
   <version>0.2.5</version>
</dependency>

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

License

GNU Lesser General Public License.





Depends on

The fractal-jmx-0.2.5 has 4 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
Byte Codejulia-asm 2.5.1
Julia class generators
5

Plugin

The following plugins are used in the fractal-jmx-0.2.5.jar

  1. maven-jar-plugin
  2. maven-javadoc-plugin
  3. maven-source-plugin

Packages

The following packages are defined in the fractal-jmx-0.2.5.jar

org.objectweb.fractal.jmx.agent
org.objectweb.fractal.jmx.comm
org.objectweb.fractal.jmx.julia.stat
org.objectweb.fractal.jmx.listener




POM File Source

Here is the content of the POM file.

<?xml version="1.0"?>
<!-- 
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2 of the License, or (at your option) any later version.
  *
  * This library is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with this library; if not, write to the Free Software
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
-->
<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">

  <modelVersion>4.0.0</modelVersion>

  <parent>
    <groupId>org.objectweb.fractal.fractaljmx</groupId>
    <artifactId>parent</artifactId>
    <version>0.2.5</version>
  </parent>

  <groupId>org.objectweb.fractal.fractaljmx</groupId>
  <artifactId>fractal-jmx</artifactId>
  <name>The Fractal JMX management framework</name>

  <description>
    Fractal JMX provides components to enable the JMX management of
    Fractal applications
  </description>

  <scm>
    <connection>
      ${scm.connection}/fractaljmx/fractal-jmx
    </connection>
    <developerConnection>
      ${scm.developerConnection}/fractaljmx/fractal-jmx
    </developerConnection>
    <url>${scm.url}/fractaljmx/fractal-jmx</url>
  </scm>

  <dependencies>
    <dependency>
      <groupId>org.objectweb.fractal.fractaladl</groupId>
      <artifactId>fractal-adl</artifactId>
      <version>2.1.7</version>
    </dependency>

    <dependency>
      <groupId>org.objectweb.fractal.julia</groupId>
      <artifactId>julia-asm</artifactId>
      <version>2.5.1</version>
    </dependency>

    <dependency>
      <groupId>org.objectweb.fractal.julia</groupId>
      <artifactId>julia-runtime</artifactId>
      <version>2.5.1</version>
    </dependency>

    <dependency>
      <groupId>org.objectweb.fractal.julia</groupId>
      <artifactId>julia-mixins</artifactId>
      <version>2.5.1</version>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <archive>
            <manifestFile>
              ${basedir}/src/main/resources/META-INF/fractal-jmx.mf
            </manifestFile>
          </archive>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <executions>
          <execution>
            <id>attach-sources</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

  <reporting>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <configuration>
          <windowtitle>
            Fractal JMX Documentation, v0.1
          </windowtitle>
          <doctitle>Fractal JMX Documentation, v0.1</doctitle>
          <overview>
            ${basedir}/src/main/javadoc/overview.html
          </overview>
          <docfilessubdirs>true</docfilessubdirs>
          <excludedocfilessubdir>.svn</excludedocfilessubdir>
          <links>
            <link href="${monolog.url}" offline="true"
              packagelistLoc="${basedir}/src/main/javadoc/jdoc/monolog-list" />
            <link href="${fractal.url}" offline="true"
              packagelistLoc="${basedir}/src/main/javadoc/jdoc/fractal-list" />
            <link href="${julia.url}" offline="true"
              packagelistLoc="${basedir}/src/main/javadoc/jdoc/julia-list" />
            <link href="${asm.url}" offline="true"
              packagelistLoc="${basedir}/src/main/javadoc/jdoc/asm-list" />
            <link href="${jdk.url}" offline="true"
              packagelistLoc="${basedir}/src/main/javadoc/jdoc/jdk-list" />
            <link href="${j2ee.url}" offline="true"
              packagelistLoc="${basedir}/src/main/javadoc/jdoc//j2ee-list" />
          </links>
        </configuration>
      </plugin>
    </plugins>

  </reporting>

</project>