uoa-admin-tools/pom.xml

52 lines
2.1 KiB
XML
Raw Normal View History

<?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">
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>
<version>3.0.0-BETA</version>
2024-10-21 10:48:35 +02:00
<packaging>war</packaging>
<name>uoa-admin-tools</name>
<scm>
2022-10-20 09:51:34 +02:00
<developerConnection>scm:git:gitea@code-repo.d4science.org:MaDgIK/uoa-admin-tools.git</developerConnection>
<tag>uoa-admin-tools-3.0.0-BETA</tag>
</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>
<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>
<dependency>
2024-10-21 10:48:35 +02:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-mongodb</artifactId>
</dependency>
<dependency>
<groupId>eu.dnetlib</groupId>
<artifactId>uoa-admin-tools-library</artifactId>
2024-10-16 22:35:13 +02:00
<version>2.0.1</version>
</dependency>
</dependencies>
2024-10-21 10:48:35 +02:00
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<mainClass>eu.dnetlib.uoaadmintools.UoaAdminToolsApplication</mainClass>
<executable>true</executable>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
</plugin>
2024-10-21 10:48:35 +02:00
</plugins>
<finalName>uoa-admin-tools</finalName>
2024-10-21 10:48:35 +02:00
</build>
</project>