You can download rhq-augeas-plugin-4.13.0.jar in this page.
Open Source
rhq-augeas-plugin-4.13.0.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/org.rhq/rhq-augeas-plugin/pom.properties META-INF/maven/org.rhq/rhq-augeas-plugin/pom.xml META-INF/rhq-plugin.xml lib/augeas-0.0.2.jar lib/jna-3.2.5.jar org.rhq.augeas.AugeasComponent.class org.rhq.augeas.AugeasProxy.class org.rhq.augeas.config.AugeasConfiguration.class org.rhq.augeas.config.AugeasConfigurationSimple.class org.rhq.augeas.config.AugeasModuleConfig.class org.rhq.augeas.node.AugeasNode.class org.rhq.augeas.node.AugeasNodeBase.class org.rhq.augeas.node.AugeasNodeLazy.class org.rhq.augeas.node.AugeasNodeReal.class org.rhq.augeas.node.AugeasRootNode.class org.rhq.augeas.tree.AugeasNodeBuffer.class org.rhq.augeas.tree.AugeasTree.class org.rhq.augeas.tree.AugeasTreeBuilder.class org.rhq.augeas.tree.AugeasTreeException.class org.rhq.augeas.tree.impl.AbstractAugeasTree.class org.rhq.augeas.tree.impl.AugeasTreeLazy.class org.rhq.augeas.tree.impl.AugeasTreeReal.class org.rhq.augeas.tree.impl.DefaultAugeasTreeBuilder.class org.rhq.augeas.util.Glob.class org.rhq.augeas.util.GlobFilter.class org.rhq.augeas.util.LensFilter.class org.rhq.plugins.augeas.AugeasConfigurationComponent.class org.rhq.plugins.augeas.AugeasConfigurationDiscoveryComponent.class org.rhq.plugins.augeas.AugeasPluginLifecycleListener.class org.rhq.plugins.augeas.helper.AugeasNode.class org.rhq.plugins.augeas.helper.AugeasRawConfigHelper.class org.rhq.plugins.augeas.helper.AugeasTranslator.class org.rhq.plugins.augeas.helper.AugeasUtility.class org.rhq.plugins.augeas.helper.AugeasVariable.class org.rhq.plugins.augeas.test.AbstractAugeasConfigurationComponentTest.class org.rhq.rhqtransform.AugeasRHQComponent.class org.rhq.rhqtransform.AugeasRhqException.class org.rhq.rhqtransform.AugeasToConfiguration.class org.rhq.rhqtransform.ConfigurationToAugeas.class org.rhq.rhqtransform.NameMap.class org.rhq.rhqtransform.RhqAugeasMapping.class org.rhq.rhqtransform.impl.AugeasToConfigurationSimple.class org.rhq.rhqtransform.impl.ConfigurationToAugeasSimple.class org.rhq.rhqtransform.impl.PluginDescriptorBasedAugeasConfiguration.class org.rhq.rhqtransform.impl.RhqAugeasMappingSimple.class
rhq-augeas-plugin-4.13.0.pom file content.
<?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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.rhq</groupId> <artifactId>rhq-plugins-parent</artifactId> <version>4.13.0</version> </parent> <groupId>org.rhq</groupId> <artifactId>rhq-augeas-plugin</artifactId> <packaging>jar</packaging> <name>RHQ Augeas Plugin</name> <description>An abstract plugin for configuring resources via Augeas</description> <properties> <augeas-bindings.version>0.0.2</augeas-bindings.version> <rhq.internal>false</rhq.internal> </properties> <dependencies> <dependency> <groupId>${rhq.groupId}</groupId> <artifactId>rhq-core-plugin-container</artifactId> <version>${rhq-core-plugin-container.version}</version> </dependency> <dependency> <groupId>${rhq.groupId}</groupId> <artifactId>rhq-platform-plugin</artifactId> <version>${rhq-platform-plugin.version}</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> </dependency> <dependency> <groupId>net.augeas</groupId> <artifactId>augeas</artifactId> <version>${augeas-bindings.version}</version> </dependency> <dependency> <groupId>net.java.dev.jna</groupId> <artifactId>jna</artifactId> <version>${jna.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy-plugin-libs</id> <phase>process-resources</phase> <goals> <goal>copy</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>net.java.dev.jna</groupId> <artifactId>jna</artifactId> <version>${jna.version}</version> </artifactItem> <artifactItem> <groupId>net.augeas</groupId> <artifactId>augeas</artifactId> <version>${augeas-bindings.version}</version> </artifactItem> </artifactItems> <outputDirectory>${project.build.outputDirectory}/lib</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> <repositories> <!-- for the augeas jar --> <repository> <id>jboss-thirdparty-uploads</id> <name>JBoss Third-Party Uploads</name> <url>https://repository.jboss.org/nexus/content/repositories/thirdparty-uploads/</url> <snapshots> <enabled>false</enabled> </snapshots> </repository> </repositories> <profiles> <profile> <id>dev</id> <properties> <rhq.rootDir>../../..</rhq.rootDir> <rhq.containerDir>${rhq.rootDir}/${rhq.devContainerServerPath}</rhq.containerDir> <rhq.deploymentDir>${rhq.containerDir}/${rhq.agentPluginDir}</rhq.deploymentDir> </properties> <build> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>deploy</id> <phase>compile</phase> <configuration> <target> <mkdir dir="${rhq.deploymentDir}" /> <property name="deployment.file" location="${rhq.deploymentDir}/${project.build.finalName}.jar" /> <echo>*** Updating ${deployment.file}...</echo> <jar destfile="${deployment.file}" basedir="${project.build.outputDirectory}" /> </target> </configuration> <goals> <goal>run</goal> </goals> </execution> <execution> <id>deploy-jar-meta-inf</id> <phase>package</phase> <configuration> <target> <property name="deployment.file" location="${rhq.deploymentDir}/${project.build.finalName}.jar" /> <echo>*** Updating META-INF dir in ${deployment.file}...</echo> <unjar src="${project.build.directory}/${project.build.finalName}.jar" dest="${project.build.outputDirectory}"> <patternset><include name="META-INF/**" /></patternset> </unjar> <jar destfile="${deployment.file}" manifest="${project.build.outputDirectory}/META-INF/MANIFEST.MF" update="true"> </jar> </target> </configuration> <goals> <goal>run</goal> </goals> </execution> <execution> <id>undeploy</id> <phase>clean</phase> <configuration> <target> <property name="deployment.file" location="${rhq.deploymentDir}/${project.build.finalName}.jar" /> <echo>*** Deleting ${deployment.file}...</echo> <delete file="${deployment.file}" /> </target> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy-commons-io-jar</id> <phase>process-resources</phase> <goals> <goal>copy</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>${commons-io.version}</version> </artifactItem> </artifactItems> <outputDirectory>${project.build.outputDirectory}/lib</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>
<dependency> <groupId>org.rhq</groupId> <artifactId>rhq-augeas-plugin</artifactId> <version>4.13.0</version> </dependency>
If you think the following rhq-augeas-plugin-4.13.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download rhq-augeas-plugin-4.13.0.jar file