hawkular-metrics-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.hawkular.metrics</groupId> <artifactId>hawkular-metrics-parent</artifactId> <version>0.5.0.Final</version> </dependency>
<?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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.hawkular</groupId> <artifactId>hawkular-parent</artifactId> <version>18</version> </parent> <groupId>org.hawkular.metrics</groupId> <artifactId>hawkular-metrics-parent</artifactId> <version>0.5.0.Final</version> <packaging>pom</packaging> <name>Hawkular Metrics</name> <description>Hawkular Metrics is a metrics collection, aggregation, visualization framework.</description> <url>http://www.hawkular.org/</url> <inceptionYear>2014</inceptionYear> <organization> <name>Red Hat, Inc.</name> <url>http://redhat.com/</url> </organization> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <name>Heiko W. Rupp</name> <email>hrupp@redhat.com</email> <url>http://pilhuhn.blogspot.com/</url> <timezone>+1</timezone> <properties> <picUrl>http://en.gravatar.com/pilhuhn</picUrl> </properties> </developer> <developer> <name>John Sanda</name> <url>http://johnsanda.blogspot.com/</url> <timezone>-5</timezone> </developer> <developer> <name>Mike Thompson</name> <timezone>-8</timezone> </developer> <developer> <name>Heiko Braun</name> <timezone>+1</timezone> </developer> <developer> <name>Stefan Negrea</name> <timezone>-6</timezone> </developer> </developers> <modules> <module>rx-java-driver</module> <module>schema-manager</module> <module>task-queue</module> <module>core/metrics-core-api</module> <module>core/metrics-core-impl</module> <module>api/metrics-api-jaxrs</module> <module>rest-tests</module> <module>clients</module> <module>containers</module> <module>load-tests</module> </modules> <scm> <connection>scm:git:ssh://github.com/hawkular/hawkular-metrics</connection> <developerConnection>scm:git:ssh://github.com/hawkular/hawkular-metrics</developerConnection> <url>https://github.com/hawkular/hawkular-metrics</url> </scm> <ciManagement> <system>Travis-ci</system> <url>https://travis-ci.org/hawkular/hawkular-metrics</url> </ciManagement> <distributionManagement> <site> <id>local-site-tmp</id> <name>Hawkular-metrics</name> <url>file:///tmp/rhq-metrics-site</url> </site> </distributionManagement> <properties> <maven.test.skip>${skipTests}</maven.test.skip> <test.keyspace>hawkulartest</test.keyspace> <nodes>127.0.0.1</nodes> <joda.time.version>2.3</joda.time.version> <testng.version>6.8.8</testng.version> <slf4j.version>1.7.7</slf4j.version> <log4j.version>1.2.17</log4j.version> <antlr.version>4.5</antlr.version> <rxjava.version>1.0.10</rxjava.version> <dropwizard.metrics.version>3.1.2</dropwizard.metrics.version> <rxjava-math.version>1.0.0</rxjava-math.version> <findbugs.version>3.0.0</findbugs.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>io.reactivex</groupId> <artifactId>rxjava</artifactId> <version>${rxjava.version}</version> </dependency> <dependency> <groupId>io.reactivex</groupId> <artifactId>rxjava-math</artifactId> <version>${rxjava-math.version}</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>${version.com.google.guava}</version> </dependency> <dependency> <groupId>org.antlr</groupId> <artifactId>antlr4-runtime</artifactId> <version>${antlr.version}</version> </dependency> <dependency> <groupId>io.dropwizard.metrics</groupId> <artifactId>metrics-core</artifactId> <version>${dropwizard.metrics.version}</version> </dependency> <!-- Tests dependencies --> <!-- TestNG is not Hawkular default testing tool --> <!-- While needed to run legacy tests, new tests should be based upon jUnit --> <!-- It can still be used when there's a good reason (compatibility with a testing framework for example) --> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>${testng.version}</version> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <!-- Conventions: * all org.apache.* plugins are managed in hawkular-parent * before adding new plugins here * look first to hawkular-parent * or consider adding the plugin to hawkular-parent --> <plugin> <groupId>org.antlr</groupId> <artifactId>antlr4-maven-plugin</artifactId> <version>${antlr.version}</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>animal-sniffer-maven-plugin</artifactId> <version>1.11</version> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>animal-sniffer-maven-plugin</artifactId> <!-- This depedency upgrade is a workaround for MANIMALSNIFFER-45 --> <!-- MANIMALSNIFFER-45 only affects users building with a JDK 8 --> <!-- It can be removed once MANIMALSNIFFER-45 is fixed --> <!-- See https://jira.codehaus.org/browse/MANIMALSNIFFER-45 --> <dependencies> <dependency> <groupId>org.ow2.asm</groupId> <artifactId>asm-all</artifactId> <version>5.0.3</version> </dependency> </dependencies> <!-- Copy paste and uncomment the following block in sub-projects where Java 7 compatibility is required --> <!--<executions>--> <!--<execution>--> <!--<id>java-api-check</id>--> <!--<configuration>--> <!--<signature>--> <!--<groupId>org.codehaus.mojo.signature</groupId>--> <!--<artifactId>java17</artifactId>--> <!--<version>1.0</version>--> <!--</signature>--> <!--</configuration>--> <!--<phase>verify</phase>--> <!--<goals>--> <!--<goal>check</goal>--> <!--</goals>--> <!--</execution>--> <!--</executions>--> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>${findbugs.version}</version> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.5.3</version> <extensions>true</extensions> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <configuration> <excludes combine.children="append"> <!-- Ignore Coverity files (useful on Travis) --> <exclude>cov-int/**</exclude> <exclude>analysis-results.tgz</exclude> <!-- Exclude the cassandra.yaml file since modified from the Cassandra upstream project.--> <exclude>src/main/docker/cassandra.yaml</exclude> </excludes> </configuration> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>${findbugs.version}</version> <configuration> <xmlOutput>true</xmlOutput> <effort>Max</effort> <threshold>Default</threshold> </configuration> <inherited>true</inherited> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>2.7</version> <configuration> <showAvatarImages>true</showAvatarImages> </configuration> </plugin> <plugin> <artifactId>maven-surefire-report-plugin</artifactId> <version>2.6</version> </plugin> <plugin> <!-- must be last plugin in the list --> <groupId>org.codehaus.mojo</groupId> <artifactId>dashboard-maven-plugin</artifactId> <version>1.0.0-beta-1</version> </plugin> </plugins> </reporting> <profiles> <profile> <id>publish</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>