• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2<!--
3  ~ Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
4  ~
5  ~ Licensed under the Apache License, Version 2.0 (the "License").
6  ~ You may not use this file except in compliance with the License.
7  ~ A copy of the License is located at
8  ~
9  ~  http://aws.amazon.com/apache2.0
10  ~
11  ~ or in the "license" file accompanying this file. This file is distributed
12  ~ on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
13  ~ express or implied. See the License for the specific language governing
14  ~ permissions and limitations under the License.
15  --><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">
16    <modelVersion>4.0.0</modelVersion>
17    <parent>
18        <groupId>software.amazon.awssdk</groupId>
19        <artifactId>metric-publishers</artifactId>
20        <version>2.24.3</version>
21    </parent>
22
23    <artifactId>cloudwatch-metric-publisher</artifactId>
24    <name>AWS Java SDK :: Metric Publishers :: CloudWatch</name>
25    <packaging>jar</packaging>
26
27    <properties>
28        <jre.version>1.8</jre.version>
29    </properties>
30
31    <dependencies>
32        <dependency>
33            <groupId>software.amazon.awssdk</groupId>
34            <artifactId>cloudwatch</artifactId>
35            <version>${awsjavasdk.version}</version>
36        </dependency>
37        <dependency>
38            <groupId>software.amazon.awssdk</groupId>
39            <artifactId>annotations</artifactId>
40            <version>${awsjavasdk.version}</version>
41        </dependency>
42        <dependency>
43            <groupId>software.amazon.awssdk</groupId>
44            <artifactId>sdk-core</artifactId>
45            <version>${awsjavasdk.version}</version>
46        </dependency>
47        <dependency>
48            <groupId>software.amazon.awssdk</groupId>
49            <artifactId>aws-core</artifactId>
50            <version>${awsjavasdk.version}</version>
51        </dependency>
52        <dependency>
53            <groupId>software.amazon.awssdk</groupId>
54            <artifactId>http-client-spi</artifactId>
55            <version>${awsjavasdk.version}</version>
56        </dependency>
57    </dependencies>
58</project>
59