Skip to content

Commit

Permalink
[HWKMETRICS-216] Create a common module for integration tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Negrea committed Sep 10, 2015
1 parent b3c36cb commit 3da8b8e
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 3 deletions.
4 changes: 1 addition & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,9 @@
<module>api/metrics-api-common</module>
<module>api/metrics-api-jaxrs</module>
<module>api/metrics-api-jaxrs-1.1</module>
<module>tests/rest-tests</module>
<module>tests/rest-integration-tests-jaxrs-1.1</module>
<module>tests</module>
<module>clients</module>
<module>containers</module>
<module>tests/load-tests</module>
</modules>

<scm>
Expand Down
50 changes: 50 additions & 0 deletions tests/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright 2014-2015 Red Hat, Inc. and/or its affiliates
and other contributors as indicated by the @author tags.
Licensed 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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<artifactId>hawkular-metrics-parent</artifactId>
<groupId>org.hawkular.metrics</groupId>
<version>0.7.0-SNAPSHOT</version>
</parent>

<artifactId>hawkular-metrics-integration-tests</artifactId>
<packaging>pom</packaging>

<name>Hawkular Metrics Integration Tests</name>
<description>Integration Tests for Hawkular Metrics</description>

<profiles>
<profile>
<id>test</id>
<activation>
<property>
<name>!skipTests</name>
</property>
</activation>
<modules>
<module>rest-tests</module>
<module>rest-integration-tests-jaxrs-1.1</module>
<module>load-tests</module>
</modules>
</profile>
</profiles>
</project>

0 comments on commit 3da8b8e

Please sign in to comment.