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>
<groupId > eu.dnetlib</groupId>
<artifactId > uoa-admin-tools</artifactId>
2022-08-11 15:12:06 +02:00
<version > 2.0.5-SNAPSHOT</version>
2020-03-31 14:02:29 +02:00
<packaging > war</packaging>
<name > uoa-admin-tools</name>
2021-10-05 23:06:45 +02:00
<!-- Use parent with artifact spring - boot - starter - parent and add plugin with artifact spring - boot - maven - plugin in order to run springboot run command -->
2021-10-25 12:00:45 +02:00
<parent >
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-starter-parent</artifactId>
<version > 1.5.8.RELEASE</version>
<relativePath /> <!-- lookup parent from repository -->
</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>
<java.version > 1.8</java.version>
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 > org.springframework.boot</groupId>
<artifactId > spring-boot-starter-web</artifactId>
<exclusions >
<exclusion >
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency >
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-starter-tomcat</artifactId>
<scope > provided</scope>
</dependency>
<dependency >
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-starter-test</artifactId>
<scope > test</scope>
</dependency>
2021-02-25 12:57:22 +01:00
<dependency >
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-starter-security</artifactId>
</dependency>
2020-09-24 14:02:39 +02:00
2020-03-31 14:02:29 +02:00
<dependency >
<groupId > log4j</groupId>
<artifactId > log4j</artifactId>
<version > 1.2.17</version>
</dependency>
<dependency >
<groupId > com.google.code.gson</groupId>
<artifactId > gson</artifactId>
<version > 2.8.2</version>
</dependency>
<dependency >
<groupId > javax.mail</groupId>
<artifactId > mail</artifactId>
<version > 1.5.0-b01</version>
</dependency>
<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-07-27 14:52:33 +02:00
<version > 1.0.5</version>
2020-09-24 14:02:39 +02:00
</dependency>
2020-03-31 14:02:29 +02:00
</dependencies>
<build >
<plugins >
2021-10-05 23:06:45 +02:00
<!-- Use parent with artifact spring - boot - starter - parent and add plugin with artifact spring - boot - maven - plugin in order to run springboot run command -->
2021-10-25 12:00:45 +02:00
<plugin >
<groupId > org.springframework.boot</groupId>
<artifactId > spring-boot-maven-plugin</artifactId>
</plugin>
2020-03-31 14:02:29 +02:00
<!-- 3d answer: https://stackoverflow.com/questions/23260057/the - forked - vm - terminated - without - saying - properly - goodbye - vm - crash - or - system - exi -->
<!-- If you use openjdk there might be a problem with surfire plugin - uncomment following lines -->
<!-- <plugin> -->
<!-- <groupId>org.apache.maven.plugins</groupId> -->
<!-- <artifactId>maven - surefire - plugin</artifactId> -->
<!-- <version>2.19.1</version> -->
<!-- <configuration> -->
<!-- <!–<testFailureIgnore>true</testFailureIgnore>–> -->
<!-- <useSystemClassLoader>false</useSystemClassLoader> -->
<!-- </configuration> -->
<!-- </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>
2021-09-16 00:02:16 +02:00
<resources >
<resource >
<directory > src/main/resources</directory>
<filtering > true</filtering>
</resource>
</resources>
2020-03-31 14:02:29 +02:00
</build>
2021-11-18 00:11:44 +01:00
<repositories >
<repository >
<id > dnet45-releases</id>
<name > D-Net 45 Releases</name>
<url > http://maven.research-infrastructures.eu/nexus/content/repositories/dnet45-releases</url>
<releases >
<enabled > true</enabled>
</releases>
<snapshots >
<enabled > false</enabled>
</snapshots>
<layout > default</layout>
</repository>
</repositories>
2020-03-31 14:02:29 +02:00
</project>