|
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 | <groupId>org.nhind</groupId> |
5 | 5 | <artifactId>config-service</artifactId> |
6 | | - <version>8.0.7</version> |
| 6 | + <version>8.1.0</version> |
7 | 7 | <packaging>jar</packaging> |
8 | 8 | <name>NHIN Direct Java RI config service spring boot application</name> |
9 | 9 | <description>NHIN Direct Java RI config service spring boot application</description> |
10 | 10 | <url>http://api.nhindirect.org/x/www/api.nhindirect.org/java/site/config/config-service-jar/${project.version}</url> |
11 | 11 | <scm> |
12 | 12 | <url>scm:git:https://github.com/DirectProjectJavaRI/config-service.git</url> |
13 | 13 | <connection>scm:git:https://github.com/DirectProjectJavaRI/config-service.git</connection> |
14 | | - </scm> |
| 14 | + </scm> |
15 | 15 | <prerequisites> |
16 | 16 | <maven>3.5.0</maven> |
17 | 17 | </prerequisites> |
|
41 | 41 | <properties> |
42 | 42 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
43 | 43 | <commons-net.version>3.8.0</commons-net.version> |
44 | | - <bcprov-jdk15on.version>1.68</bcprov-jdk15on.version> |
45 | 44 | </properties> |
46 | 45 | <dependencyManagement> |
47 | 46 | <dependencies> |
|
91 | 90 | </dependency> |
92 | 91 | <dependency> |
93 | 92 | <groupId>org.springframework.cloud</groupId> |
94 | | - <artifactId>spring-cloud-starter-config</artifactId> |
| 93 | + <artifactId>spring-cloud-starter-config</artifactId> |
| 94 | + <exclusions> |
| 95 | + <exclusion> |
| 96 | + <groupId>org.bouncycastle</groupId> |
| 97 | + <artifactId>bcprov-jdk15on</artifactId> |
| 98 | + </exclusion> |
| 99 | + <exclusion> |
| 100 | + <groupId>org.bouncycastle</groupId> |
| 101 | + <artifactId>bcmail-jdk15on</artifactId> |
| 102 | + </exclusion> |
| 103 | + <exclusion> |
| 104 | + <groupId>org.bouncycastle</groupId> |
| 105 | + <artifactId>bcpkix-jdk15on</artifactId> |
| 106 | + </exclusion> |
| 107 | + </exclusions> |
95 | 108 | </dependency> |
96 | 109 | <dependency> |
97 | 110 | <groupId>org.springframework.cloud</groupId> |
|
104 | 117 | <dependency> |
105 | 118 | <groupId>org.nhind</groupId> |
106 | 119 | <artifactId>config-service-jar</artifactId> |
107 | | - <version>8.0.5</version> |
108 | | - </dependency> |
109 | | - <dependency> |
110 | | - <groupId>org.nhind</groupId> |
111 | | - <artifactId>direct-common</artifactId> |
112 | | - <version>8.0.0</version> |
| 120 | + <version>8.1.0</version> |
113 | 121 | </dependency> |
114 | 122 | <dependency> |
115 | 123 | <groupId>commons-net</groupId> |
116 | 124 | <artifactId>commons-net</artifactId> |
117 | 125 | <version>${commons-net.version}</version> |
118 | 126 | </dependency> |
119 | | - <dependency> |
120 | | - <groupId>org.bouncycastle</groupId> |
121 | | - <artifactId>bcprov-jdk15on</artifactId> |
122 | | - <version>${bcprov-jdk15on.version}</version> |
123 | | - </dependency> |
124 | 127 | <!-- Database Drivers For Connectivity Options --> |
125 | 128 | <dependency> |
126 | 129 | <groupId>com.h2database</groupId> |
|
233 | 236 | </executions> |
234 | 237 | </plugin> |
235 | 238 | --> |
| 239 | + <plugin> |
| 240 | + <groupId>org.sonatype.central</groupId> |
| 241 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 242 | + <version>0.8.0</version> |
| 243 | + <extensions>true</extensions> |
| 244 | + <configuration> |
| 245 | + <publishingServerId>central</publishingServerId> |
| 246 | + </configuration> |
| 247 | + </plugin> |
236 | 248 | </plugins> |
237 | 249 | </build> |
238 | 250 | <reporting> |
|
292 | 304 | </plugin> |
293 | 305 | </plugins> |
294 | 306 | </reporting> |
295 | | - <distributionManagement> |
296 | | - <site> |
297 | | - <id>nhind-site</id> |
298 | | - <name>NHIN Direct API publication site</name> |
299 | | - <url>sftp://api.nhindirect.org/x/www/api.nhindirect.org/java/site/config/config-service-jar/${project.version}</url> |
300 | | - </site> |
301 | | - <snapshotRepository> |
302 | | - <id>sonatype-snapshot</id> |
303 | | - <name>Sonatype OSS Maven SNAPSHOT Repository</name> |
304 | | - <url>https://oss.sonatype.org/content/repositories/snapshots/</url> |
305 | | - <uniqueVersion>false</uniqueVersion> |
306 | | - </snapshotRepository> |
307 | | - <repository> |
308 | | - <id>sonatype-release</id> |
309 | | - <name>Sonatype OSS Maven Release Repositor</name> |
310 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
311 | | - <uniqueVersion>false</uniqueVersion> |
312 | | - </repository> |
313 | | - </distributionManagement> |
314 | | - |
315 | 307 | </project> |
0 commit comments