2022-09-21 16:39:52 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2022-09-21 16:42:06 +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">
|
2022-09-21 16:39:52 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>eu.dnetlib</groupId>
|
|
|
|
<artifactId>uoa-global-parent</artifactId>
|
2022-09-21 16:42:06 +02:00
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2022-09-21 16:39:52 +02:00
|
|
|
<scm>
|
|
|
|
<developerConnection>scm:git:gitea@code-repo.d4science.org:MaDgIK/uoa-global-parent.git</developerConnection>
|
2022-09-21 16:42:06 +02:00
|
|
|
</scm>
|
2022-09-21 16:39:52 +02:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>dnet-deps</id>
|
|
|
|
<name>dnet-dependencies</name>
|
|
|
|
<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet-deps</url>
|
|
|
|
<layout>default</layout>
|
|
|
|
</repository>
|
|
|
|
<repository>
|
|
|
|
<id>dnet45-releases</id>
|
|
|
|
<name>D-Net 45 Releases</name>
|
|
|
|
<url>http://maven.research-infrastructures.eu/nexus/content/repositories/dnet45-releases</url>
|
|
|
|
<layout>default</layout>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<build>
|
|
|
|
<directory>target</directory>
|
|
|
|
<outputDirectory>target/classes</outputDirectory>
|
|
|
|
<finalName>${project.artifactId}-${project.version}</finalName>
|
|
|
|
<testOutputDirectory>target/test-classes</testOutputDirectory>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
|
|
<version>2.5</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2022-09-21 16:43:39 +02:00
|
|
|
<distributionManagement>
|
|
|
|
<repository>
|
|
|
|
<id>dnet45-releases</id>
|
|
|
|
<name>D-Net 45 Releases</name>
|
|
|
|
<url>https://maven.research-infrastructures.eu/nexus/content/repositories/dnet45-releases</url>
|
|
|
|
<layout>default</layout>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
2022-09-21 16:39:52 +02:00
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
</properties>
|
|
|
|
</project>
|