|
38 | 38 | <properties> |
39 | 39 | <dnsjava.version>3.3.1</dnsjava.version> |
40 | 40 | <mina-core.version>2.1.4</mina-core.version> |
41 | | - <bcprov-jdk15on.version>1.68</bcprov-jdk15on.version> |
42 | 41 | </properties> |
43 | 42 | <licenses> |
44 | 43 | <license> |
45 | 44 | <name>New BSD License</name> |
46 | 45 | <url>http://nhindirect.org/BSDLicense</url> |
47 | 46 | </license> |
48 | | - </licenses> |
| 47 | + </licenses> |
49 | 48 | <dependencyManagement> |
50 | 49 | <dependencies> |
51 | 50 | <dependency> |
|
71 | 70 | </dependency> |
72 | 71 | </dependencies> |
73 | 72 | </dependencyManagement> |
74 | | - <dependencies> |
| 73 | + <dependencies> |
| 74 | + <dependency> |
| 75 | + <groupId>org.nhind</groupId> |
| 76 | + <artifactId>dns</artifactId> |
| 77 | + <version>8.1.0-SNAPSHOT</version> |
| 78 | + </dependency> |
75 | 79 | <dependency> |
76 | 80 | <groupId>org.springframework.boot</groupId> |
77 | 81 | <artifactId>spring-boot-configuration-processor</artifactId> |
|
82 | 86 | </dependency> |
83 | 87 | <dependency> |
84 | 88 | <groupId>org.springframework.cloud</groupId> |
85 | | - <artifactId>spring-cloud-starter-config</artifactId> |
| 89 | + <artifactId>spring-cloud-starter-config</artifactId> |
| 90 | + <exclusions> |
| 91 | + <exclusion> |
| 92 | + <groupId>org.bouncycastle</groupId> |
| 93 | + <artifactId>bcprov-jdk15on</artifactId> |
| 94 | + </exclusion> |
| 95 | + <exclusion> |
| 96 | + <groupId>org.bouncycastle</groupId> |
| 97 | + <artifactId>bcmail-jdk15on</artifactId> |
| 98 | + </exclusion> |
| 99 | + <exclusion> |
| 100 | + <groupId>org.bouncycastle</groupId> |
| 101 | + <artifactId>bcpkix-jdk15on</artifactId> |
| 102 | + </exclusion> |
| 103 | + </exclusions> |
86 | 104 | </dependency> |
87 | 105 | <dependency> |
88 | 106 | <groupId>org.springframework.cloud</groupId> |
89 | 107 | <artifactId>spring-cloud-starter-bootstrap</artifactId> |
| 108 | + <exclusions> |
| 109 | + <exclusion> |
| 110 | + <groupId>org.bouncycastle</groupId> |
| 111 | + <artifactId>bcprov-jdk15on</artifactId> |
| 112 | + </exclusion> |
| 113 | + <exclusion> |
| 114 | + <groupId>org.bouncycastle</groupId> |
| 115 | + <artifactId>bcmail-jdk15on</artifactId> |
| 116 | + </exclusion> |
| 117 | + <exclusion> |
| 118 | + <groupId>org.bouncycastle</groupId> |
| 119 | + <artifactId>bcpkix-jdk15on</artifactId> |
| 120 | + </exclusion> |
| 121 | + </exclusions> |
90 | 122 | </dependency> |
91 | 123 | <dependency> |
92 | 124 | <groupId>io.pivotal.spring.cloud</groupId> |
|
96 | 128 | <groupId>org.codehaus.jackson</groupId> |
97 | 129 | <artifactId>jackson-mapper-asl</artifactId> |
98 | 130 | </exclusion> |
| 131 | + <exclusion> |
| 132 | + <groupId>org.bouncycastle</groupId> |
| 133 | + <artifactId>bcprov-jdk15on</artifactId> |
| 134 | + </exclusion> |
| 135 | + <exclusion> |
| 136 | + <groupId>org.bouncycastle</groupId> |
| 137 | + <artifactId>bcmail-jdk15on</artifactId> |
| 138 | + </exclusion> |
| 139 | + <exclusion> |
| 140 | + <groupId>org.bouncycastle</groupId> |
| 141 | + <artifactId>bcpkix-jdk15on</artifactId> |
| 142 | + </exclusion> |
99 | 143 | </exclusions> |
100 | 144 | </dependency> |
101 | | - <dependency> |
102 | | - <groupId>org.bouncycastle</groupId> |
103 | | - <artifactId>bcprov-jdk15on</artifactId> |
104 | | - <version>${bcprov-jdk15on.version}</version> |
105 | | - </dependency> |
106 | 145 | <dependency> |
107 | 146 | <groupId>dnsjava</groupId> |
108 | 147 | <artifactId>dnsjava</artifactId> |
109 | 148 | <version>${dnsjava.version}</version> |
110 | | - </dependency> |
111 | | - <dependency> |
112 | | - <groupId>org.nhind</groupId> |
113 | | - <artifactId>dns</artifactId> |
114 | | - <version>8.0.1</version> |
115 | | - </dependency> |
116 | | - <dependency> |
117 | | - <groupId>org.nhind</groupId> |
118 | | - <artifactId>config-model</artifactId> |
119 | | - <version>8.0.0</version> |
120 | | - </dependency> |
121 | | - <dependency> |
122 | | - <groupId>org.nhind</groupId> |
123 | | - <artifactId>config-service-client</artifactId> |
124 | | - <version>8.0.0</version> |
125 | | - </dependency> |
126 | | - <dependency> |
127 | | - <groupId>org.nhind</groupId> |
128 | | - <artifactId>direct-policy</artifactId> |
129 | | - <version>8.0.0</version> |
130 | | - </dependency> |
131 | | - <dependency> |
132 | | - <groupId>org.nhind</groupId> |
133 | | - <artifactId>direct-common</artifactId> |
134 | | - <version>8.0.0</version> |
135 | 149 | </dependency> |
136 | 150 | </dependencies> |
137 | 151 | <build> |
|
0 commit comments