Skip to content
This repository has been archived by the owner on Jul 11, 2022. It is now read-only.

Bug 1311140 - EAP7 - missing rt filter modules for eap7 #238

Merged
merged 1 commit into from
Apr 12, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -568,8 +568,8 @@ checkIfRunning(16);]]>
tofile="${rhq.ear.dir}/rhq-downloads/connectors/rhq-rtfilter-subsystem-module.zip" />

<copy
file="${settings.localRepository}/org/rhq/helpers/rhq-rtfilter-wfly-10-subsystem/${rhq-rtfilter-wfly-10-subsystem.version}/rhq-rtfilter-wfly-10-subsystem-${rhq-rtfilter-wfly-10-subsystem.version}.zip"
tofile="${rhq.ear.dir}/rhq-downloads/connectors/rhq-rtfilter-wfly-10-subsystem-module.zip"/>
file="${settings.localRepository}/org/rhq/helpers/rhq-rtfilter-wfly-10-dist/${rhq-rtfilter-wfly-10-dist.version}/rhq-rtfilter-wfly-10-dist-${rhq-rtfilter-wfly-10-dist.version}.zip"
tofile="${rhq.ear.dir}/rhq-downloads/connectors/rhq-rtfilter-wfly-10-dist.zip"/>
</target>

<target name="prepare-bin-dir">
Expand Down
1 change: 1 addition & 0 deletions modules/helpers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
<module>rtfilter</module>
<module>rtfilter-subsystem</module>
<module>rtfilter-wfly-10-subsystem</module>
<module>rtfilter-wfly-10-dist</module>
<module>bundleGen</module>
<module>jeeGen</module>
<module>perftest-support</module>
Expand Down
77 changes: 77 additions & 0 deletions modules/helpers/rtfilter-wfly-10-dist/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
<?xml version="1.0" encoding="UTF-8"?>

<!--
~ RHQ Management Platform
~ Copyright 2016, Red Hat Middleware LLC, and individual contributors
~ as indicated by the @author tags. See the copyright.txt file in the
~ distribution for a full listing of individual contributors.
~
~ This program is free software; you can redistribute it and/or modify
~ it under the terms of the GNU General Public License as published by
~ the Free Software Foundation version 2 of the License.
~
~ This program 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 General Public License for more details.
~
~ You should have received a copy of the GNU General Public License along
~ with this program; if not, write to the Free Software Foundation, Inc.,
~ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.rhq.helpers</groupId>
<artifactId>rhq-helpers</artifactId>
<version>4.14.0-SNAPSHOT</version>
</parent>

<artifactId>rhq-rtfilter-wfly-10-dist</artifactId>
<packaging>pom</packaging>

<name>RHQ Response-Time Filter Distribution for Wildfly 10</name>

<dependencies>
<dependency>
<groupId>org.rhq.helpers</groupId>
<artifactId>rhq-rtfilter</artifactId>
<version>${project.version}</version>
<type>zip</type>
</dependency>
<dependency>
<groupId>org.rhq.helpers</groupId>
<artifactId>rhq-rtfilter-wfly-10-subsystem</artifactId>
<version>${project.version}</version>
<type>zip</type>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>src/main/scripts/assembly.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>module-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?xml version="1.0"?>

<!--
~ RHQ Management Platform
~ Copyright 2016, Red Hat Middleware LLC, and individual contributors
~ as indicated by the @author tags. See the copyright.txt file in the
~ distribution for a full listing of individual contributors.
~
~ This program is free software; you can redistribute it and/or modify
~ it under the terms of the GNU General Public License as published by
~ the Free Software Foundation version 2 of the License.
~
~ This program 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 General Public License for more details.
~
~ You should have received a copy of the GNU General Public License along
~ with this program; if not, write to the Free Software Foundation, Inc.,
~ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-->

<assembly>
<id>dist-assembly</id>
<formats>
<format>zip</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<dependencySets>
<dependencySet>
<unpack>true</unpack>
</dependencySet>
</dependencySets>
</assembly>
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -392,6 +392,7 @@
<rest-docs-generator.version>${rhq.pom.version}</rest-docs-generator.version>
<rhq-rtfilter-subsystem.version>${rhq.pom.version}</rhq-rtfilter-subsystem.version>
<rhq-rtfilter-wfly-10-subsystem.version>${rhq.pom.version}</rhq-rtfilter-wfly-10-subsystem.version>
<rhq-rtfilter-wfly-10-dist.version>${rhq.pom.version}</rhq-rtfilter-wfly-10-dist.version>
<rhq-aliases-plugin.version>${rhq.pom.version}</rhq-aliases-plugin.version>
<rhq-ant-bundle-plugin.version>${rhq.pom.version}</rhq-ant-bundle-plugin.version>
<rhq-apache-plugin.version>${rhq.pom.version}</rhq-apache-plugin.version>
Expand Down