-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpom.xml
99 lines (90 loc) · 3.02 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
<?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>com.github.bbottema</groupId>
<artifactId>standard-project-parent</artifactId>
<version>1.0.42</version>
</parent>
<groupId>org.simplejavamail</groupId>
<artifactId>utils-mail-smime</artifactId>
<packaging>jar</packaging>
<name>utils-mail-smime</name>
<version>2.3.11</version>
<description>An S/MIME library for JavaMail</description>
<url>https://github.com/simple-java-mail/java-utils-mail-smime</url>
<inceptionYear>2021</inceptionYear>
<properties>
<automaticModuleName>com.github.bbottema.java-utils-mail-smime</automaticModuleName>
<!-- license plugin, see possible types here: -->
<!-- https://github.com/mathieucarbou/license-maven-plugin/tree/master/license-maven-plugin/src/main/resources/com/mycila/maven/plugin/license/templates -->
<license.type>com/mycila/maven/plugin/license/templates/APACHE-2.txt</license.type>
<license.owner.name>Benny Bottema</license.owner.name>
<license.owner.email>[email protected]</license.owner.email>
</properties>
<scm>
<connection>scm:git:git://github.com/bbottema/java-utils-mail-smime.git</connection>
<developerConnection>scm:git:[email protected]:bbottema/java-utils-mail-smime.git</developerConnection>
<url>https://github.com/bbottema/java-utils-mail-smime</url>
</scm>
<developers>
<developer>
<id>benny</id>
<name>Benny Bottema</name>
<email>[email protected]</email>
<url>http://www.bennybottema.com</url>
<roles>
<role>developer</role>
<role>packager</role>
</roles>
</developer>
</developers>
<contributors>
<contributor>
<name>Torsten Krause</name>
<roles>
<role>original developer (GitHub, 2015)</role>
</roles>
</contributor>
<contributor>
<name>Lijun Liao</name>
<roles>
<role>original developer (SourceForge, 2003)</role>
</roles>
</contributor>
<contributor>
<name>Allen Petersen</name>
<roles>
<role>original developer (SourceForge, 2003)</role>
</roles>
</contributor>
</contributors>
<issueManagement>
<system>GitHub Issues</system>
<url>https://github.com/bbottema/java-utils-mail-smime/issues</url>
</issueManagement>
<dependencies>
<dependency><!-- Gives us @NotNull and @Nullable -->
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>16.0.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcjmail-jdk18on</artifactId>
<version>1.78.1</version>
</dependency>
<dependency>
<groupId>jakarta.mail</groupId>
<artifactId>jakarta.mail-api</artifactId>
<version>2.1.2</version>
</dependency>
<dependency>
<groupId>org.eclipse.angus</groupId>
<artifactId>angus-mail</artifactId>
<version>2.0.2</version>
</dependency>
</dependencies>
</project>