Files
promql_java_client/promql_client/pom.xml
Andrey Gumirov 2ad7a09f31
Some checks failed
Build with maven / build (push) Failing after 1m6s
Added ci builds and commented out tests, that are using some external prometheus (?!?1??)
2025-01-21 00:03:14 +07:00

49 lines
1.3 KiB
XML

<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>
<groupId>com.bdwise.prometheus.client</groupId>
<artifactId>promql_client</artifactId>
<version>0.1.0</version>
<packaging>jar</packaging>
<name>promql_client</name>
<url>http://maven.apache.org</url>
<repositories>
<repository>
<id>gitea</id>
<url>https://gitea.gavt45.ru/api/packages/public/maven</url>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>gitea</id>
<url>https://gitea.gavt45.ru/api/packages/public/maven</url>
</repository>
<!-- <snapshotRepository>
<id>gitea</id>
<url>https://gitea.gavt45.ru/api/packages/public/maven</url>
</snapshotRepository> -->
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.1</version>
</dependency>
</dependencies>
</project>