rhq-postfix-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.rhq</groupId>
<artifactId>rhq-postfix-plugin</artifactId>
<version>4.13.0</version>
</dependency><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-postfix-plugin</artifactId>
<packaging>jar</packaging>
<name>RHQ Augeas-based Postfix Plugin</name>
<description>A plugin for managing the RHEL Postfix server</description>
<properties>
<ant.contrib.version>1.0b3</ant.contrib.version>
</properties>
<dependencies>
<dependency>
<groupId>ant-contrib</groupId>
<artifactId>ant-contrib</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.rhq</groupId>
<artifactId>rhq-augeas-plugin</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>integration-tests</id>
<activation>
<property>
<name>maven.test.skip</name>
<value>!true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>pre-integration-test</phase>
<configuration>
<target>
<taskdef resource="net/sf/antcontrib/antcontrib.properties">
<classpath>
<pathelement location="${settings.localRepository}/ant-contrib/ant-contrib/${ant.contrib.version}/ant-contrib-${ant.contrib.version}.jar" />
</classpath>
</taskdef>
<echo>Setting up integration test plugin container environment under target/itest/...</echo>
<property name="settings.localRepository" location="${user.home}/.m2/repository" />
<mkdir dir="target/itest/plugins" />
<copy toDir="target/itest/plugins" flatten="true" verbose="true">
<!-- the plugin jar for this plugin -->
<fileset dir="${project.build.directory}" includes="${project.artifactId}-${project.version}.jar" />
<!-- the plugin jars for the plugins this plugin depends on -->
<fileset dir="${settings.localRepository}/">
<include name="org/rhq/rhq-platform-plugin/${rhq-platform-plugin.version}/rhq-platform-plugin-${rhq-platform-plugin.version}.jar" />
<include name="org/rhq/rhq-augeas-plugin/${project.version}/rhq-augeas-plugin-${project.version}.jar" />
</fileset>
</copy>
<!-- copy SIGAR jar and native libs into the lib dir -->
<mkdir dir="target/itest/lib" />
<unzip dest="target/itest/lib">
<fileset dir="${settings.localRepository}/org/hyperic/sigar-dist/${sigar.version}" includes="*.zip" />
<patternset>
<include name="**/lib/sigar.jar" />
<include name="**/lib/bcel*.jar" />
<include name="**/lib/*.so" />
<include name="**/lib/*.sl" />
<include name="**/lib/*.dll" />
<include name="**/lib/*.dylib" />
</patternset>
</unzip>
<move todir="target/itest/lib" flatten="true">
<fileset dir="target/itest/lib/hyperic-sigar-${sigar.zip.version}">
<include name="**/lib/*" />
</fileset>
</move>
<delete dir="target/itest/lib/hyperic-sigar-${sigar.zip.version}" />
<unzip dest="target/itest/lib">
<fileset dir="${augeas.zip.location}" includes="${augeas.zip.mask}" />
<patternset>
<include name="**/lib*/*.so" />
<include name="**/lib*/*.so.*" />
</patternset>
</unzip>
<!-- by default deploy the 32bit augeas libs -->
<move todir="target/itest/lib/">
<fileset dir="target/itest/lib/augeas-native-${augeas.zip.version}/lib">
<include name="**/*.so" />
<include name="**/*.so.*" />
</fileset>
</move>
<if>
<or>
<os family="unix" arch="x86_64" />
<os family="unix" arch="amd64" />
</or>
<then>
<!-- overwrite with 64bits if needed -->
<move todir="target/itest/lib/">
<fileset dir="target/itest/lib/augeas-native-${augeas.zip.version}/lib64">
<include name="**/*.so" />
<include name="**/*.so.*" />
</fileset>
</move>
</then>
</if>
<delete dir="target/itest/lib/augeas-native-${augeas.zip.version}" />
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Integration testing voodoo to load and test this plugin with its plugin dependencies -->
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
<executions>
<execution>
<id>surefire-it</id>
<phase>integration-test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<skip>${maven.test.skip}</skip>
<excludedGroups>${rhq.testng.excludedGroups}</excludedGroups>
<useSystemClassLoader>true</useSystemClassLoader>
<!--<argLine>${jacoco.integration-test.args} -Dorg.hyperic.sigar.path=${basedir}/target/itest/lib -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=y</argLine>-->
<environmentVariables>
<LD_LIBRARY_PATH>${basedir}/target/itest/lib:${env.LD_LIBRARY_PATH}</LD_LIBRARY_PATH>
</environmentVariables>
<systemPropertyVariables>
<org.hyperic.sigar.path>${basedir}/target/itest/lib</org.hyperic.sigar.path>
<jna.platform.library.path>${basedir}/target/itest/lib</jna.platform.library.path>
<project.artifactId>${project.artifactId}</project.artifactId>
<project.version>${project.version}</project.version>
</systemPropertyVariables>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<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>
</plugins>
</build>
</profile>
</profiles>
</project>