diff options
author | Keith Wall <kwall@apache.org> | 2015-03-13 14:24:07 +0000 |
---|---|---|
committer | Keith Wall <kwall@apache.org> | 2015-03-13 14:24:07 +0000 |
commit | 24f6d1a9f55cf025c183b353da5feebed39d9d79 (patch) | |
tree | eb80403dd8c9ac8ddaa1d5a3b39d1564f48cc066 /qpid/java | |
parent | 3aa812fd7d1b1d4bb7713423872c8ee43e2fe3c8 (diff) | |
download | qpid-python-24f6d1a9f55cf025c183b353da5feebed39d9d79.tar.gz |
NO-JIRA: [Java Perf Test Framework] Add assembly for qpid-perftests-visualisation-jfc for convenience of those charting perf results. This artifact (like its parent, qpid-perftests) is not distributed.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1666463 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java')
-rw-r--r-- | qpid/java/perftests/visualisation-jfc/pom.xml | 19 | ||||
-rw-r--r-- | qpid/java/perftests/visualisation-jfc/src/main/assembly/qpid-perftests-visualisation-jfc-bin.xml | 50 |
2 files changed, 69 insertions, 0 deletions
diff --git a/qpid/java/perftests/visualisation-jfc/pom.xml b/qpid/java/perftests/visualisation-jfc/pom.xml index 2d0ccb60c3..bab40cede8 100644 --- a/qpid/java/perftests/visualisation-jfc/pom.xml +++ b/qpid/java/perftests/visualisation-jfc/pom.xml @@ -166,6 +166,25 @@ </dependency> </dependencies> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-assembly-plugin</artifactId> + <!--version specified in qpid-parent pluginManagement --> + <configuration> + <descriptors> + <descriptor>src/main/assembly/qpid-perftests-visualisation-jfc-bin.xml</descriptor> + </descriptors> + </configuration> + <executions> + <execution> + <id>make-assembly</id> + <phase>package</phase> + <goals> + <goal>single</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build> diff --git a/qpid/java/perftests/visualisation-jfc/src/main/assembly/qpid-perftests-visualisation-jfc-bin.xml b/qpid/java/perftests/visualisation-jfc/src/main/assembly/qpid-perftests-visualisation-jfc-bin.xml new file mode 100644 index 0000000000..f6bc7137f8 --- /dev/null +++ b/qpid/java/perftests/visualisation-jfc/src/main/assembly/qpid-perftests-visualisation-jfc-bin.xml @@ -0,0 +1,50 @@ +<?xml version='1.0'?> +<!-- + + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + +--> +<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd"> + <id>bin</id> + <formats> + <format>tar.gz</format> + </formats> + <baseDirectory>qpid-perftests-visualisation-jfc/${project.version}</baseDirectory> + <fileSets> + <fileSet> + <directory>${basedir}/src/main/assembly/</directory> + <outputDirectory>/</outputDirectory> + <includes> + <include>README.txt</include> + <include>NOTICE</include> + <include>LICENSE</include> + </includes> + <fileMode>0644</fileMode> + <directoryMode>0755</directoryMode> + </fileSet> + </fileSets> + <dependencySets> + <dependencySet> + <outputDirectory>/lib</outputDirectory> + <useProjectArtifact>true</useProjectArtifact> + </dependencySet> + </dependencySets> +</assembly> + |