| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| 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. |
| --> |
| <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.apache.qpid</groupId> |
| <artifactId>qpid-broker-parent</artifactId> |
| <version>7.0.7</version> |
| <relativePath>../../pom.xml</relativePath> |
| </parent> |
| |
| <artifactId>qpid-perftests-visualisation-jfc</artifactId> |
| <name>Apache Qpid Broker-J Performance Tests Visualisation JFC</name> |
| <description>Performance testing visualisation using JFreeChart</description> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.qpid</groupId> |
| <artifactId>qpid-perftests</artifactId> |
| <exclusions> |
| <exclusion> |
| <groupId>org.apache.qpid</groupId> |
| <artifactId>qpid-client</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| |
| <!-- TODO Eliminate - required for org.apache.qpid.util --> |
| <dependency> |
| <groupId>org.apache.qpid</groupId> |
| <artifactId>qpid-broker-core</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.derby</groupId> |
| <artifactId>derby</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| |
| <!-- Non Apache Licence deps, use provided scope so users must supply --> |
| <dependency> |
| <groupId>net.sourceforge.csvjdbc</groupId> |
| <artifactId>csvjdbc</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>jfree</groupId> |
| <artifactId>jfreechart</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| |
| <!-- test deps --> |
| <dependency> |
| <groupId>org.apache.qpid</groupId> |
| <artifactId>qpid-test-utils</artifactId> |
| <scope>test</scope> |
| </dependency> |
| |
| </dependencies> |
| |
| <build> |
| <resources> |
| <resource> |
| <directory>src/main/resources</directory> |
| </resource> |
| <resource> |
| <directory>src/main/java</directory> |
| <excludes> |
| <exclude>**/*.java/</exclude> |
| </excludes> |
| </resource> |
| </resources> |
| |
| <testResources> |
| <testResource> |
| <directory>src/test/java</directory> |
| <excludes> |
| <exclude>**/*.java</exclude> |
| </excludes> |
| </testResource> |
| <testResource> |
| <directory>src/test/resources</directory> |
| </testResource> |
| </testResources> |
| |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-deploy-plugin</artifactId> |
| <!--version specified in parent pluginManagement --> |
| <configuration> |
| <skip>true</skip> |
| </configuration> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.codehaus.mojo</groupId> |
| <artifactId>exec-maven-plugin</artifactId> |
| <version>${exec-maven-plugin-version}</version> |
| <executions> |
| <execution> |
| <goals> |
| <goal>java</goal> |
| </goals> |
| </execution> |
| </executions> |
| <configuration> |
| <mainClass>org.apache.qpid.disttest.charting.ChartingUtil</mainClass> |
| <classpathScope>compile</classpathScope> |
| <arguments> |
| <argument>chart-defs=${basedir}/../etc/chartdefs</argument> |
| </arguments> |
| <systemProperties> |
| <systemProperty> |
| <key>java.awt.headless</key><value>true</value> |
| </systemProperty> |
| <systemProperty> |
| <key>csvCurrentDir</key><value>${basedir}/../target/data/current</value> |
| </systemProperty> |
| <systemProperty> |
| <key>csvBaselineDir</key><value>${basedir}/../target/data/baseline</value> |
| </systemProperty> |
| </systemProperties> |
| </configuration> |
| </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> |
| <plugin> |
| <groupId>org.apache.rat</groupId> |
| <artifactId>apache-rat-plugin</artifactId> |
| <configuration> |
| <excludes> |
| <exclude>src/test/java/org/apache/qpid/disttest/charting/writer/expected-chart-summary.html</exclude> |
| </excludes> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <repositories> |
| <repository> |
| <id>csvjdbc.releases</id> |
| <url>http://csvjdbc.sourceforge.net/maven2</url> |
| <layout>default</layout> |
| <releases> |
| <enabled>true</enabled> |
| </releases> |
| <snapshots> |
| <enabled>false</enabled> |
| </snapshots> |
| </repository> |
| </repositories> |
| </project> |