Download rhq-core-plugin-api-1.2.0.ga.jar file

Introduction

You can download rhq-core-plugin-api-1.2.0.ga.jar in this page.

License

Open Source

Type List

rhq-core-plugin-api-1.2.0.ga.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.rhq/rhq-core-plugin-api/pom.properties
META-INF/maven/org.rhq/rhq-core-plugin-api/pom.xml
org.rhq.core.pluginapi.configuration.ConfigurationFacet.class
org.rhq.core.pluginapi.configuration.ConfigurationUpdateReport.class
org.rhq.core.pluginapi.configuration.ValidationError.class
org.rhq.core.pluginapi.content.ContentContext.class
org.rhq.core.pluginapi.content.ContentFacet.class
org.rhq.core.pluginapi.content.ContentServices.class
org.rhq.core.pluginapi.content.version.PackageVersionData.class
org.rhq.core.pluginapi.content.version.PackageVersions.class
org.rhq.core.pluginapi.event.EventContext.class
org.rhq.core.pluginapi.event.EventPoller.class
org.rhq.core.pluginapi.event.log.Log4JLogEntryProcessor.class
org.rhq.core.pluginapi.event.log.LogEntryProcessor.class
org.rhq.core.pluginapi.event.log.LogFileEventPoller.class
org.rhq.core.pluginapi.event.log.LogFileInfo.class
org.rhq.core.pluginapi.event.log.MultiLineLogEntryProcessor.class
org.rhq.core.pluginapi.inventory.ApplicationServerComponent.class
org.rhq.core.pluginapi.inventory.CreateChildResourceFacet.class
org.rhq.core.pluginapi.inventory.CreateResourceReport.class
org.rhq.core.pluginapi.inventory.DeleteResourceFacet.class
org.rhq.core.pluginapi.inventory.DiscoveredResourceDetails.class
org.rhq.core.pluginapi.inventory.InvalidPluginConfigurationException.class
org.rhq.core.pluginapi.inventory.ProcessScanResult.class
org.rhq.core.pluginapi.inventory.ResourceComponent.class
org.rhq.core.pluginapi.inventory.ResourceContext.class
org.rhq.core.pluginapi.inventory.ResourceDiscoveryComponent.class
org.rhq.core.pluginapi.inventory.ResourceDiscoveryContext.class
org.rhq.core.pluginapi.measurement.MeasurementFacet.class
org.rhq.core.pluginapi.operation.OperationContext.class
org.rhq.core.pluginapi.operation.OperationFacet.class
org.rhq.core.pluginapi.operation.OperationResult.class
org.rhq.core.pluginapi.operation.OperationServices.class
org.rhq.core.pluginapi.operation.OperationServicesResult.class
org.rhq.core.pluginapi.operation.OperationServicesResultCode.class
org.rhq.core.pluginapi.plugin.PluginContext.class
org.rhq.core.pluginapi.plugin.PluginLifecycleListener.class
org.rhq.core.pluginapi.util.FileUtils.class
org.rhq.core.pluginapi.util.ObjectUtil.class
org.rhq.core.pluginapi.util.ProcessExecutionUtility.class
org.rhq.core.pluginapi.util.RegexSubstitution.class
org.rhq.core.pluginapi.util.ResponseTimeConfiguration.class
org.rhq.core.pluginapi.util.ResponseTimeLogParser.class

Pom

rhq-core-plugin-api-1.2.0.ga.pom file content.

<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.rhq</groupId>
      <artifactId>rhq-core-parent</artifactId>
      <version>1.2.0.GA</version>
   </parent>

   <groupId>org.rhq</groupId>
   <artifactId>rhq-core-plugin-api</artifactId>
   <packaging>jar</packaging>

   <name>RHQ Plugin API</name>
   <description>RHQ Plugin API used to write custom plugins</description>

  <scm>
    <connection>scm:svn:http://svn.rhq-project.org/repos/rhq/tags/RHQ_1_2_0_GA</connection>
    <developerConnection>scm:svn:http://svn.rhq-project.org/repos/rhq/tags/RHQ_1_2_0_GA</developerConnection>
  </scm>

  <properties>
    <scm.module.path>modules/core/plugin-api/</scm.module.path>
  </properties>

   <dependencies>

      <!-- Internal Deps -->

      <dependency>
         <groupId>${rhq.groupId}</groupId>
         <artifactId>rhq-core-domain</artifactId>
         <version>${project.version}</version>
         <scope>provided</scope>
      </dependency>

      <dependency>
         <groupId>${rhq.groupId}</groupId>
         <artifactId>rhq-core-native-system</artifactId>
         <version>${project.version}</version>
      </dependency>

      <!-- 3rd Party Deps -->

      <!-- TODO: This is a fix for the Javac bug requiring annotations to be
           available when compiling dependent classes. It is fixed in JDK 6 -->
      <dependency>
         <groupId>javax.persistence</groupId>
         <artifactId>persistence-api</artifactId>
         <version>1.0</version>
         <scope>provided</scope>
      </dependency>
      <dependency>
         <groupId>jboss.jboss-embeddable-ejb3</groupId>
         <artifactId>hibernate-all</artifactId>
         <version>1.0.0.Alpha9</version>
         <scope>provided</scope> <!-- by ON Container -->
         <!-- needed for referenced domain entities that use Hibernate annotations -->
      </dependency>

      <dependency>
         <groupId>javax.xml.bind</groupId>
         <artifactId>jaxb-api</artifactId>
         <!-- NOTE: The version is defined in the root POM's dependencyManagement section. -->
      </dependency>

      <dependency>
         <groupId>com.sun.xml.bind</groupId>
         <artifactId>jaxb-impl</artifactId>
         <!-- NOTE: The version is defined in the root POM's dependencyManagement section. -->
         <!--<scope>test</scope>  not sure about this -->
      </dependency>
            
   </dependencies>

   <pluginRepositories>
      <pluginRepository>
         <id>java.net</id>
         <name>java.net Maven Repository</name>
         <url>https://maven-repository.dev.java.net/nonav/repository</url>
         <layout>legacy</layout>
      </pluginRepository>
   </pluginRepositories>

   <repositories>
      <repository>
         <id>java.net</id>
         <name>java.net Maven Repository</name>
         <url>https://maven-repository.dev.java.net/nonav/repository</url>
         <layout>legacy</layout>
      </repository>
   </repositories>

</project>

POM Entry

<dependency>
   <groupId>org.rhq</groupId>
   <artifactId>rhq-core-plugin-api</artifactId>
   <version>1.2.0.ga</version>
</dependency>

Download

If you think the following rhq-core-plugin-api-1.2.0.ga.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download rhq-core-plugin-api-1.2.0.ga.jar file




PreviousNext

Related