file-transformer-rda-json/pom.xml

62 lines
1.9 KiB
XML
Raw Normal View History

2024-01-26 10:07:11 +01: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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.3</version>
2024-01-26 10:07:11 +01:00
<relativePath/>
</parent>
<groupId>gr.cite.opendmp</groupId>
<artifactId>file-transformer-rda-parent</artifactId>
<version>${revision}</version>
<packaging>pom</packaging>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<maven.compiler.release>21</maven.compiler.release>
<revision>1.0.0-SNAPSHOT</revision>
2024-01-26 10:07:11 +01:00
</properties>
<dependencies>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>2.0</version>
</dependency>
2024-03-22 11:21:10 +01:00
<dependency>
<groupId>gr.cite.opendmp</groupId>
<artifactId>file-transformer-base</artifactId>
2024-04-10 12:20:25 +02:00
<version>0.0.11</version>
2024-03-22 11:21:10 +01:00
</dependency>
2024-01-26 10:07:11 +01:00
</dependencies>
<modules>
<module>core</module>
<module>web</module>
</modules>
2024-03-08 17:35:10 +01:00
<profiles>
<profile>
<id>dev</id>
2024-03-08 17:35:10 +01:00
<repositories>
<repository>
<id>dev</id>
<name>Dev Profile</name>
<url>${devProfileUrl}</url>
2024-03-08 17:35:10 +01:00
</repository>
</repositories>
<distributionManagement>
<repository>
<id>dev</id>
<name>Dev Profile</name>
<url>${devProfileUrlDeposit}</url>
</repository>
</distributionManagement>
2024-03-08 17:35:10 +01:00
</profile>
</profiles>
2024-01-26 10:07:11 +01:00
</project>