|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
3 | 5 | <modelVersion>4.0.0</modelVersion> |
4 | 6 |
|
5 | 7 | <parent> |
|
35 | 37 | <modules> |
36 | 38 | <module>jwt</module> |
37 | 39 | <module>tokens</module> |
| 40 | + <module>vault</module> |
38 | 41 | </modules> |
39 | 42 |
|
40 | 43 | <properties> |
| 44 | + <scalecube-config.version>0.4.16</scalecube-config.version> |
| 45 | + <scalecube-commons.version>1.0.13</scalecube-commons.version> |
| 46 | + |
41 | 47 | <jjwt.version>0.11.2</jjwt.version> |
42 | | - <reactor.version>Dysprosium-SR9</reactor.version> |
| 48 | + <reactor.version>2020.0.5</reactor.version> |
43 | 49 | <jackson.version>2.11.0</jackson.version> |
44 | 50 | <slf4j.version>1.7.30</slf4j.version> |
| 51 | + <snakeyaml.version>1.26</snakeyaml.version> |
45 | 52 |
|
46 | 53 | <mockito.version>3.1.0</mockito.version> |
47 | 54 | <hamcrest.version>1.3</hamcrest.version> |
|
54 | 61 |
|
55 | 62 | <dependencyManagement> |
56 | 63 | <dependencies> |
| 64 | + <!-- Scalecube Config --> |
| 65 | + <dependency> |
| 66 | + <groupId>io.scalecube</groupId> |
| 67 | + <artifactId>scalecube-config-vault</artifactId> |
| 68 | + <version>${scalecube-config.version}</version> |
| 69 | + </dependency> |
| 70 | + <!-- Scalecube Commons --> |
| 71 | + <dependency> |
| 72 | + <groupId>io.scalecube</groupId> |
| 73 | + <artifactId>scalecube-commons</artifactId> |
| 74 | + <version>${scalecube-commons.version}</version> |
| 75 | + </dependency> |
57 | 76 | <!-- Reactor --> |
58 | 77 | <dependency> |
59 | 78 | <groupId>io.projectreactor</groupId> |
|
68 | 87 | <artifactId>slf4j-api</artifactId> |
69 | 88 | <version>${slf4j.version}</version> |
70 | 89 | </dependency> |
| 90 | + <!-- Yaml --> |
| 91 | + <dependency> |
| 92 | + <groupId>org.yaml</groupId> |
| 93 | + <artifactId>snakeyaml</artifactId> |
| 94 | + <version>${snakeyaml.version}</version> |
| 95 | + </dependency> |
71 | 96 | <!-- Jsonwebtoken --> |
72 | 97 | <dependency> |
73 | 98 | <groupId>io.jsonwebtoken</groupId> |
|
0 commit comments