-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
102 lines (95 loc) · 3.67 KB
/
pom.xml
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
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>info.magnolia.maven.poms-forge</groupId>
<artifactId>magnolia-parent-pom-forge</artifactId>
<version>37</version>
</parent>
<groupId>de.marvinkerkhoff</groupId>
<artifactId>form2db-app</artifactId>
<version>1.6.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>form2db-app Magnolia Module</name>
<description>With this app you can save your form data in a generic app and export it to excel.</description>
<organization>
<name>Marvin Kerkhoff</name>
<url>http://www.marvinkerkhoff.de</url>
</organization>
<properties>
<magnoliaVersion>6.2.2</magnoliaVersion>
<javaVersion>1.8</javaVersion>
<magnoliaFormVersion>2.5.2</magnoliaFormVersion>
<magnolia.dam.version>3.0.2</magnolia.dam.version>
<poi.version>4.1.2</poi.version>
</properties>
<licenses>
<license>
<name>GPL, Version 3.0</name>
<url>http://www.gnu.org/licenses/gpl-3.0.html</url>
</license>
</licenses>
<dependencies>
<dependency>
<groupId>info.magnolia</groupId>
<artifactId>magnolia-templating</artifactId>
<version>${magnoliaVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>info.magnolia.form</groupId>
<artifactId>magnolia-form-compatibility</artifactId>
<version>${magnoliaFormVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>info.magnolia.ui</groupId>
<artifactId>magnolia-ui-api</artifactId>
<version>${magnoliaVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>info.magnolia.ui</groupId>
<artifactId>magnolia-ui-contentapp</artifactId>
<version>${magnoliaVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>info.magnolia.dam</groupId>
<artifactId>magnolia-dam-jcr</artifactId>
<version>${magnolia.dam.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>${poi.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>${poi.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.0.1</version>
<scope>provided</scope>
</dependency>
<!-- TEST -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<scm>
<connection>scm:git:https://github.com/magnolia-community/form2db.git</connection>
<developerConnection>scm:git:https://github.com/magnolia-community/form2db.git</developerConnection>
<url>https://github.com/magnolia-community/form2db</url>
<tag>HEAD</tag>
</scm>
</project>