|
4 | 4 | <modelVersion>4.0.0</modelVersion>
|
5 | 5 | <artifactId>direct-msg-monitor-model</artifactId>
|
6 | 6 | <name>Direct Project Message Monitor Data Model Objects</name>
|
7 |
| - <version>6.0</version> |
| 7 | + <version>8.0.0</version> |
8 | 8 | <description>Direct Project Message Monitor Data Model Objects</description>
|
9 | 9 | <inceptionYear>2018</inceptionYear>
|
10 | 10 | <url>https://github.com/DirectProjectJavaRI/direct-msg-monitor-model</url>
|
|
23 | 23 | <url>http://nhindirect.org</url>
|
24 | 24 | </organization>
|
25 | 25 | <prerequisites>
|
26 |
| - <maven>3.0.0</maven> |
| 26 | + <maven>3.5.0</maven> |
27 | 27 | </prerequisites>
|
28 | 28 | <parent>
|
29 | 29 | <groupId>org.springframework.boot</groupId>
|
30 | 30 | <artifactId>spring-boot-dependencies</artifactId>
|
31 |
| - <version>2.1.2.RELEASE</version> |
32 |
| - </parent> |
33 |
| - <scm> |
34 |
| - <url>scm:git:https://github.com/DirectProjectJavaRI/direct-msg-monitor-model.git</url> |
35 |
| - <connection>scm:git:https://github.com/DirectProjectJavaRI/direct-msg-monitor-model.git</connection> |
36 |
| - </scm> |
37 |
| - <licenses> |
38 |
| - <license> |
| 31 | + <version>2.5.2</version> |
| 32 | + <relativePath /> |
| 33 | + </parent> |
| 34 | + <scm> |
| 35 | + <url>scm:git:https://github.com/DirectProjectJavaRI/direct-msg-monitor-model.git</url> |
| 36 | + <connection>scm:git:https://github.com/DirectProjectJavaRI/direct-msg-monitor-model.git</connection> |
| 37 | + </scm> |
| 38 | + <licenses> |
| 39 | + <license> |
39 | 40 | <name>New BSD License</name>
|
40 | 41 | <url>http://nhindirect.org/BSDLicense</url>
|
41 |
| - </license> |
42 |
| - </licenses> |
| 42 | + </license> |
| 43 | + </licenses> |
| 44 | + <properties> |
| 45 | + <javax-mail.version>1.6.2</javax-mail.version> |
| 46 | + <dsn.version>1.6.7</dsn.version> |
| 47 | + <commons-io.version>2.8.0</commons-io.version> |
| 48 | + </properties> |
43 | 49 | <dependencies>
|
44 | 50 | <dependency>
|
45 | 51 | <groupId>org.nhind</groupId>
|
46 | 52 | <artifactId>direct-common</artifactId>
|
47 |
| - <version>6.0</version> |
| 53 | + <version>8.0.0</version> |
48 | 54 | </dependency>
|
49 | 55 | <dependency>
|
50 |
| - <groupId>javax.mail</groupId> |
51 |
| - <artifactId>mail</artifactId> |
52 |
| - <version>1.4.3</version> |
53 |
| - </dependency> |
| 56 | + <groupId>org.projectlombok</groupId> |
| 57 | + <artifactId>lombok</artifactId> |
| 58 | + </dependency> |
| 59 | + <dependency> |
| 60 | + <groupId>com.sun.mail</groupId> |
| 61 | + <artifactId>javax.mail</artifactId> |
| 62 | + <version>${javax-mail.version}</version> |
| 63 | + </dependency> |
54 | 64 | <dependency>
|
55 | 65 | <groupId>com.sun.mail</groupId>
|
56 | 66 | <artifactId>dsn</artifactId>
|
57 |
| - <version>1.4.3</version> |
| 67 | + <version>${dsn.version}</version> |
58 | 68 | </dependency>
|
59 | 69 | <dependency>
|
60 | 70 | <groupId>org.apache.commons</groupId>
|
|
63 | 73 | <dependency>
|
64 | 74 | <groupId>commons-io</groupId>
|
65 | 75 | <artifactId>commons-io</artifactId>
|
66 |
| - <version>2.6</version> |
| 76 | + <version>${commons-io.version}</version> |
67 | 77 | </dependency>
|
68 | 78 | <dependency>
|
69 | 79 | <groupId>com.fasterxml.jackson.core</groupId>
|
70 | 80 | <artifactId>jackson-annotations</artifactId>
|
71 | 81 | </dependency>
|
72 |
| - <dependency> |
73 |
| - <groupId>junit</groupId> |
74 |
| - <artifactId>junit</artifactId> |
75 |
| - <scope>test</scope> |
76 |
| - </dependency> |
| 82 | + <dependency> |
| 83 | + <groupId>org.junit.jupiter</groupId> |
| 84 | + <artifactId>junit-jupiter-engine</artifactId> |
| 85 | + <scope>test</scope> |
| 86 | + </dependency> |
77 | 87 | </dependencies>
|
78 | 88 | <build>
|
79 | 89 | <extensions>
|
80 | 90 | <extension>
|
81 | 91 | <groupId>org.apache.maven.wagon</groupId>
|
82 | 92 | <artifactId>wagon-webdav-jackrabbit</artifactId>
|
83 |
| - <version>3.1.0</version> |
84 | 93 | </extension>
|
85 | 94 | <extension>
|
86 | 95 | <groupId>org.apache.maven.wagon</groupId>
|
87 | 96 | <artifactId>wagon-ssh-external</artifactId>
|
88 |
| - <version>3.1.0</version> |
89 | 97 | </extension>
|
90 | 98 | <extension>
|
91 | 99 | <groupId>org.apache.maven.wagon</groupId>
|
92 | 100 | <artifactId>wagon-ssh</artifactId>
|
93 |
| - <version>3.1.0</version> |
94 | 101 | </extension>
|
95 | 102 | </extensions>
|
96 | 103 | <resources>
|
|
119 | 126 | <plugin>
|
120 | 127 | <groupId>org.apache.maven.plugins</groupId>
|
121 | 128 | <artifactId>maven-jxr-plugin</artifactId>
|
| 129 | + <version>3.1.1</version> |
122 | 130 | </plugin>
|
123 | 131 | <plugin>
|
124 | 132 | <groupId>org.apache.maven.plugins</groupId>
|
|
151 | 159 | </execution>
|
152 | 160 | </executions>
|
153 | 161 | </plugin>
|
154 |
| - <plugin> |
155 |
| - <groupId>org.apache.maven.plugins</groupId> |
156 |
| - <artifactId>maven-jar-plugin</artifactId> |
157 |
| - <configuration> |
158 |
| - <archive> |
159 |
| - <index>true</index> |
160 |
| - </archive> |
161 |
| - </configuration> |
162 |
| - </plugin> |
163 |
| - <plugin> |
164 |
| - <groupId>org.apache.maven.plugins</groupId> |
165 |
| - <artifactId>maven-jar-plugin</artifactId> |
166 |
| - <executions> |
167 |
| - <execution> |
168 |
| - <goals> |
169 |
| - <goal>test-jar</goal> |
170 |
| - </goals> |
171 |
| - </execution> |
172 |
| - </executions> |
173 |
| - </plugin> |
| 162 | + <plugin> |
| 163 | + <groupId>org.apache.maven.plugins</groupId> |
| 164 | + <artifactId>maven-jar-plugin</artifactId> |
| 165 | + <configuration> |
| 166 | + <archive> |
| 167 | + <index>true</index> |
| 168 | + </archive> |
| 169 | + </configuration> |
| 170 | + <executions> |
| 171 | + <execution> |
| 172 | + <goals> |
| 173 | + <goal>test-jar</goal> |
| 174 | + </goals> |
| 175 | + </execution> |
| 176 | + </executions> |
| 177 | + </plugin> |
174 | 178 | <plugin>
|
175 | 179 | <groupId>org.apache.maven.plugins</groupId>
|
176 | 180 | <artifactId>maven-javadoc-plugin</artifactId>
|
177 |
| - <version>2.6.1</version> |
178 | 181 | <configuration>
|
179 |
| - <additionalparam>-Xdoclint:none</additionalparam> |
| 182 | + <additionalJOption>-Xdoclint:none</additionalJOption> |
180 | 183 | <charset>UTF-8</charset>
|
181 | 184 | <docencoding>UTF-8</docencoding>
|
182 | 185 | <docfilessubdirs>true</docfilessubdirs>
|
|
211 | 214 | </goals>
|
212 | 215 | </execution>
|
213 | 216 | </executions>
|
| 217 | + <version>3.0.1</version> |
214 | 218 | </plugin>
|
215 | 219 | -->
|
216 | 220 | </plugins>
|
|
220 | 224 | <plugin>
|
221 | 225 | <groupId>org.apache.maven.plugins</groupId>
|
222 | 226 | <artifactId>maven-project-info-reports-plugin</artifactId>
|
223 |
| - <version>2.9</version> |
224 | 227 | </plugin>
|
225 | 228 | <plugin>
|
226 | 229 | <groupId>org.apache.maven.plugins</groupId>
|
227 | 230 | <artifactId>maven-javadoc-plugin</artifactId>
|
228 |
| - <version>2.6.1</version> |
229 | 231 | <configuration>
|
230 |
| - <additionalparam>-Xdoclint:none</additionalparam> |
| 232 | + <additionalJOption>-Xdoclint:none</additionalJOption> |
231 | 233 | <charset>UTF-8</charset>
|
232 | 234 | <docencoding>UTF-8</docencoding>
|
233 | 235 | <docfilessubdirs>true</docfilessubdirs>
|
|
254 | 256 | <plugin>
|
255 | 257 | <groupId>org.apache.maven.plugins</groupId>
|
256 | 258 | <artifactId>maven-jxr-plugin</artifactId>
|
| 259 | + <version>3.1.1</version> |
257 | 260 | </plugin>
|
258 | 261 | <plugin>
|
259 | 262 | <groupId>org.codehaus.mojo</groupId>
|
|
0 commit comments