2020-03-31 14:02:29 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2024-10-21 10:48:57 +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">
|
2024-10-15 09:27:29 +02:00
|
|
|
<parent>
|
|
|
|
<groupId>eu.dnetlib</groupId>
|
|
|
|
<artifactId>uoa-spring-boot-parent</artifactId>
|
|
|
|
<version>2.0.3</version>
|
|
|
|
</parent>
|
2024-10-21 10:48:35 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>uoa-admin-tools</artifactId>
|
2024-10-21 10:48:57 +02:00
|
|
|
<version>3.0.0-BETA</version>
|
2024-10-21 10:48:35 +02:00
|
|
|
<packaging>war</packaging>
|
|
|
|
<name>uoa-admin-tools</name>
|
2022-10-10 12:52:19 +02:00
|
|
|
<scm>
|
2022-10-20 09:51:34 +02:00
|
|
|
<developerConnection>scm:git:gitea@code-repo.d4science.org:MaDgIK/uoa-admin-tools.git</developerConnection>
|
2024-10-21 10:48:57 +02:00
|
|
|
<tag>uoa-admin-tools-3.0.0-BETA</tag>
|
2022-10-10 12:52:19 +02:00
|
|
|
</scm>
|
2024-10-21 10:48:35 +02:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
2021-09-16 00:02:16 +02:00
|
|
|
<timestamp>${maven.build.timestamp}</timestamp>
|
|
|
|
<maven.build.timestamp.format>E MMM dd HH:mm:ss z yyyy</maven.build.timestamp.format>
|
2024-10-21 10:48:35 +02:00
|
|
|
</properties>
|
|
|
|
<dependencies>
|
2020-03-31 14:02:29 +02:00
|
|
|
<dependency>
|
2024-10-21 10:48:35 +02:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-mongodb</artifactId>
|
2020-03-31 14:02:29 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-09-24 14:02:39 +02:00
|
|
|
<groupId>eu.dnetlib</groupId>
|
|
|
|
<artifactId>uoa-admin-tools-library</artifactId>
|
2024-10-16 22:35:13 +02:00
|
|
|
<version>2.0.1</version>
|
2020-09-24 14:02:39 +02:00
|
|
|
</dependency>
|
2020-03-31 14:02:29 +02:00
|
|
|
</dependencies>
|
2024-10-21 10:48:35 +02:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2021-10-25 12:00:45 +02:00
|
|
|
<plugin>
|
2022-10-07 12:38:56 +02:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>eu.dnetlib.uoaadmintools.UoaAdminToolsApplication</mainClass>
|
|
|
|
<executable>true</executable>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2021-10-05 23:06:45 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
</plugin>
|
2024-10-21 10:48:35 +02:00
|
|
|
</plugins>
|
2020-03-31 14:02:29 +02:00
|
|
|
<finalName>uoa-admin-tools</finalName>
|
2024-10-21 10:48:35 +02:00
|
|
|
</build>
|
2020-03-31 14:02:29 +02:00
|
|
|
</project>
|