| <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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| <groupId>org.eclipse.osee.prometheus</groupId> |
| <artifactId>org.eclipse.osee.prometheus</artifactId> |
| <version>0.0.1-SNAPSHOT</version> |
| <build> |
| <sourceDirectory>src</sourceDirectory> |
| <plugins> |
| <plugin> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>3.8.1</version> |
| <configuration> |
| <release>11</release> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| <dependencies> |
| <!-- https://mvnrepository.com/artifact/com.amazonaws/aws-lambda-java-core --> |
| <dependency> |
| <groupId>io.prometheus</groupId> |
| <artifactId>simpleclient</artifactId> |
| <version>0.16.0</version> |
| </dependency> |
| <dependency> |
| <groupId>io.prometheus</groupId> |
| <artifactId>simpleclient_common</artifactId> |
| <version>0.8.1</version> |
| </dependency> |
| <dependency> |
| <groupId>io.prometheus</groupId> |
| <artifactId>simpleclient_httpserver</artifactId> |
| <version>0.16.0</version> |
| </dependency> |
| </dependencies> |
| </project> |