-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpom.xml
More file actions
68 lines (62 loc) · 2.13 KB
/
pom.xml
File metadata and controls
68 lines (62 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?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>
<parent>
<groupId>com.opencore</groupId>
<artifactId>dsfinvk</artifactId>
<version>1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>dsfinvk-parser</artifactId>
<name>DSFinV-K Parser</name>
<properties>
<hibernate-validator.version>7.0.1.Final</hibernate-validator.version>
<jakarta.el.version>3.0.3</jakarta.el.version>
<logback-classic.version>1.2.3</logback-classic.version>
<slf4j-api.version>1.7.30</slf4j-api.version>
</properties>
<dependencies>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback-classic.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.opencore</groupId>
<artifactId>dsfinvk-models</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.opencore</groupId>
<artifactId>gdpdu-models</artifactId>
</dependency>
<dependency>
<groupId>com.opencore</groupId>
<artifactId>gdpdu-common</artifactId>
<version>${gdpdu.version}</version>
</dependency>
<dependency>
<groupId>com.opencore</groupId>
<artifactId>gdpdu-data-parser</artifactId>
<version>${gdpdu.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>jakarta.el</artifactId>
<version>${jakarta.el.version}</version>
</dependency>
<dependency>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
<version>${hibernate-validator.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j-api.version}</version>
</dependency>
</dependencies>
</project>