This repository was archived by the owner on Dec 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
77 lines (66 loc) · 2.1 KB
/
pom.xml
File metadata and controls
77 lines (66 loc) · 2.1 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
<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>org.irenical.maven</groupId>
<artifactId>parent-root</artifactId>
<version>1.8.5</version>
</parent>
<groupId>org.irenical</groupId>
<artifactId>dumpy</artifactId>
<version>1.0.5-SNAPSHOT</version>
<packaging>jar</packaging>
<name>dumpy</name>
<scm>
<connection>scm:git:git@github.com:irenical/dumpy.git</connection>
<developerConnection>scm:git:git@github.com:irenical/dumpy.git</developerConnection>
<url>git@github.com:irenical/dumpy.git</url>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<name>Diogo Neves</name>
<email>diogo.sousa.neves@gmail.com</email>
</developer>
</developers>
<dependencies>
<dependency>
<groupId>org.irenical.booty</groupId>
<artifactId>booty</artifactId>
<version>1.1.1</version>
</dependency>
<dependency>
<groupId>org.irenical.drowsy</groupId>
<artifactId>drowsy</artifactId>
<version>0.1.13</version>
</dependency>
<dependency>
<groupId>org.irenical.jindy</groupId>
<artifactId>slf4jindy-gelf</artifactId>
<version>3.0.2</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.irenical.jindy</groupId>
<artifactId>jindy-apacheconfig-impl</artifactId>
<version>3.0.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ru.yandex.qatools.embed</groupId>
<artifactId>postgresql-embedded</artifactId>
<version>1.15</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.4-1206-jdbc42</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>