|
1 | 1 | <project |
2 | | - 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"> |
| 2 | + 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"> |
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | 6 |
|
7 | 7 | <parent> |
|
10 | 10 | <version>1.1.0-SNAPSHOT</version> |
11 | 11 | </parent> |
12 | 12 |
|
13 | | - <groupId>io.dapr</groupId> |
14 | 13 | <artifactId>dapr-sdk-examples</artifactId> |
15 | 14 | <packaging>jar</packaging> |
16 | | - <version>1.1.0-SNAPSHOT</version> |
17 | 15 | <name>dapr-sdk-examples</name> |
18 | 16 |
|
19 | 17 | <properties> |
|
31 | 29 | <dependency> |
32 | 30 | <groupId>commons-cli</groupId> |
33 | 31 | <artifactId>commons-cli</artifactId> |
34 | | - <version>1.4</version> |
35 | 32 | </dependency> |
36 | 33 | <dependency> |
37 | 34 | <groupId>io.grpc</groupId> |
38 | 35 | <artifactId>grpc-protobuf</artifactId> |
39 | | - <version>${grpc.version}</version> |
40 | 36 | </dependency> |
41 | 37 | <dependency> |
42 | 38 | <groupId>io.grpc</groupId> |
43 | 39 | <artifactId>grpc-stub</artifactId> |
44 | | - <version>${grpc.version}</version> |
45 | 40 | </dependency> |
46 | 41 | <dependency> |
47 | 42 | <groupId>io.grpc</groupId> |
48 | 43 | <artifactId>grpc-api</artifactId> |
49 | | - <version>${grpc.version}</version> |
50 | 44 | </dependency> |
51 | 45 | <dependency> |
52 | 46 | <groupId>io.grpc</groupId> |
53 | 47 | <artifactId>grpc-testing</artifactId> |
54 | | - <version>${grpc.version}</version> |
55 | 48 | <scope>test</scope> |
56 | 49 | </dependency> |
57 | 50 | <dependency> |
58 | 51 | <groupId>com.google.protobuf</groupId> |
59 | 52 | <artifactId>protobuf-java-util</artifactId> |
60 | | - <version>${protobuf.version}</version> |
61 | | - </dependency> |
62 | | - <dependency> |
63 | | - <groupId>com.github.os72</groupId> |
64 | | - <artifactId>protoc-jar-maven-plugin</artifactId> |
65 | | - <version>3.10.1</version> |
66 | 53 | </dependency> |
67 | 54 | <dependency> |
68 | 55 | <groupId>org.springframework.boot</groupId> |
69 | 56 | <artifactId>spring-boot-starter-web</artifactId> |
70 | | - <version>2.3.5.RELEASE</version> |
71 | 57 | </dependency> |
72 | 58 | <dependency> |
73 | 59 | <groupId>org.springframework.boot</groupId> |
74 | 60 | <artifactId>spring-boot-autoconfigure</artifactId> |
75 | | - <version>2.3.5.RELEASE</version> |
76 | 61 | </dependency> |
77 | 62 | <dependency> |
78 | 63 | <groupId>com.jayway.jsonpath</groupId> |
79 | 64 | <artifactId>json-path</artifactId> |
80 | | - <version>2.4.0</version> |
81 | 65 | </dependency> |
82 | 66 | <dependency> |
83 | 67 | <groupId>io.opentelemetry</groupId> |
|
97 | 81 | <dependency> |
98 | 82 | <groupId>org.junit.jupiter</groupId> |
99 | 83 | <artifactId>junit-jupiter</artifactId> |
100 | | - <version>RELEASE</version> |
101 | 84 | <scope>compile</scope> |
102 | 85 | </dependency> |
103 | 86 | <dependency> |
104 | 87 | <groupId>org.mockito</groupId> |
105 | 88 | <artifactId>mockito-core</artifactId> |
106 | | - <version>3.6.0</version> |
107 | 89 | <scope>compile</scope> |
108 | 90 | </dependency> |
109 | 91 | <dependency> |
110 | 92 | <groupId>org.junit.platform</groupId> |
111 | 93 | <artifactId>junit-platform-console-standalone</artifactId> |
112 | | - <version>1.7.0</version> |
113 | 94 | <scope>compile</scope> |
114 | 95 | </dependency> |
115 | 96 | <dependency> |
116 | 97 | <groupId>io.dapr</groupId> |
117 | 98 | <artifactId>dapr-sdk-springboot</artifactId> |
118 | | - <version>${project.version}</version> |
119 | 99 | </dependency> |
120 | 100 | <dependency> |
121 | 101 | <groupId>io.dapr</groupId> |
122 | 102 | <artifactId>dapr-sdk-actors</artifactId> |
123 | | - <version>${project.version}</version> |
124 | 103 | </dependency> |
125 | 104 | <dependency> |
126 | 105 | <groupId>io.dapr</groupId> |
127 | 106 | <artifactId>dapr-sdk</artifactId> |
128 | | - <version>${project.version}</version> |
129 | 107 | </dependency> |
130 | 108 | </dependencies> |
131 | 109 |
|
|
167 | 145 | <plugin> |
168 | 146 | <groupId>org.apache.maven.plugins</groupId> |
169 | 147 | <artifactId>maven-compiler-plugin</artifactId> |
170 | | - <version>3.8.1</version> |
171 | 148 | <configuration> |
172 | 149 | <release>11</release> |
173 | 150 | </configuration> |
|
182 | 159 | <plugin> |
183 | 160 | <groupId>org.apache.maven.plugins</groupId> |
184 | 161 | <artifactId>maven-site-plugin</artifactId> |
185 | | - <version>3.9.1</version> |
186 | 162 | <configuration> |
187 | 163 | <skip>true</skip> |
188 | 164 | </configuration> |
189 | 165 | </plugin> |
190 | 166 | <plugin> |
191 | 167 | <groupId>org.springframework.boot</groupId> |
192 | 168 | <artifactId>spring-boot-maven-plugin</artifactId> |
| 169 | + <version>${springboot.version}</version> |
193 | 170 | <executions> |
194 | 171 | <execution> |
195 | 172 | <goals> |
|
0 commit comments