2020-03-31 14:02:29 +02:00
|
|
|
<?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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>uoa-admin-tools</artifactId>
|
2022-10-10 12:55:42 +02:00
|
|
|
<version>2.0.5-BETA-SNAPSHOT</version>
|
2020-03-31 14:02:29 +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>
|
2022-10-10 12:52:19 +02:00
|
|
|
</scm>
|
2021-10-25 12:00:45 +02:00
|
|
|
<parent>
|
2022-10-07 12:38:56 +02:00
|
|
|
<groupId>eu.dnetlib</groupId>
|
|
|
|
<artifactId>uoa-spring-boot-parent</artifactId>
|
2022-10-10 12:52:19 +02:00
|
|
|
<version>1.0.0</version>
|
2021-10-25 12:00:45 +02:00
|
|
|
</parent>
|
2020-03-31 14:02:29 +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>
|
2020-03-31 14:02:29 +02:00
|
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-mongodb</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.mail</groupId>
|
|
|
|
<artifactId>mail</artifactId>
|
|
|
|
<version>1.5.0-b01</version>
|
|
|
|
</dependency>
|
2022-10-07 12:38:56 +02:00
|
|
|
<!-- <dependency>-->
|
|
|
|
<!-- <groupId>commons-io</groupId>-->
|
|
|
|
<!-- <artifactId>commons-io</artifactId>-->
|
|
|
|
<!-- <version>20030203.000550</version>-->
|
|
|
|
<!-- </dependency>-->
|
2021-11-30 13:03:11 +01:00
|
|
|
<dependency> <!-- this dependency includes dependency to uoa-authorization-library -->
|
2020-09-24 14:02:39 +02:00
|
|
|
<groupId>eu.dnetlib</groupId>
|
|
|
|
<artifactId>uoa-admin-tools-library</artifactId>
|
2022-10-10 12:52:19 +02:00
|
|
|
<version>1.0.6</version>
|
|
|
|
</dependency>
|
|
|
|
<!--swagger-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
|
|
<version>${swagger-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<!--swagger official ui-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
|
|
<version>${swagger-version}</version>
|
2020-09-24 14:02:39 +02:00
|
|
|
</dependency>
|
2020-03-31 14:02:29 +02:00
|
|
|
</dependencies>
|
|
|
|
<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>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>repackage</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2021-10-05 23:06:45 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
|
|
<version>2.6</version>
|
|
|
|
<configuration>
|
|
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2020-03-31 14:02:29 +02:00
|
|
|
</plugins>
|
|
|
|
<finalName>uoa-admin-tools</finalName>
|
|
|
|
</build>
|
|
|
|
</project>
|