|
13 | 13 | <groupId>io.dapr.spring</groupId> |
14 | 14 | <artifactId>dapr-spring-parent</artifactId> |
15 | 15 | <packaging>pom</packaging> |
16 | | - <version>1.17.0-SNAPSHOT</version> |
17 | 16 | <name>dapr-spring-parent</name> |
18 | 17 | <description>SDK extension for Spring and Spring Boot</description> |
19 | 18 |
|
|
31 | 30 | <maven.compiler.source>11</maven.compiler.source> |
32 | 31 | <maven.compiler.target>11</maven.compiler.target> |
33 | 32 | <maven.compiler.release>11</maven.compiler.release> |
34 | | - <testcontainers.version>1.19.8</testcontainers.version> |
35 | | - <junit.version>5.11.2</junit.version> |
36 | 33 | <!-- WARNING: don't change this property unless you also update .github/scripts/update_sdk_version.sh --> |
37 | 34 | <dapr.spring.version>1.17.0-SNAPSHOT</dapr.spring.version> |
38 | 35 | </properties> |
39 | 36 |
|
40 | 37 | <dependencyManagement> |
41 | 38 | <dependencies> |
42 | | - <dependency> |
43 | | - <groupId>org.springframework.boot</groupId> |
44 | | - <artifactId>spring-boot-dependencies</artifactId> |
45 | | - <version>${springboot.version}</version> |
46 | | - <type>pom</type> |
47 | | - </dependency> |
48 | | - <dependency> |
49 | | - <groupId>io.dapr</groupId> |
50 | | - <artifactId>dapr-sdk</artifactId> |
51 | | - <version>${dapr.sdk.version}</version> |
52 | | - </dependency> |
53 | | - <dependency> |
54 | | - <groupId>io.dapr</groupId> |
55 | | - <artifactId>dapr-sdk-actors</artifactId> |
56 | | - <version>${dapr.sdk.version}</version> |
57 | | - </dependency> |
58 | | - <dependency> |
59 | | - <groupId>io.dapr</groupId> |
60 | | - <artifactId>dapr-sdk-workflows</artifactId> |
61 | | - <version>${dapr.sdk.version}</version> |
62 | | - </dependency> |
63 | 39 | <dependency> |
64 | 40 | <groupId>io.dapr.spring</groupId> |
65 | 41 | <artifactId>dapr-spring-data</artifactId> |
|
80 | 56 | <artifactId>dapr-spring-boot-autoconfigure</artifactId> |
81 | 57 | <version>${dapr.spring.version}</version> |
82 | 58 | </dependency> |
83 | | - <dependency> |
84 | | - <groupId>io.dapr</groupId> |
85 | | - <artifactId>dapr-sdk-springboot</artifactId> |
86 | | - <version>${dapr.sdk.version}</version> |
87 | | - </dependency> |
88 | | - <dependency> |
89 | | - <groupId>org.springframework</groupId> |
90 | | - <artifactId>spring-context</artifactId> |
91 | | - <version>${springframework.version}</version> |
92 | | - </dependency> |
93 | | - <dependency> |
94 | | - <groupId>org.springframework</groupId> |
95 | | - <artifactId>spring-beans</artifactId> |
96 | | - <version>${springframework.version}</version> |
97 | | - </dependency> |
98 | | - |
99 | | - <!-- Spring dependencies --> |
100 | | - <dependency> |
101 | | - <groupId>org.springframework</groupId> |
102 | | - <artifactId>spring-web</artifactId> |
103 | | - <version>${springframework.version}</version> |
104 | | - </dependency> |
105 | | - <dependency> |
106 | | - <groupId>org.springframework.boot</groupId> |
107 | | - <artifactId>spring-boot-configuration-processor</artifactId> |
108 | | - <version>${springboot.version}</version> |
109 | | - </dependency> |
110 | | - <dependency> |
111 | | - <groupId>org.springframework.boot</groupId> |
112 | | - <artifactId>spring-boot-starter</artifactId> |
113 | | - <version>${springboot.version}</version> |
114 | | - </dependency> |
115 | | - <dependency> |
116 | | - <groupId>org.springframework.boot</groupId> |
117 | | - <artifactId>spring-boot-autoconfigure-processor</artifactId> |
118 | | - <version>${springboot.version}</version> |
119 | | - </dependency> |
120 | 59 | <dependency> |
121 | 60 | <groupId>io.dapr.spring</groupId> |
122 | 61 | <artifactId>dapr-spring-boot-tests</artifactId> |
123 | 62 | <version>${dapr.spring.version}</version> |
124 | 63 | </dependency> |
125 | | - |
126 | | - <!-- Test dependencies --> |
127 | | - <dependency> |
128 | | - <groupId>org.junit.jupiter</groupId> |
129 | | - <artifactId>junit-jupiter-api</artifactId> |
130 | | - <version>${junit.version}</version> |
131 | | - <scope>test</scope> |
132 | | - </dependency> |
133 | | - <dependency> |
134 | | - <groupId>org.springframework.boot</groupId> |
135 | | - <artifactId>spring-boot-starter-test</artifactId> |
136 | | - <version>${springboot.version}</version> |
137 | | - <scope>test</scope> |
138 | | - </dependency> |
139 | | - <dependency> |
140 | | - <groupId>org.junit.jupiter</groupId> |
141 | | - <artifactId>junit-jupiter-params</artifactId> |
142 | | - <version>${junit.version}</version> |
143 | | - <scope>test</scope> |
144 | | - </dependency> |
145 | | - <dependency> |
146 | | - <groupId>org.junit.jupiter</groupId> |
147 | | - <artifactId>junit-jupiter-engine</artifactId> |
148 | | - <version>${junit.version}</version> |
149 | | - <scope>test</scope> |
150 | | - </dependency> |
151 | | - <dependency> |
152 | | - <groupId>org.junit.jupiter</groupId> |
153 | | - <artifactId>junit-jupiter</artifactId> |
154 | | - <version>${junit.version}</version> |
155 | | - <scope>test</scope> |
156 | | - </dependency> |
157 | | - <dependency> |
158 | | - <groupId>org.testcontainers</groupId> |
159 | | - <artifactId>junit-jupiter</artifactId> |
160 | | - <version>${testcontainers.version}</version> |
161 | | - <scope>test</scope> |
162 | | - </dependency> |
163 | 64 | </dependencies> |
164 | 65 | </dependencyManagement> |
165 | 66 |
|
|
0 commit comments