|
28 | 28 | </modules>
|
29 | 29 |
|
30 | 30 | <properties>
|
31 |
| - <springboot.version>3.2.6</springboot.version> |
32 | 31 | <maven.compiler.source>11</maven.compiler.source>
|
33 | 32 | <maven.compiler.target>11</maven.compiler.target>
|
34 | 33 | <maven.compiler.release>11</maven.compiler.release>
|
35 | 34 | <testcontainers.version>1.19.8</testcontainers.version>
|
36 |
| - <junit.version>5.10.2</junit.version> |
| 35 | + <junit.version>5.11.2</junit.version> |
| 36 | + <dapr.spring.version>0.16.0-SNAPSHOT</dapr.spring.version> |
| 37 | + <springboot.version>3.2.6</springboot.version> |
| 38 | + <springframework.version>6.1.8</springframework.version> |
37 | 39 | <logback-core.version>1.4.14</logback-core.version>
|
38 | 40 | </properties>
|
39 | 41 |
|
|
44 | 46 | <artifactId>spring-boot-dependencies</artifactId>
|
45 | 47 | <version>${springboot.version}</version>
|
46 | 48 | <type>pom</type>
|
47 |
| - <scope>import</scope> |
48 | 49 | </dependency>
|
| 50 | + <dependency> |
| 51 | + <groupId>io.dapr</groupId> |
| 52 | + <artifactId>dapr-sdk</artifactId> |
| 53 | + <version>${dapr.sdk.version}</version> |
| 54 | + </dependency> |
| 55 | + <dependency> |
| 56 | + <groupId>io.dapr</groupId> |
| 57 | + <artifactId>dapr-sdk-actors</artifactId> |
| 58 | + <version>${dapr.sdk.version}</version> |
| 59 | + </dependency> |
| 60 | + <dependency> |
| 61 | + <groupId>io.dapr</groupId> |
| 62 | + <artifactId>dapr-sdk-workflows</artifactId> |
| 63 | + <version>${dapr.sdk.alpha.version}</version> |
| 64 | + </dependency> |
| 65 | + <dependency> |
| 66 | + <groupId>io.dapr.spring</groupId> |
| 67 | + <artifactId>dapr-spring-data</artifactId> |
| 68 | + <version>${dapr.spring.version}</version> |
| 69 | + </dependency> |
| 70 | + <dependency> |
| 71 | + <groupId>io.dapr.spring</groupId> |
| 72 | + <artifactId>dapr-spring-messaging</artifactId> |
| 73 | + <version>${dapr.spring.version}</version> |
| 74 | + </dependency> |
| 75 | + <dependency> |
| 76 | + <groupId>io.dapr.spring</groupId> |
| 77 | + <artifactId>dapr-spring-workflows</artifactId> |
| 78 | + <version>${dapr.spring.version}</version> |
| 79 | + </dependency> |
| 80 | + <dependency> |
| 81 | + <groupId>io.dapr.spring</groupId> |
| 82 | + <artifactId>dapr-spring-boot-autoconfigure</artifactId> |
| 83 | + <version>${dapr.spring.version}</version> |
| 84 | + </dependency> |
| 85 | + <dependency> |
| 86 | + <groupId>io.dapr</groupId> |
| 87 | + <artifactId>dapr-sdk-springboot</artifactId> |
| 88 | + <version>${dapr.sdk.version}</version> |
| 89 | + </dependency> |
| 90 | + <dependency> |
| 91 | + <groupId>org.springframework</groupId> |
| 92 | + <artifactId>spring-context</artifactId> |
| 93 | + <version>${springframework.version}</version> |
| 94 | + </dependency> |
| 95 | + <dependency> |
| 96 | + <groupId>org.springframework</groupId> |
| 97 | + <artifactId>spring-beans</artifactId> |
| 98 | + <version>${springframework.version}</version> |
| 99 | + </dependency> |
| 100 | + |
| 101 | + <!-- Spring dependencies --> |
| 102 | + <dependency> |
| 103 | + <groupId>org.springframework</groupId> |
| 104 | + <artifactId>spring-web</artifactId> |
| 105 | + <version>${springframework.version}</version> |
| 106 | + </dependency> |
| 107 | + <dependency> |
| 108 | + <groupId>org.springframework.boot</groupId> |
| 109 | + <artifactId>spring-boot-configuration-processor</artifactId> |
| 110 | + <version>${springboot.version}</version> |
| 111 | + </dependency> |
| 112 | + <dependency> |
| 113 | + <groupId>org.springframework.boot</groupId> |
| 114 | + <artifactId>spring-boot-starter</artifactId> |
| 115 | + <version>${springboot.version}</version> |
| 116 | + </dependency> |
| 117 | + <dependency> |
| 118 | + <groupId>org.springframework.boot</groupId> |
| 119 | + <artifactId>spring-boot-autoconfigure-processor</artifactId> |
| 120 | + <version>${springboot.version}</version> |
| 121 | + </dependency> |
| 122 | + <dependency> |
| 123 | + <groupId>io.dapr.spring</groupId> |
| 124 | + <artifactId>dapr-spring-boot-tests</artifactId> |
| 125 | + <version>${dapr.spring.version}</version> |
| 126 | + </dependency> |
| 127 | + |
| 128 | + <!-- Test dependencies --> |
49 | 129 | <dependency>
|
50 | 130 | <groupId>org.junit.jupiter</groupId>
|
51 | 131 | <artifactId>junit-jupiter-api</artifactId>
|
52 | 132 | <version>${junit.version}</version>
|
| 133 | + <scope>test</scope> |
| 134 | + </dependency> |
| 135 | + <dependency> |
| 136 | + <groupId>org.springframework.boot</groupId> |
| 137 | + <artifactId>spring-boot-starter-test</artifactId> |
| 138 | + <version>${springboot.version}</version> |
| 139 | + <scope>test</scope> |
53 | 140 | </dependency>
|
54 | 141 | <dependency>
|
55 | 142 | <groupId>org.junit.jupiter</groupId>
|
56 | 143 | <artifactId>junit-jupiter-params</artifactId>
|
57 | 144 | <version>${junit.version}</version>
|
| 145 | + <scope>test</scope> |
58 | 146 | </dependency>
|
59 | 147 | <dependency>
|
60 | 148 | <groupId>org.junit.jupiter</groupId>
|
61 | 149 | <artifactId>junit-jupiter-engine</artifactId>
|
62 | 150 | <version>${junit.version}</version>
|
| 151 | + <scope>test</scope> |
63 | 152 | </dependency>
|
64 | 153 | <dependency>
|
65 | 154 | <groupId>org.junit.jupiter</groupId>
|
66 | 155 | <artifactId>junit-jupiter</artifactId>
|
67 | 156 | <version>${junit.version}</version>
|
| 157 | + <scope>test</scope> |
68 | 158 | </dependency>
|
69 | 159 | <dependency>
|
70 | 160 | <groupId>org.testcontainers</groupId>
|
71 | 161 | <artifactId>junit-jupiter</artifactId>
|
72 | 162 | <version>${testcontainers.version}</version>
|
| 163 | + <scope>test</scope> |
73 | 164 | </dependency>
|
74 | 165 | <dependency>
|
75 | 166 | <groupId>ch.qos.logback</groupId>
|
|
79 | 170 | </dependencies>
|
80 | 171 | </dependencyManagement>
|
81 | 172 |
|
82 |
| - <dependencies> |
83 |
| - <!-- Dapr dependencies --> |
84 |
| - <dependency> |
85 |
| - <groupId>io.dapr</groupId> |
86 |
| - <artifactId>dapr-sdk</artifactId> |
87 |
| - <version>${dapr.sdk.version}</version> |
88 |
| - </dependency> |
89 |
| - <dependency> |
90 |
| - <groupId>io.dapr</groupId> |
91 |
| - <artifactId>dapr-sdk-actors</artifactId> |
92 |
| - <version>${dapr.sdk.version}</version> |
93 |
| - </dependency> |
94 |
| - |
95 |
| - <!-- Spring dependencies --> |
96 |
| - <dependency> |
97 |
| - <groupId>org.springframework</groupId> |
98 |
| - <artifactId>spring-web</artifactId> |
99 |
| - <optional>true</optional> |
100 |
| - </dependency> |
101 |
| - <dependency> |
102 |
| - <groupId>org.springframework</groupId> |
103 |
| - <artifactId>spring-context</artifactId> |
104 |
| - <optional>true</optional> |
105 |
| - </dependency> |
106 |
| - <dependency> |
107 |
| - <groupId>org.springframework.boot</groupId> |
108 |
| - <artifactId>spring-boot-configuration-processor</artifactId> |
109 |
| - <version>${springboot.version}</version> |
110 |
| - <optional>true</optional> |
111 |
| - </dependency> |
112 |
| - |
113 |
| - <!-- Test dependencies --> |
114 |
| - <dependency> |
115 |
| - <groupId>org.springframework.boot</groupId> |
116 |
| - <artifactId>spring-boot-starter-test</artifactId> |
117 |
| - <version>${springboot.version}</version> |
118 |
| - <scope>test</scope> |
119 |
| - </dependency> |
120 |
| - </dependencies> |
121 |
| - |
122 | 173 | <build>
|
123 | 174 | <plugins>
|
124 | 175 | <plugin>
|
|
0 commit comments