79 lines
2.8 KiB
XML
79 lines
2.8 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>net.irext.webapi</groupId>
|
||
|
|
<artifactId>irext-webapi</artifactId>
|
||
|
|
<version>1.5.0</version>
|
||
|
|
<packaging>jar</packaging>
|
||
|
|
|
||
|
|
<name>irext-remote-index</name>
|
||
|
|
<description>Indexing API for IRext remote controller</description>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
|
|
<java.version>1.8</java.version>
|
||
|
|
</properties>
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.squareup.okhttp</groupId>
|
||
|
|
<artifactId>okhttp</artifactId>
|
||
|
|
<version>2.7.5</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.squareup.okio</groupId>
|
||
|
|
<artifactId>okio</artifactId>
|
||
|
|
<version>3.4.0</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.google.code.gson</groupId>
|
||
|
|
<artifactId>gson</artifactId>
|
||
|
|
<version>2.8.9</version>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
<build>
|
||
|
|
<plugins>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
||
|
|
<version>3.6.3</version> <executions>
|
||
|
|
<execution>
|
||
|
|
<id>attach-javadocs</id>
|
||
|
|
<goals>
|
||
|
|
<goal>jar</goal>
|
||
|
|
</goals>
|
||
|
|
</execution>
|
||
|
|
</executions>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-source-plugin</artifactId>
|
||
|
|
<version>3.3.1</version>
|
||
|
|
<executions>
|
||
|
|
<execution>
|
||
|
|
<id>attach-sources</id>
|
||
|
|
<goals>
|
||
|
|
<goal>jar-no-fork</goal>
|
||
|
|
</goals>
|
||
|
|
</execution>
|
||
|
|
</executions>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
||
|
|
<version>3.2.4</version>
|
||
|
|
<executions>
|
||
|
|
<execution>
|
||
|
|
<id>sign-artifacts</id>
|
||
|
|
<goals>
|
||
|
|
<goal>sign</goal>
|
||
|
|
</goals>
|
||
|
|
</execution>
|
||
|
|
</executions>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
</project>
|