|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>org.nhind</groupId> |
5 | 5 | <artifactId>direct-msg-monitor-web</artifactId> |
6 | | - <version>6.0</version> |
| 6 | + <version>8.0.0</version> |
7 | 7 | <packaging>war</packaging> |
8 | 8 | <name>NHIN-Direct Message Monitor Web Application Module</name> |
9 | 9 | <description>NHIN-Direct Message Monitor Web Application Module</description> |
|
15 | 15 | <connection>scm:git:https://github.com/DirectProjectJavaRI/direct-msg-monitor-web.git</connection> |
16 | 16 | </scm> |
17 | 17 | <prerequisites> |
18 | | - <maven>3.0.0</maven> |
| 18 | + <maven>3.5.0</maven> |
19 | 19 | </prerequisites> |
20 | | - <parent> |
21 | | - <groupId>org.springframework.boot</groupId> |
22 | | - <artifactId>spring-boot-starter-parent</artifactId> |
23 | | - <version>2.1.2.RELEASE</version> |
24 | | - <relativePath /> |
25 | | - </parent> |
| 20 | + <parent> |
| 21 | + <groupId>org.springframework.boot</groupId> |
| 22 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 23 | + <version>2.5.2</version> |
| 24 | + <relativePath /> |
| 25 | + </parent> |
26 | 26 | <developers> |
27 | 27 | <developer> |
28 | 28 | <name>Greg Meyer</name> |
|
42 | 42 | <properties> |
43 | 43 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
44 | 44 | <camel.version>2.22.0</camel.version> |
| 45 | + <mina.version>1.0.9</mina.version> |
45 | 46 | </properties> |
46 | 47 | <dependencyManagement> |
47 | 48 | <dependencies> |
48 | 49 | <dependency> |
49 | 50 | <groupId>org.springframework.boot</groupId> |
50 | 51 | <artifactId>spring-boot-dependencies</artifactId> |
51 | | - <version>2.1.2.RELEASE</version> |
| 52 | + <version>2.5.2</version> |
52 | 53 | <type>pom</type> |
53 | 54 | <scope>import</scope> |
54 | 55 | </dependency> |
55 | 56 | <dependency> |
56 | 57 | <groupId>org.springframework.cloud</groupId> |
57 | 58 | <artifactId>spring-cloud-starter-parent</artifactId> |
58 | | - <version>Greenwich.RELEASE</version> |
| 59 | + <version>2020.0.3</version> |
59 | 60 | <type>pom</type> |
60 | 61 | <scope>import</scope> |
61 | | - </dependency> |
| 62 | + </dependency> |
| 63 | + <dependency> |
| 64 | + <groupId>org.apache.mina</groupId> |
| 65 | + <artifactId>mina-core</artifactId> |
| 66 | + <version>${mina.version}</version> |
| 67 | + </dependency> |
62 | 68 | </dependencies> |
63 | 69 | </dependencyManagement> |
64 | 70 | <dependencies> |
65 | 71 | <dependency> |
66 | 72 | <groupId>org.nhind</groupId> |
67 | 73 | <artifactId>direct-msg-monitor</artifactId> |
68 | | - <version>6.0</version> |
| 74 | + <version>8.0.0</version> |
69 | 75 | </dependency> |
70 | 76 | <dependency> |
71 | 77 | <groupId>org.springframework.boot</groupId> |
72 | 78 | <artifactId>spring-boot-starter-tomcat</artifactId> |
73 | 79 | <scope>provided</scope> |
74 | | - </dependency> |
| 80 | + </dependency> |
75 | 81 | <dependency> |
76 | 82 | <groupId>org.springframework.boot</groupId> |
77 | 83 | <artifactId>spring-boot-starter-web</artifactId> |
|
91 | 97 | <dependency> |
92 | 98 | <groupId>org.springframework.boot</groupId> |
93 | 99 | <artifactId>spring-boot-configuration-processor</artifactId> |
94 | | - </dependency> |
| 100 | + </dependency> |
| 101 | + <dependency> |
| 102 | + <groupId>org.springframework.cloud</groupId> |
| 103 | + <artifactId>spring-cloud-starter-bootstrap</artifactId> |
| 104 | + </dependency> |
95 | 105 | <dependency> |
96 | 106 | <groupId>org.springframework.cloud</groupId> |
97 | 107 | <artifactId>spring-cloud-starter-stream-rabbit</artifactId> |
|
166 | 176 | <plugin> |
167 | 177 | <groupId>org.apache.maven.plugins</groupId> |
168 | 178 | <artifactId>maven-javadoc-plugin</artifactId> |
169 | | - <version>2.6.1</version> |
170 | 179 | <configuration> |
171 | | - <additionalparam>-Xdoclint:none</additionalparam> |
| 180 | + <additionalJOption>-Xdoclint:none</additionalJOption> |
172 | 181 | <charset>UTF-8</charset> |
173 | 182 | <docencoding>UTF-8</docencoding> |
174 | 183 | <docfilessubdirs>true</docfilessubdirs> |
|
201 | 210 | </execution> |
202 | 211 | </executions> |
203 | 212 | </plugin> |
204 | | - --> |
205 | | - |
| 213 | + --> |
206 | 214 | </plugins> |
207 | 215 | </build> |
208 | 216 | <distributionManagement> |
|
0 commit comments