82 lines
2.6 KiB
XML
82 lines
2.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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>tv.mangrana</groupId>
|
|
<artifactId>mangrana-commons</artifactId>
|
|
<version>6.0.0</version>
|
|
|
|
<properties>
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!-- Rest interaction (Radarr & Sonarr APIs) -->
|
|
<dependency>
|
|
<groupId>org.jboss.resteasy</groupId>
|
|
<artifactId>resteasy-client</artifactId>
|
|
<version>3.5.0.Final</version>
|
|
</dependency>
|
|
|
|
<!-- Json parser & StringUtils (embeded) -->
|
|
<dependency>
|
|
<groupId>org.jsonschema2pojo</groupId>
|
|
<artifactId>jsonschema2pojo-core</artifactId>
|
|
<version>1.1.2</version>
|
|
</dependency>
|
|
|
|
<!-- Yaml management -->
|
|
<dependency>
|
|
<groupId>com.amihaiemil.web</groupId>
|
|
<artifactId>eo-yaml</artifactId>
|
|
<version>6.0.1</version>
|
|
</dependency>
|
|
|
|
<!-- CollectionUtils -->
|
|
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-collections4 -->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-collections4</artifactId>
|
|
<version>4.4</version>
|
|
</dependency>
|
|
|
|
<!-- UT -->
|
|
<dependency>
|
|
<groupId>org.testng</groupId>
|
|
<artifactId>testng</artifactId>
|
|
<version>7.0.0</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<version>3.2.1</version>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-sources</id>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>jar-no-fork</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>mangrana_repo</id>
|
|
<name>My self-hosted maven repo</name>
|
|
<url>https://mavenrepo.mangrana.tv/snapshots</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
|
|
</project> |