|
19 | 19 | <java-module-name>spring.data.couchbase</java-module-name>
|
20 | 20 | <jodatime>2.10.13</jodatime>
|
21 | 21 | <jakarta.validation>3.0.1</jakarta.validation>
|
22 |
| - <hibernate.validator>7.0.1.Final</hibernate.validator> |
23 | 22 | <apt>1.1.3</apt>
|
24 | 23 | <querydsl>5.0.0</querydsl>
|
25 | 24 | <mysema.querydsl>3.7.4</mysema.querydsl>
|
| 25 | + <jakarta.enterprise>3.0.0</jakarta.enterprise> |
| 26 | + <org.hibernate.validator>7.0.1.Final</org.hibernate.validator> |
| 27 | + <jakarta.el>4.0.0</jakarta.el> |
| 28 | + <javax.el>3.0.0</javax.el> |
| 29 | + <org.glassfish>4.0.2</org.glassfish> |
| 30 | + <org.apache.geronimo.specs>1.0.1</org.apache.geronimo.specs> |
| 31 | + <javax.interceptor>1.2.1</javax.interceptor> |
| 32 | + <com.couchbase.mock>1.5.25</com.couchbase.mock> |
| 33 | + <com.squareup.okhttp3>4.8.1</com.squareup.okhttp3> |
| 34 | + <org.awaitility>4.0.3</org.awaitility> |
26 | 35 | </properties>
|
27 | 36 |
|
28 | 37 | <dependencyManagement>
|
|
67 | 76 | <version>${springdata.commons}</version>
|
68 | 77 | </dependency>
|
69 | 78 |
|
70 |
| -<!-- in parent |
71 |
| - <dependency> |
72 |
| - <groupId>com.couchbase.client</groupId> |
73 |
| - <artifactId>java-client</artifactId> |
74 |
| - <version>${couchbase}</version> |
75 |
| - </dependency> |
76 |
| ---> |
77 |
| - |
78 | 79 | <!-- CDI -->
|
79 | 80 | <dependency>
|
80 | 81 | <groupId>jakarta.enterprise</groupId>
|
81 | 82 | <artifactId>jakarta.enterprise.cdi-api</artifactId>
|
82 |
| - <version>3.0.0</version> |
| 83 | + <version>${jakarta.enterprise}</version> |
83 | 84 | </dependency>
|
84 | 85 |
|
85 | 86 | <dependency>
|
|
92 | 93 | <dependency>
|
93 | 94 | <groupId>org.hibernate.validator</groupId>
|
94 | 95 | <artifactId>hibernate-validator</artifactId>
|
95 |
| - <version>7.0.1.Final</version> |
96 |
| - <scope>test</scope> |
97 |
| - </dependency> |
98 |
| - |
99 |
| - <dependency> |
100 |
| - <groupId>org.apache.httpcomponents</groupId> |
101 |
| - <artifactId>httpclient</artifactId> |
102 |
| - <version>4.5.13</version> |
| 96 | + <version>${org.hibernate.validator}</version> |
103 | 97 | <scope>test</scope>
|
104 | 98 | </dependency>
|
105 | 99 |
|
|
137 | 131 | <dependency>
|
138 | 132 | <groupId>jakarta.el</groupId>
|
139 | 133 | <artifactId>jakarta.el-api</artifactId>
|
140 |
| - <version>4.0.0</version> |
| 134 | + <version>${jakarta.el}</version> |
141 | 135 | <scope>provided</scope>
|
142 | 136 | <optional>true</optional>
|
143 | 137 | </dependency>
|
144 | 138 |
|
145 | 139 | <dependency>
|
146 | 140 | <groupId>javax.el</groupId>
|
147 | 141 | <artifactId>javax.el-api</artifactId>
|
148 |
| - <version>3.0.0</version> |
| 142 | + <version>${javax.el}</version> |
149 | 143 | <scope>test</scope>
|
150 | 144 | </dependency>
|
151 | 145 |
|
152 | 146 | <dependency>
|
153 | 147 | <groupId>org.glassfish</groupId>
|
154 | 148 | <artifactId>jakarta.el</artifactId>
|
155 |
| - <version>4.0.2</version> |
| 149 | + <version>${jakarta.el}</version> |
156 | 150 | <scope>provided</scope>
|
157 | 151 | <optional>true</optional>
|
158 | 152 | </dependency>
|
|
162 | 156 | <dependency>
|
163 | 157 | <groupId>org.apache.geronimo.specs</groupId>
|
164 | 158 | <artifactId>geronimo-jcdi_2.0_spec</artifactId>
|
165 |
| - <version>1.0.1</version> |
| 159 | + <version>${org.apache.geronimo.specs}</version> |
166 | 160 | <scope>test</scope>
|
167 | 161 | </dependency>
|
168 | 162 |
|
169 | 163 | <dependency>
|
170 | 164 | <groupId>javax.interceptor</groupId>
|
171 | 165 | <artifactId>javax.interceptor-api</artifactId>
|
172 |
| - <version>1.2.1</version> |
173 |
| - <scope>test</scope> |
174 |
| - </dependency> |
175 |
| - |
176 |
| - <dependency> |
177 |
| - <groupId>org.apache.openwebbeans</groupId> |
178 |
| - <artifactId>openwebbeans-se</artifactId> |
179 |
| - <version>${webbeans}</version> |
| 166 | + <version>${javax.interceptor}</version> |
180 | 167 | <scope>test</scope>
|
181 | 168 | </dependency>
|
182 | 169 |
|
183 | 170 | <dependency>
|
184 | 171 | <groupId>com.couchbase.mock</groupId>
|
185 | 172 | <artifactId>CouchbaseMock</artifactId>
|
186 |
| - <version>1.5.25</version> |
| 173 | + <version>${com.couchbase.mock}</version> |
187 | 174 | <scope>test</scope>
|
188 | 175 | </dependency>
|
189 | 176 |
|
190 | 177 | <dependency>
|
191 | 178 | <groupId>com.squareup.okhttp3</groupId>
|
192 | 179 | <artifactId>okhttp</artifactId>
|
193 |
| - <version>4.8.1</version> |
| 180 | + <version>${com.squareup.okhttp3}</version> |
194 | 181 | <scope>test</scope>
|
195 | 182 | </dependency>
|
196 | 183 |
|
197 | 184 | <dependency>
|
198 | 185 | <groupId>com.squareup.okhttp3</groupId>
|
199 | 186 | <artifactId>okhttp-tls</artifactId>
|
200 |
| - <version>4.8.1</version> |
| 187 | + <version>${com.squareup.okhttp3}</version> |
201 | 188 | <scope>test</scope>
|
202 | 189 | </dependency>
|
203 | 190 |
|
|
226 | 213 | <dependency>
|
227 | 214 | <groupId>org.awaitility</groupId>
|
228 | 215 | <artifactId>awaitility</artifactId>
|
229 |
| - <version>4.0.3</version> |
| 216 | + <version>${org.awaitility}</version> |
230 | 217 | <scope>test</scope>
|
231 | 218 | </dependency>
|
232 | 219 |
|
|
0 commit comments