2021-03-19 14:54:49 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-10 13:01:26 +02:00
|
|
|
<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">
|
2021-03-19 14:54:49 +01:00
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
|
|
|
<artifactId>cmd-line-apps</artifactId>
|
2022-10-21 09:40:40 +02:00
|
|
|
<version>3.3.3-SNAPSHOT</version>
|
2021-03-19 14:54:49 +01:00
|
|
|
<relativePath>../</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>dhp-broker-client</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>dhp-broker-client</name>
|
|
|
|
<description>D-Net Broker - Command Line Client</description>
|
|
|
|
|
|
|
|
<dependencies>
|
2021-03-22 11:24:35 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2021-03-19 14:54:49 +01:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<executable>true</executable>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|