2020-07-13 10:47:35 +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">
|
2020-07-03 09:09:59 +02:00
|
|
|
|
|
|
|
<parent>
|
2020-07-08 09:54:54 +02:00
|
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
2020-07-03 09:09:59 +02:00
|
|
|
<artifactId>dnet-applications</artifactId>
|
2020-09-15 10:09:38 +02:00
|
|
|
<version>3.1.2-SNAPSHOT</version>
|
2020-07-08 09:54:54 +02:00
|
|
|
<relativePath>../</relativePath>
|
2020-07-03 09:09:59 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>apps</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>dhp-broker-application</module>
|
2020-08-28 09:40:04 +02:00
|
|
|
<module>dhp-broker-public-application</module>
|
2020-07-03 12:09:22 +02:00
|
|
|
<module>dnet-orgs-database-application</module>
|
2020-07-03 09:09:59 +02:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- Spring Boot -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<executable>true</executable>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
</project>
|