|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>org.nhind</groupId> |
5 | 5 | <artifactId>direct-sta-sboot</artifactId> |
6 | | - <version>8.0.0</version> |
| 6 | + <version>8.1.0</version> |
7 | 7 | <packaging>jar</packaging> |
8 | 8 | <name>Direct Java RI Security and Trust Agent Standalone Spring Boot Micro-service Application</name> |
9 | 9 | <description>Direct Java RI Security and Trust Agent Standalone Spring Boot Micro-service Application</description> |
|
40 | 40 | </licenses> |
41 | 41 | <properties> |
42 | 42 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
43 | | - <bcprov-jdk15on.version>1.68</bcprov-jdk15on.version> |
44 | | - <bcmail-jdk15on.version>1.68</bcmail-jdk15on.version> |
45 | | - <bcpkix-jdk15on.version>1.68</bcpkix-jdk15on.version> |
46 | 43 | </properties> |
47 | 44 | <dependencyManagement> |
48 | 45 | <dependencies> |
|
85 | 82 | <dependency> |
86 | 83 | <groupId>org.springframework.cloud</groupId> |
87 | 84 | <artifactId>spring-cloud-starter-bootstrap</artifactId> |
| 85 | + <exclusions> |
| 86 | + <exclusion> |
| 87 | + <groupId>org.bouncycastle</groupId> |
| 88 | + <artifactId>bcprov-jdk15on</artifactId> |
| 89 | + </exclusion> |
| 90 | + <exclusion> |
| 91 | + <groupId>org.bouncycastle</groupId> |
| 92 | + <artifactId>bcmail-jdk15on</artifactId> |
| 93 | + </exclusion> |
| 94 | + <exclusion> |
| 95 | + <groupId>org.bouncycastle</groupId> |
| 96 | + <artifactId>bcpkix-jdk15on</artifactId> |
| 97 | + </exclusion> |
| 98 | + </exclusions> |
88 | 99 | </dependency> |
89 | 100 | <dependency> |
90 | 101 | <groupId>org.springframework.boot</groupId> |
|
94 | 105 | <groupId>org.springframework.cloud</groupId> |
95 | 106 | <artifactId>spring-cloud-starter-config</artifactId> |
96 | 107 | <exclusions> |
97 | | - <exclusion> |
98 | | - <groupId>org.bouncycastle</groupId> |
99 | | - <artifactId>bcpkix-jdk15on</artifactId> |
100 | | - </exclusion> |
| 108 | + <exclusion> |
| 109 | + <groupId>org.bouncycastle</groupId> |
| 110 | + <artifactId>bcprov-jdk15on</artifactId> |
| 111 | + </exclusion> |
| 112 | + <exclusion> |
| 113 | + <groupId>org.bouncycastle</groupId> |
| 114 | + <artifactId>bcmail-jdk15on</artifactId> |
| 115 | + </exclusion> |
| 116 | + <exclusion> |
| 117 | + <groupId>org.bouncycastle</groupId> |
| 118 | + <artifactId>bcpkix-jdk15on</artifactId> |
| 119 | + </exclusion> |
101 | 120 | </exclusions> |
102 | 121 | </dependency> |
103 | 122 | <dependency> |
|
136 | 155 | <dependency> |
137 | 156 | <groupId>org.nhind</groupId> |
138 | 157 | <artifactId>direct-msg-monitor-model</artifactId> |
139 | | - <version>8.0.0</version> |
140 | | - </dependency> |
141 | | - <dependency> |
142 | | - <groupId>org.nhind</groupId> |
143 | | - <artifactId>direct-common</artifactId> |
144 | | - <version>8.0.0</version> |
145 | | - </dependency> |
| 158 | + <version>8.1.0</version> |
| 159 | + </dependency> |
146 | 160 | <dependency> |
147 | 161 | <groupId>org.nhind</groupId> |
148 | 162 | <artifactId>gateway</artifactId> |
149 | | - <version>8.0.0</version> |
150 | | - </dependency> |
151 | | - <dependency> |
152 | | - <groupId>org.nhind</groupId> |
153 | | - <artifactId>agent</artifactId> |
154 | | - <version>8.0.0</version> |
155 | | - </dependency> |
| 163 | + <version>8.1.0</version> |
| 164 | + </dependency> |
156 | 165 | <dependency> |
157 | 166 | <groupId>org.nhind</groupId> |
158 | 167 | <artifactId>xdmail</artifactId> |
159 | | - <version>8.0.0</version> |
| 168 | + <version>8.1.0</version> |
160 | 169 | </dependency> |
161 | 170 | <dependency> |
162 | 171 | <groupId>commons-net</groupId> |
163 | 172 | <artifactId>commons-net</artifactId> |
164 | 173 | <version>3.6</version> |
165 | | - </dependency> |
166 | | - <dependency> |
167 | | - <groupId>org.bouncycastle</groupId> |
168 | | - <artifactId>bcprov-jdk15on</artifactId> |
169 | | - <version>${bcprov-jdk15on.version}</version> |
170 | | - </dependency> |
171 | | - <dependency> |
172 | | - <groupId>org.bouncycastle</groupId> |
173 | | - <artifactId>bcmail-jdk15on</artifactId> |
174 | | - <version>${bcmail-jdk15on.version}</version> |
175 | | - </dependency> |
176 | | - <dependency> |
177 | | - <groupId>org.bouncycastle</groupId> |
178 | | - <artifactId>bcpkix-jdk15on</artifactId> |
179 | | - <version>${bcpkix-jdk15on.version}</version> |
180 | | - </dependency> |
| 174 | + </dependency> |
181 | 175 | <!-- Database Drivers For Connectivity Options --> |
182 | 176 | <dependency> |
183 | 177 | <groupId>com.h2database</groupId> |
|
290 | 284 | </goals> |
291 | 285 | </execution> |
292 | 286 | </executions> |
293 | | - </plugin> |
| 287 | + </plugin> |
294 | 288 | --> |
| 289 | + <plugin> |
| 290 | + <groupId>org.sonatype.central</groupId> |
| 291 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 292 | + <version>0.8.0</version> |
| 293 | + <extensions>true</extensions> |
| 294 | + <configuration> |
| 295 | + <publishingServerId>central</publishingServerId> |
| 296 | + </configuration> |
| 297 | + </plugin> |
295 | 298 | </plugins> |
296 | 299 | </build> |
297 | 300 | <reporting> |
|
339 | 342 | </plugin> |
340 | 343 | </plugins> |
341 | 344 | </reporting> |
342 | | - <distributionManagement> |
343 | | - <site> |
344 | | - <id>nhind-site</id> |
345 | | - <name>NHIN Direct API publication site</name> |
346 | | - <url>sftp://api.nhindirect.org/x/www/api.nhindirect.org/java/site/direct-sta-sboot/${project.version}</url> |
347 | | - </site> |
348 | | - <snapshotRepository> |
349 | | - <id>sonatype-snapshot</id> |
350 | | - <name>Sonatype OSS Maven SNAPSHOT Repository</name> |
351 | | - <url>https://oss.sonatype.org/content/repositories/snapshots/</url> |
352 | | - <uniqueVersion>false</uniqueVersion> |
353 | | - </snapshotRepository> |
354 | | - <repository> |
355 | | - <id>sonatype-release</id> |
356 | | - <name>Sonatype OSS Maven Release Repositor</name> |
357 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
358 | | - <uniqueVersion>false</uniqueVersion> |
359 | | - </repository> |
360 | | - </distributionManagement> |
361 | | - |
362 | 345 | </project> |
0 commit comments