|
26 | 26 | <dapr.sdk.alpha.version>0.16.0-SNAPSHOT</dapr.sdk.alpha.version> |
27 | 27 | <protobuf.output.directory>${project.build.directory}/generated-sources</protobuf.output.directory> |
28 | 28 | <protobuf.input.directory>${project.basedir}/proto</protobuf.input.directory> |
29 | | - <grpc.version>1.69.0</grpc.version> |
30 | | - <protobuf.version>3.25.5</protobuf.version> |
31 | | - <opentelemetry.version>1.41.0</opentelemetry.version> |
32 | | - <springboot.version>3.4.3</springboot.version> |
33 | | - <logback-core.version>1.5.16</logback-core.version> |
34 | | - <wiremock.version>3.9.1</wiremock.version> |
35 | | - <testcontainers-test.version>1.20.0</testcontainers-test.version> |
36 | 29 |
|
37 | 30 | <!-- The JaCoCo plugin was expecting coverage for this module, but since it's a test module |
38 | 31 | and code coverage typically doesn't apply to tests, the coverage is set to 0. --> |
|
67 | 60 | <dependency> |
68 | 61 | <groupId>commons-cli</groupId> |
69 | 62 | <artifactId>commons-cli</artifactId> |
70 | | - <version>1.9.0</version> |
71 | 63 | </dependency> |
72 | 64 | <dependency> |
73 | 65 | <groupId>io.grpc</groupId> |
74 | 66 | <artifactId>grpc-protobuf</artifactId> |
75 | | - <version>${grpc.version}</version> |
76 | 67 | </dependency> |
77 | 68 | <dependency> |
78 | 69 | <groupId>io.grpc</groupId> |
79 | 70 | <artifactId>grpc-stub</artifactId> |
80 | | - <version>${grpc.version}</version> |
81 | 71 | </dependency> |
82 | 72 | <dependency> |
83 | 73 | <groupId>io.grpc</groupId> |
84 | 74 | <artifactId>grpc-api</artifactId> |
85 | | - <version>${grpc.version}</version> |
86 | 75 | </dependency> |
87 | 76 | <dependency> |
88 | 77 | <groupId>commons-io</groupId> |
89 | 78 | <artifactId>commons-io</artifactId> |
90 | | - <version>2.14.0</version> |
91 | 79 | </dependency> |
92 | 80 | <dependency> |
93 | 81 | <groupId>io.opentelemetry</groupId> |
94 | 82 | <artifactId>opentelemetry-sdk</artifactId> |
95 | | - <version>${opentelemetry.version}</version> |
96 | 83 | </dependency> |
97 | 84 | <dependency> |
98 | 85 | <groupId>io.opentelemetry</groupId> |
99 | 86 | <artifactId>opentelemetry-api</artifactId> |
100 | | - <version>${opentelemetry.version}</version> |
101 | 87 | </dependency> |
102 | 88 | <dependency> |
103 | 89 | <groupId>io.opentelemetry</groupId> |
104 | 90 | <artifactId>opentelemetry-context</artifactId> |
105 | | - <version>${opentelemetry.version}</version> |
106 | 91 | </dependency> |
107 | 92 | <dependency> |
108 | 93 | <groupId>io.opentelemetry</groupId> |
109 | 94 | <artifactId>opentelemetry-sdk-common</artifactId> |
110 | | - <version>${opentelemetry.version}</version> |
111 | 95 | </dependency> |
112 | 96 | <dependency> |
113 | 97 | <groupId>io.opentelemetry</groupId> |
114 | 98 | <artifactId>opentelemetry-sdk-trace</artifactId> |
115 | | - <version>${opentelemetry.version}</version> |
116 | 99 | </dependency> |
117 | 100 | <dependency> |
118 | 101 | <groupId>io.opentelemetry</groupId> |
119 | 102 | <artifactId>opentelemetry-sdk-metrics</artifactId> |
120 | | - <version>${opentelemetry.version}</version> |
121 | 103 | </dependency> |
122 | 104 | <dependency> |
123 | 105 | <groupId>io.opentelemetry</groupId> |
124 | 106 | <artifactId>opentelemetry-exporter-common</artifactId> |
125 | | - <version>${opentelemetry.version}</version> |
126 | 107 | </dependency> |
127 | 108 | <dependency> |
128 | 109 | <groupId>io.opentelemetry</groupId> |
129 | 110 | <artifactId>opentelemetry-exporter-logging</artifactId> |
130 | | - <version>${opentelemetry.version}</version> |
131 | 111 | </dependency> |
132 | 112 | <dependency> |
133 | 113 | <groupId>io.opentelemetry</groupId> |
134 | 114 | <artifactId>opentelemetry-exporter-zipkin</artifactId> |
135 | | - <version>${opentelemetry.version}</version> |
136 | 115 | </dependency> |
137 | 116 | <!-- https://mvnrepository.com/artifact/io.zipkin.reporter2/zipkin-reporter --> |
138 | 117 | <dependency> |
139 | 118 | <groupId>io.zipkin.reporter2</groupId> |
140 | 119 | <artifactId>zipkin-reporter</artifactId> |
141 | | - <version>3.4.0</version> |
142 | 120 | </dependency> |
143 | 121 | <dependency> |
144 | 122 | <groupId>io.zipkin.reporter2</groupId> |
145 | 123 | <artifactId>zipkin-sender-urlconnection</artifactId> |
146 | | - <version>3.4.0</version> |
147 | 124 | </dependency> |
148 | 125 | <dependency> |
149 | 126 | <groupId>io.dapr</groupId> |
150 | 127 | <artifactId>dapr-sdk</artifactId> |
151 | | - <version>${dapr.sdk.version}</version> |
152 | 128 | <scope>test</scope> |
153 | 129 | </dependency> |
154 | 130 | <dependency> |
155 | 131 | <groupId>io.dapr</groupId> |
156 | 132 | <artifactId>dapr-sdk-actors</artifactId> |
157 | | - <version>${dapr.sdk.version}</version> |
158 | 133 | <scope>test</scope> |
159 | 134 | </dependency> |
160 | 135 | <dependency> |
161 | 136 | <groupId>io.dapr</groupId> |
162 | 137 | <artifactId>dapr-sdk-springboot</artifactId> |
163 | | - <version>${dapr.sdk.version}</version> |
164 | 138 | <scope>test</scope> |
165 | 139 | </dependency> |
166 | 140 | <dependency> |
167 | 141 | <groupId>io.dapr</groupId> |
168 | 142 | <artifactId>dapr-sdk-workflows</artifactId> |
169 | | - <version>${dapr.sdk.alpha.version}</version> |
170 | 143 | <scope>test</scope> |
171 | 144 | </dependency> |
172 | 145 | <dependency> |
173 | 146 | <groupId>io.dapr.spring</groupId> |
174 | 147 | <artifactId>dapr-spring-boot-starter</artifactId> |
175 | | - <version>${dapr.sdk.alpha.version}</version> |
176 | 148 | </dependency> |
177 | 149 | <dependency> |
178 | 150 | <groupId>io.dapr.spring</groupId> |
179 | 151 | <artifactId>dapr-spring-boot-starter-test</artifactId> |
180 | | - <version>${dapr.sdk.alpha.version}</version> |
181 | 152 | <scope>test</scope> |
182 | 153 | </dependency> |
183 | 154 | <dependency> |
|
191 | 162 | <dependency> |
192 | 163 | <groupId>org.wiremock</groupId> |
193 | 164 | <artifactId>wiremock-standalone</artifactId> |
194 | | - <version>${wiremock.version}</version> |
195 | 165 | <scope>test</scope> |
196 | 166 | </dependency> |
197 | 167 | <dependency> |
|
207 | 177 | <dependency> |
208 | 178 | <groupId>org.apache.commons</groupId> |
209 | 179 | <artifactId>commons-lang3</artifactId> |
210 | | - <version>3.9</version> |
211 | 180 | <scope>test</scope> |
212 | 181 | </dependency> |
213 | 182 | <dependency> |
214 | 183 | <groupId>ch.qos.logback</groupId> |
215 | 184 | <artifactId>logback-core</artifactId> |
216 | | - <version>${logback-core.version}</version> |
217 | 185 | <scope>test</scope> |
218 | 186 | </dependency> |
219 | 187 | <dependency> |
220 | 188 | <groupId>org.testcontainers</groupId> |
221 | 189 | <artifactId>postgresql</artifactId> |
222 | | - <version>${testcontainers-test.version}</version> |
223 | 190 | <scope>test</scope> |
224 | 191 | </dependency> |
225 | 192 | <dependency> |
226 | 193 | <groupId>org.testcontainers</groupId> |
227 | 194 | <artifactId>mysql</artifactId> |
228 | | - <version>${testcontainers-test.version}</version> |
229 | 195 | <scope>test</scope> |
230 | 196 | </dependency> |
231 | 197 | <dependency> |
232 | 198 | <groupId>jakarta.annotation</groupId> |
233 | 199 | <artifactId>jakarta.annotation-api</artifactId> |
234 | | - <version>2.1.1</version> |
235 | 200 | <scope>compile</scope> |
236 | 201 | </dependency> |
237 | 202 | <dependency> |
238 | 203 | <groupId>javax.annotation</groupId> |
239 | 204 | <artifactId>javax.annotation-api</artifactId> |
240 | | - <version>1.3.2</version> |
241 | 205 | <scope>compile</scope> |
242 | 206 | </dependency> |
243 | 207 | <dependency> |
|
258 | 222 | <dependency> |
259 | 223 | <groupId>org.testcontainers</groupId> |
260 | 224 | <artifactId>toxiproxy</artifactId> |
261 | | - <version>${testcontainers-test.version}</version> |
262 | 225 | <scope>test</scope> |
263 | 226 | </dependency> |
264 | 227 | </dependencies> |
|
0 commit comments