|
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/xsd/maven-4.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/xsd/maven-4.0.0.xsd"> |
3 | 5 | <modelVersion>4.0.0</modelVersion> |
4 | 6 |
|
5 | 7 | <parent> |
6 | 8 | <groupId>io.scalecube</groupId> |
7 | 9 | <artifactId>scalecube-parent</artifactId> |
8 | | - <version>0.3.12</version> |
| 10 | + <version>0.3.14</version> |
9 | 11 | </parent> |
10 | 12 |
|
11 | 13 | <artifactId>scalecube-config-parent</artifactId> |
|
39 | 41 | </scm> |
40 | 42 |
|
41 | 43 | <properties> |
42 | | - <vault-java-driver.version>5.1.0</vault-java-driver.version> |
43 | | - <slf4j.version>1.7.36</slf4j.version> |
44 | | - |
45 | | - <mockito-junit.version>2.27.0</mockito-junit.version> |
46 | | - <junit-jupiter.version>5.1.1</junit-jupiter.version> |
47 | | - <hamcrest.version>1.3</hamcrest.version> |
48 | | - <testcontainers.version>1.20.1</testcontainers.version> |
49 | | - <guava.version>33.3.0-jre</guava.version> |
50 | | - <log4j.version>2.20.0</log4j.version> |
| 44 | + <scalecube-test-support.version>0.1.0</scalecube-test-support.version> |
51 | 45 |
|
52 | 46 | <distributionManagement.url>https://maven.pkg.github.com/scalecube/scalecube-config |
53 | 47 | </distributionManagement.url> |
|
60 | 54 | <module>config-vault</module> |
61 | 55 | </modules> |
62 | 56 |
|
63 | | - <dependencyManagement> |
64 | | - <dependencies> |
65 | | - <dependency> |
66 | | - <groupId>org.slf4j</groupId> |
67 | | - <artifactId>slf4j-api</artifactId> |
68 | | - <version>${slf4j.version}</version> |
69 | | - </dependency> |
70 | | - <dependency> |
71 | | - <groupId>org.apache.logging.log4j</groupId> |
72 | | - <artifactId>log4j-slf4j-impl</artifactId> |
73 | | - <version>${log4j.version}</version> |
74 | | - </dependency> |
75 | | - <dependency> |
76 | | - <groupId>org.apache.logging.log4j</groupId> |
77 | | - <artifactId>log4j-core</artifactId> |
78 | | - <version>${log4j.version}</version> |
79 | | - </dependency> |
80 | | - <dependency> |
81 | | - <groupId>org.testcontainers</groupId> |
82 | | - <artifactId>vault</artifactId> |
83 | | - <version>${testcontainers.version}</version> |
84 | | - </dependency> |
85 | | - <dependency> |
86 | | - <groupId>com.bettercloud</groupId> |
87 | | - <artifactId>vault-java-driver</artifactId> |
88 | | - <version>${vault-java-driver.version}</version> |
89 | | - </dependency> |
90 | | - <dependency> |
91 | | - <groupId>com.google.guava</groupId> |
92 | | - <artifactId>guava</artifactId> |
93 | | - <version>${guava.version}</version> |
94 | | - </dependency> |
95 | | - <dependency> |
96 | | - <groupId>org.junit.jupiter</groupId> |
97 | | - <artifactId>junit-jupiter-api</artifactId> |
98 | | - <version>${junit-jupiter.version}</version> |
99 | | - </dependency> |
100 | | - <dependency> |
101 | | - <groupId>org.junit.jupiter</groupId> |
102 | | - <artifactId>junit-jupiter-engine</artifactId> |
103 | | - <version>${junit-jupiter.version}</version> |
104 | | - </dependency> |
105 | | - <dependency> |
106 | | - <groupId>org.junit.jupiter</groupId> |
107 | | - <artifactId>junit-jupiter-params</artifactId> |
108 | | - <version>${junit-jupiter.version}</version> |
109 | | - </dependency> |
110 | | - <dependency> |
111 | | - <groupId>org.mockito</groupId> |
112 | | - <artifactId>mockito-junit-jupiter</artifactId> |
113 | | - <version>${mockito-junit.version}</version> |
114 | | - </dependency> |
115 | | - <dependency> |
116 | | - <groupId>org.hamcrest</groupId> |
117 | | - <artifactId>hamcrest-all</artifactId> |
118 | | - <version>${hamcrest.version}</version> |
119 | | - </dependency> |
120 | | - </dependencies> |
121 | | - </dependencyManagement> |
122 | | - |
123 | 57 | <dependencies> |
124 | | - <!-- Test --> |
| 58 | + <!-- Tests --> |
125 | 59 | <dependency> |
126 | | - <groupId>com.google.guava</groupId> |
127 | | - <artifactId>guava</artifactId> |
| 60 | + <groupId>io.scalecube</groupId> |
| 61 | + <artifactId>scalecube-test-support</artifactId> |
| 62 | + <version>${scalecube-test-support.version}</version> |
128 | 63 | <scope>test</scope> |
129 | 64 | </dependency> |
130 | 65 | <dependency> |
131 | | - <groupId>org.junit.jupiter</groupId> |
132 | | - <artifactId>junit-jupiter-engine</artifactId> |
133 | | - <scope>test</scope> |
134 | | - </dependency> |
135 | | - <dependency> |
136 | | - <groupId>org.junit.jupiter</groupId> |
137 | | - <artifactId>junit-jupiter-params</artifactId> |
138 | | - <scope>test</scope> |
139 | | - </dependency> |
140 | | - <dependency> |
141 | | - <groupId>org.mockito</groupId> |
142 | | - <artifactId>mockito-junit-jupiter</artifactId> |
143 | | - <scope>test</scope> |
144 | | - </dependency> |
145 | | - <dependency> |
146 | | - <groupId>org.hamcrest</groupId> |
147 | | - <artifactId>hamcrest-all</artifactId> |
148 | | - <scope>test</scope> |
149 | | - </dependency> |
150 | | - <dependency> |
151 | | - <groupId>org.apache.logging.log4j</groupId> |
152 | | - <artifactId>log4j-slf4j-impl</artifactId> |
153 | | - <scope>test</scope> |
154 | | - </dependency> |
155 | | - <dependency> |
156 | | - <groupId>org.apache.logging.log4j</groupId> |
157 | | - <artifactId>log4j-core</artifactId> |
| 66 | + <groupId>com.google.guava</groupId> |
| 67 | + <artifactId>guava</artifactId> |
158 | 68 | <scope>test</scope> |
159 | 69 | </dependency> |
160 | 70 | <dependency> |
|
0 commit comments