2021-07-13 08:50:53 +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>
|
2022-02-23 14:39:11 +01:00
|
|
|
<version>3.2.5-SNAPSHOT</version>
|
2022-02-02 14:55:09 +01:00
|
|
|
<relativePath>../pom.xml</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>
|
2021-01-25 14:16:37 +01:00
|
|
|
<module>dhp-mdstore-manager</module>
|
2020-07-03 12:09:22 +02:00
|
|
|
<module>dnet-orgs-database-application</module>
|
2022-02-02 14:23:28 +01:00
|
|
|
<module>scholexplorer-api</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>
|
2021-01-27 12:17:38 +01:00
|
|
|
|
2020-07-03 09:09:59 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2021-01-27 12:17:38 +01:00
|
|
|
<!-- Openaire -->
|
2020-12-11 13:50:35 +01:00
|
|
|
<dependency>
|
2021-01-27 12:17:38 +01:00
|
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
|
|
|
<artifactId>dnet-apps-common</artifactId>
|
|
|
|
<version>${project.version}</version>
|
2020-12-11 13:50:35 +01:00
|
|
|
</dependency>
|
2020-07-03 09:09:59 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
2021-05-11 12:28:20 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-help-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>generate-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>effective-pom</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<output>${project.build.outputDirectory}/META-INF/maven/${project.groupId}/${project.artifactId}/effective-pom.xml</output>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
|
2020-07-03 09:09:59 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<executable>true</executable>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
</project>
|