|
23 | 23 | <maven.compiler.target>${java.version}</maven.compiler.target>
|
24 | 24 | <maven.deploy.skip>true</maven.deploy.skip>
|
25 | 25 | <spotbugs.fail>false</spotbugs.fail>
|
26 |
| - <opentelemetry.version>0.14.0</opentelemetry.version> |
27 | 26 | </properties>
|
28 | 27 |
|
29 | 28 | <dependencies>
|
30 | 29 | <dependency>
|
31 | 30 | <groupId>commons-cli</groupId>
|
32 | 31 | <artifactId>commons-cli</artifactId>
|
33 |
| - <version>1.4</version> |
34 | 32 | </dependency>
|
35 | 33 | <dependency>
|
36 | 34 | <groupId>io.grpc</groupId>
|
37 | 35 | <artifactId>grpc-protobuf</artifactId>
|
38 |
| - <version>${grpc.version}</version> |
39 | 36 | </dependency>
|
40 | 37 | <dependency>
|
41 | 38 | <groupId>io.grpc</groupId>
|
42 | 39 | <artifactId>grpc-stub</artifactId>
|
43 |
| - <version>${grpc.version}</version> |
44 | 40 | </dependency>
|
45 | 41 | <dependency>
|
46 | 42 | <groupId>io.grpc</groupId>
|
47 | 43 | <artifactId>grpc-api</artifactId>
|
48 |
| - <version>${grpc.version}</version> |
49 | 44 | </dependency>
|
50 | 45 | <dependency>
|
51 | 46 | <groupId>io.grpc</groupId>
|
52 | 47 | <artifactId>grpc-testing</artifactId>
|
53 |
| - <version>${grpc.version}</version> |
54 | 48 | <scope>test</scope>
|
55 | 49 | </dependency>
|
56 | 50 | <dependency>
|
57 | 51 | <groupId>com.google.protobuf</groupId>
|
58 | 52 | <artifactId>protobuf-java-util</artifactId>
|
59 | 53 | <version>${protobuf.version}</version>
|
60 | 54 | </dependency>
|
61 |
| - <dependency> |
62 |
| - <groupId>com.github.os72</groupId> |
63 |
| - <artifactId>protoc-jar-maven-plugin</artifactId> |
64 |
| - <version>3.11.4</version> |
65 |
| - </dependency> |
66 | 55 | <dependency>
|
67 | 56 | <groupId>org.springframework.boot</groupId>
|
68 | 57 | <artifactId>spring-boot-starter-web</artifactId>
|
69 |
| - <version>2.7.8</version> |
70 | 58 | </dependency>
|
71 | 59 | <dependency>
|
72 | 60 | <groupId>org.springframework.boot</groupId>
|
73 | 61 | <artifactId>spring-boot-autoconfigure</artifactId>
|
74 |
| - <version>2.7.8</version> |
75 | 62 | </dependency>
|
76 | 63 | <dependency>
|
77 | 64 | <groupId>com.jayway.jsonpath</groupId>
|
78 | 65 | <artifactId>json-path</artifactId>
|
79 |
| - <version>2.4.0</version> |
80 | 66 | </dependency>
|
81 | 67 | <dependency>
|
82 | 68 | <groupId>io.opentelemetry</groupId>
|
83 | 69 | <artifactId>opentelemetry-sdk</artifactId>
|
84 |
| - <version>${opentelemetry.version}</version> |
85 | 70 | </dependency>
|
86 | 71 | <dependency>
|
87 | 72 | <groupId>io.opentelemetry</groupId>
|
88 | 73 | <artifactId>opentelemetry-exporter-logging</artifactId>
|
89 |
| - <version>${opentelemetry.version}</version> |
90 | 74 | </dependency>
|
91 | 75 | <dependency>
|
92 | 76 | <groupId>io.opentelemetry</groupId>
|
93 | 77 | <artifactId>opentelemetry-exporter-zipkin</artifactId>
|
94 |
| - <version>${opentelemetry.version}</version> |
95 | 78 | </dependency>
|
96 | 79 | <dependency>
|
97 | 80 | <groupId>org.junit.jupiter</groupId>
|
98 | 81 | <artifactId>junit-jupiter</artifactId>
|
99 | 82 | <scope>test</scope>
|
100 | 83 | </dependency>
|
| 84 | + |
101 | 85 | <dependency>
|
102 | 86 | <groupId>org.mockito</groupId>
|
103 | 87 | <artifactId>mockito-core</artifactId>
|
104 |
| - <scope>compile</scope> |
105 | 88 | </dependency>
|
| 89 | + |
| 90 | + <dependency> |
| 91 | + <groupId>com.evanlennick</groupId> |
| 92 | + <artifactId>retry4j</artifactId> |
| 93 | + </dependency> |
| 94 | + |
106 | 95 | <dependency>
|
107 | 96 | <groupId>org.junit.platform</groupId>
|
108 | 97 | <artifactId>junit-platform-console-standalone</artifactId>
|
109 |
| - <version>1.7.0</version> |
110 |
| - <scope>compile</scope> |
111 | 98 | </dependency>
|
| 99 | + |
112 | 100 | <dependency>
|
113 | 101 | <groupId>io.dapr</groupId>
|
114 | 102 | <artifactId>dapr-sdk-springboot</artifactId>
|
115 |
| - <version>${project.version}</version> |
116 | 103 | </dependency>
|
117 | 104 | <dependency>
|
118 | 105 | <groupId>io.dapr</groupId>
|
119 | 106 | <artifactId>dapr-sdk-actors</artifactId>
|
120 |
| - <version>${project.version}</version> |
121 | 107 | </dependency>
|
122 | 108 | <dependency>
|
123 | 109 | <groupId>io.dapr</groupId>
|
124 | 110 | <artifactId>dapr-sdk-workflows</artifactId>
|
125 |
| - <version>${dapr.sdk-workflows.version}</version> |
126 | 111 | </dependency>
|
127 | 112 | <dependency>
|
128 | 113 | <groupId>io.dapr</groupId>
|
129 | 114 | <artifactId>dapr-sdk</artifactId>
|
130 |
| - <version>${project.version}</version> |
131 |
| - </dependency> |
132 |
| - <dependency> |
133 |
| - <groupId>com.evanlennick</groupId> |
134 |
| - <artifactId>retry4j</artifactId> |
135 |
| - <version>0.15.0</version> |
136 | 115 | </dependency>
|
137 | 116 | </dependencies>
|
138 | 117 |
|
|
141 | 120 | <plugin>
|
142 | 121 | <groupId>com.github.os72</groupId>
|
143 | 122 | <artifactId>protoc-jar-maven-plugin</artifactId>
|
144 |
| - <version>3.11.4</version> |
145 | 123 | <executions>
|
146 | 124 | <execution>
|
147 | 125 | <phase>generate-sources</phase>
|
|
174 | 152 | <plugin>
|
175 | 153 | <groupId>org.apache.maven.plugins</groupId>
|
176 | 154 | <artifactId>maven-compiler-plugin</artifactId>
|
177 |
| - <version>3.8.1</version> |
178 | 155 | <configuration>
|
179 | 156 | <release>11</release>
|
180 | 157 | </configuration>
|
181 | 158 | </plugin>
|
182 | 159 | <plugin>
|
183 | 160 | <groupId>org.apache.maven.plugins</groupId>
|
184 | 161 | <artifactId>maven-deploy-plugin</artifactId>
|
185 |
| - <version>${maven-deploy-plugin.version}</version> |
186 | 162 | <configuration>
|
187 | 163 | <skip>true</skip>
|
188 | 164 | </configuration>
|
189 | 165 | </plugin>
|
190 | 166 | <plugin>
|
191 | 167 | <groupId>org.apache.maven.plugins</groupId>
|
192 | 168 | <artifactId>maven-site-plugin</artifactId>
|
193 |
| - <version>3.9.1</version> |
194 | 169 | <configuration>
|
195 | 170 | <skip>true</skip>
|
196 | 171 | </configuration>
|
197 | 172 | </plugin>
|
198 | 173 | <plugin>
|
199 | 174 | <groupId>org.springframework.boot</groupId>
|
200 | 175 | <artifactId>spring-boot-maven-plugin</artifactId>
|
201 |
| - <version>${springboot.version}</version> |
202 | 176 | <executions>
|
203 | 177 | <execution>
|
204 | 178 | <goals>
|
|
0 commit comments