-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
114 lines (98 loc) · 3.23 KB
/
pom.xml
File metadata and controls
114 lines (98 loc) · 3.23 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!--
~ Project : FunzDataView
~ Website : https://github.com/Funz/FunzDataView
~ Copyright : © ASNR
~ 31 Avenue de la Division Leclerc
~ 92260 Fontenay-aux-Roses, France
~ https://www.asnr.fr
~ Licence : cf. LICENSE
~ Developed By : Artenum SARL
~ Authors : Arnaud Trouche
~ Nicolas Chabalier
~ Julien Forest
~ Contract : contract N°50000976 - order N°34007261
-->
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<!-- =========================================================== -->
<!-- POM relationships -->
<!-- =========================================================== -->
<!-- Maven coordinates -->
<groupId>org.asnr</groupId>
<artifactId>funz-data-view</artifactId>
<version>0.0.1-SNAPSHOT</version>
<!-- POM inheritence -->
<parent>
<groupId>org.keridwen.pom</groupId>
<artifactId>org-keridwen-pom</artifactId>
<version>3.0.0</version>
</parent>
<!-- Properties -->
<properties>
<java.version>21</java.version>
<funz.version>1.17</funz.version>
</properties>
<!-- Dependencies -->
<dependencies>
<!-- Funz Dependencies -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-exec</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.6</version>
</dependency>
<!-- Funz -->
<dependency>
<groupId>org.irsn.funz</groupId>
<artifactId>funz-core</artifactId>
<version>${funz.version}</version>
</dependency>
<dependency>
<groupId>org.irsn.funz</groupId>
<artifactId>funz-client</artifactId>
<version>${funz.version}</version>
</dependency>
<!-- Text editor -->
<dependency>
<groupId>org.keridwen.modelling</groupId>
<artifactId>org-keridwen-modelling-super-text-editor</artifactId>
<version>5.1.0</version>
</dependency>
<!-- Excel export dependency -->
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>5.4.0</version>
</dependency>
</dependencies>
<!-- =========================================================== -->
<!-- General project information -->
<!-- =========================================================== -->
<!-- General project information -->
<name>FunzDataView</name>
<description>
Panel to display Funz results.
</description>
<!-- =========================================================== -->
<!-- Build settings -->
<!-- =========================================================== -->
<!-- Packaging -->
<packaging>jar</packaging>
<!-- Artifacts repositories -->
<repositories>
<repository>
<id>Maven Central</id>
<url>https://repo1.maven.org/maven2/</url>
</repository>
<repository>
<id>Artenum</id>
<url>https://maven.artenum.com/repository/public</url>
</repository>
</repositories>
</project>