-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
106 lines (100 loc) · 3.07 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
103
104
105
106
<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>
<artifactId>mail</artifactId>
<version>1.0.0</version>
<name>${project.groupId}:${project.artifactId}</name>
<description>A small mail utility.</description>
<url>https://github.com/WasiqB/coteafs-mail</url>
<parent>
<groupId>com.github.wasiqb.coteafs</groupId>
<artifactId>parent</artifactId>
<version>2.1.0</version>
</parent>
<scm>
<url>git@github.com:WasiqB/coteafs-mail.git</url>
<connection>scm:git:${project.scm.url}</connection>
<developerConnection>${project.scm.connection}</developerConnection>
</scm>
<issueManagement>
<system>GitHub</system>
<url>${project.url}/issues</url>
</issueManagement>
<ciManagement>
<system>Circle CI</system>
<url>https://circleci.com/gh/WasiqB/coteafs-mail</url>
</ciManagement>
<properties>
<coteafs.config.version>1.7.0</coteafs.config.version>
<coteafs.error.version>1.6.0</coteafs.error.version>
<coteafs.logger.version>1.7.0</coteafs.logger.version>
<commons.text.version>1.6</commons.text.version>
<mail.version>1.6.2</mail.version>
<joda.version>2.10.1</joda.version>
</properties>
<dependencies>
<dependency>
<groupId>com.github.wasiqb.coteafs</groupId>
<artifactId>configs</artifactId>
<version>${coteafs.config.version}</version>
<exclusions>
<exclusion>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testng.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</exclusion>
<exclusion>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.github.wasiqb.coteafs</groupId>
<artifactId>error</artifactId>
<version>${coteafs.error.version}</version>
</dependency>
<dependency>
<groupId>com.github.wasiqb.coteafs</groupId>
<artifactId>logger</artifactId>
<version>${coteafs.logger.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-text</artifactId>
<version>${commons.text.version}</version>
</dependency>
<dependency>
<groupId>javax.mail</groupId>
<artifactId>javax.mail-api</artifactId>
<version>${mail.version}</version>
</dependency>
<dependency>
<groupId>com.sun.mail</groupId>
<artifactId>javax.mail</artifactId>
<version>${mail.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons.version}</version>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>${joda.version}</version>
</dependency>
</dependencies>
</project>