-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
55 lines (49 loc) · 1.72 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
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.edifice</groupId>
<artifactId>app-parent</artifactId>
<version>1.0</version>
</parent>
<groupId>fr.wseduc</groupId>
<artifactId>mod-zip</artifactId>
<version>3.0.0</version>
<properties>
<web-utils.version>3.0.0</web-utils.version>
<jacksonDatabindVersion>2.15.2</jacksonDatabindVersion>
</properties>
<scm>
<connection>scm:git:https://github.com/opendigitaleducation/mod-zip.git</connection>
<developerConnection>scm:git:https://github.com/opendigitaleducation/mod-zip.git</developerConnection>
<url>https://github.com/opendigitaleducation/mod-zip</url>
</scm>
<repositories>
<repository>
<id>ode</id>
<name>ODE Repository</name>
<url>https://maven.opendigitaleducation.com/nexus/content/groups/public</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-core</artifactId>
<version>${vertxVersion}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>fr.wseduc</groupId>
<artifactId>web-utils</artifactId>
<version>${web-utils.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jacksonDatabindVersion}</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>