Maven Repository - POM file for Development rhq-pluginAnnotations 3.0.4 3.0.4

Summary

RHQ Plugin Annotations.

Annotations to help generate plugin descriptors.

Declaration

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

<dependency>
   <groupId>org.rhq.helpers</groupId>
   <artifactId>rhq-pluginAnnotations</artifactId>
   <version>3.0.4</version>
</dependency>

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

Plugin

The following plugins are used in the rhq-pluginAnnotations-3.0.4.jar

  1. maven-compiler-plugin
  2. maven-jar-plugin




Packages

The following packages are defined in the rhq-pluginAnnotations-3.0.4.jar

org.rhq.helpers.pluginAnnotations.agent

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.rhq</groupId>
      <artifactId>rhq-parent</artifactId>
      <version>4.0.1</version>
    </parent>

    <groupId>org.rhq.helpers</groupId>
    <artifactId>rhq-pluginAnnotations</artifactId>
    <packaging>jar</packaging>
    <version>3.0.4</version>

    <name>RHQ Plugin Annotations</name>
    <description>Annotations to help generate plugin descriptors</description>

    <scm>
      <connection>scm:git:ssh://git.fedorahosted.org/git/rhq.git/modules/helpers/pluginGen</connection>
      <developerConnection>scm:git:ssh://git.fedorahosted.org/git/rhq.git/modules/helpers/pluginGen</developerConnection>
   </scm>

   <build>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <version>2.2</version>
        <configuration>
          <archive>
            <manifest>
              <packageName>org.rhq.helpers.pluginAnnotations</packageName>
            </manifest>
          </archive>
        </configuration>
      </plugin>

    </plugins>

    </build>

</project>