3
3
xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" >
4
4
<modelVersion >4.0.0</modelVersion >
5
5
6
- <parent >
7
- <groupId >com.github.bbottema</groupId >
8
- <artifactId >standard-project-parent</artifactId >
9
- <version >1.0.24</version >
10
- </parent >
6
+ <!-- <parent> -- >
7
+ <!-- <groupId>com.github.bbottema</groupId> -- >
8
+ <!-- <artifactId>standard-project-parent</artifactId> -- >
9
+ <!-- <version>1.0.24</version> -- >
10
+ <!-- </parent> -- >
11
11
12
12
<groupId >org.simplejavamail</groupId >
13
13
<artifactId >utils-mail-smime</artifactId >
14
14
<packaging >jar</packaging >
15
15
<name >utils-mail-smime</name >
16
- <version >2.0.1 </version >
17
- <description >A S/MIME library for JavaMail</description >
16
+ <version >2.1.0-SNAPSHOT </version >
17
+ <description >An S/MIME library for JavaMail</description >
18
18
<url >http:///github.com/bbottema/java-utils-mail-smime</url >
19
19
<inceptionYear >2021</inceptionYear >
20
20
21
21
<properties >
22
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
23
+ <project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
22
24
<automaticModuleName >com.github.bbottema.java-utils-mail-smime</automaticModuleName >
23
25
<!-- license plugin, see possible types here: -->
24
26
<!-- https://github.com/mathieucarbou/license-maven-plugin/tree/master/license-maven-plugin/src/main/resources/com/mycila/maven/plugin/license/templates -->
25
27
<license .type>com/mycila/maven/plugin/license/templates/APACHE-2.txt</license .type>
26
28
<license .owner.name>Benny Bottema</license .owner.name>
27
29
<
license .owner.email>
[email protected] </
license .owner.email>
30
+ <junit .version>5.8.2</junit .version>
31
+ <maven .compiler.source>17</maven .compiler.source>
32
+ <maven .compiler.target>17</maven .compiler.target>
28
33
</properties >
29
34
30
35
<scm >
72
77
<url >https://github.com/bbottema/java-utils-mail-smime/issues</url >
73
78
</issueManagement >
74
79
80
+ <dependencyManagement >
81
+ <dependencies >
82
+ <dependency >
83
+ <groupId >org.junit</groupId >
84
+ <artifactId >junit-bom</artifactId >
85
+ <version >${junit.version} </version >
86
+ <type >pom</type >
87
+ <scope >import</scope >
88
+ </dependency >
89
+ </dependencies >
90
+ </dependencyManagement >
91
+
75
92
<dependencies >
76
93
<dependency ><!-- Gives us @NotNull and @Nullable -->
77
94
<groupId >org.jetbrains</groupId >
85
102
<artifactId >bcjmail-jdk15to18</artifactId >
86
103
<version >1.70</version >
87
104
</dependency >
105
+ <dependency >
106
+ <groupId >jakarta.activation</groupId >
107
+ <artifactId >jakarta.activation-api</artifactId >
108
+ <version >2.0.1</version >
109
+ </dependency >
110
+ <dependency >
111
+ <groupId >com.sun.activation</groupId >
112
+ <artifactId >jakarta.activation</artifactId >
113
+ <version >2.0.1</version >
114
+ </dependency >
115
+ <dependency >
116
+ <groupId >jakarta.mail</groupId >
117
+ <artifactId >jakarta.mail-api</artifactId >
118
+ <version >2.0.1</version >
119
+ </dependency >
88
120
<dependency >
89
121
<groupId >com.sun.mail</groupId >
90
122
<artifactId >jakarta.mail</artifactId >
91
123
<version >2.0.1</version >
92
124
</dependency >
125
+
126
+ <dependency >
127
+ <groupId >org.junit.jupiter</groupId >
128
+ <artifactId >junit-jupiter-api</artifactId >
129
+ <scope >test</scope >
130
+ </dependency >
131
+ <dependency >
132
+ <groupId >org.junit.jupiter</groupId >
133
+ <artifactId >junit-jupiter-engine</artifactId >
134
+ <scope >test</scope >
135
+ </dependency >
93
136
</dependencies >
137
+
94
138
</project >
0 commit comments