aggregator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.cloudiator.axe</groupId>
<artifactId>aggregator</artifactId>
<version>0.1.0</version>
</dependency><!--
~ Copyright (c) 2014-2015 University of Ulm
~
~ See the NOTICE file distributed with this work for additional information
~ regarding copyright ownership. 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>
<repositories>
<repository>
<id>ossrh</id>
<name>ossrh Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<kairosdb.version>2.0</kairosdb.version>
<log4j.version>2.3</log4j.version>
<commonsmath.version>3.5</commonsmath.version>
<zeromq.version>0.3.2</zeromq.version>
</properties>
<parent>
<groupId>io.github.cloudiator</groupId>
<artifactId>project</artifactId>
<version>0.1.0</version>
</parent>
<groupId>io.github.cloudiator.axe</groupId>
<artifactId>aggregator</artifactId>
<version>0.1.0</version>
<packaging>pom</packaging>
<modules>
<module>common</module>
<module>service</module>
</modules>
<name>axe-aggregator</name>
<description>The aggregator service of the axe component.
</description>
<url>https://github.com/cloudiator</url>
<scm>
<connection>scm:git:https://github.com/cloudiator/axe-aggregator.git</connection>
<developerConnection>scm:git:git@github.com:cloudiator/axe-aggregator.git
</developerConnection>
<url>https://github.com/cloudiator/axe-aggregator/</url>
<tag>aggregator-0.1.0</tag>
</scm>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.github.cloudiator.axe</groupId>
<artifactId>axe-aggregator-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.github.cloudiator</groupId>
<artifactId>colosseum-client</artifactId>
<version>0.1.0</version>
</dependency>
<dependency>
<groupId>org.kairosdb</groupId>
<artifactId>client</artifactId>
<version>${kairosdb.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
<version>${commonsmath.version}</version>
</dependency>
<dependency>
<groupId>org.zeromq</groupId>
<artifactId>jeromq</artifactId>
<version>${zeromq.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>io.github.cloudiator</groupId>
<artifactId>colosseum-client</artifactId>
</dependency>
<dependency>
<groupId>org.kairosdb</groupId>
<artifactId>client</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-math3</artifactId>
</dependency>
<dependency>
<groupId>org.zeromq</groupId>
<artifactId>jeromq</artifactId>
</dependency>
</dependencies>
</project>