|
17 | 17 | <grpc.version>1.59.0</grpc.version>
|
18 | 18 | <protobuf.version>3.17.3</protobuf.version>
|
19 | 19 | <dapr.proto.baseurl>https://raw.githubusercontent.com/dapr/dapr/v1.13.0-rc.5/dapr/proto</dapr.proto.baseurl>
|
20 |
| - <dapr.sdk-workflows.version>0.12.0-SNAPSHOT</dapr.sdk-workflows.version> |
| 20 | + <dapr.sdk.alpha.version>0.12.0-SNAPSHOT</dapr.sdk.alpha.version> |
21 | 21 | <os-maven-plugin.version>1.6.2</os-maven-plugin.version>
|
22 | 22 | <maven-dependency-plugin.version>3.1.1</maven-dependency-plugin.version>
|
23 | 23 | <maven-antrun-plugin.version>1.8</maven-antrun-plugin.version>
|
24 | 24 | <maven-deploy-plugin.version>2.7</maven-deploy-plugin.version>
|
| 25 | + <maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version> |
25 | 26 | <maven.compiler.source>11</maven.compiler.source>
|
26 | 27 | <maven.compiler.target>11</maven.compiler.target>
|
| 28 | + <maven.compiler.release>11</maven.compiler.release> |
27 | 29 | <maven.deploy.skip>true</maven.deploy.skip>
|
28 | 30 | <!--
|
29 | 31 | manually declare durabletask-client's jackson dependencies for workflows sdk
|
|
38 | 40 | <failsafe.version>3.2.2</failsafe.version>
|
39 | 41 | <surefire.version>3.2.2</surefire.version>
|
40 | 42 | <junit-bom.version>5.8.2</junit-bom.version>
|
| 43 | + <snakeyaml.version>2.0</snakeyaml.version> |
| 44 | + <testcontainers.version>1.20.0</testcontainers.version> |
41 | 45 | </properties>
|
42 | 46 |
|
43 | 47 | <distributionManagement>
|
|
112 | 116 | <build>
|
113 | 117 | <pluginManagement>
|
114 | 118 | <plugins>
|
| 119 | + <plugin> |
| 120 | + <groupId>org.apache.maven.plugins</groupId> |
| 121 | + <artifactId>maven-compiler-plugin</artifactId> |
| 122 | + <version>${maven-compiler-plugin.version}</version> |
| 123 | + <configuration> |
| 124 | + <source>${maven.compiler.source}</source> |
| 125 | + <target>${maven.compiler.target}</target> |
| 126 | + <release>${maven.compiler.release}</release> |
| 127 | + </configuration> |
| 128 | + </plugin> |
115 | 129 | <plugin>
|
116 | 130 | <groupId>org.apache.maven.plugins</groupId>
|
117 | 131 | <artifactId>maven-surefire-plugin</artifactId>
|
|
150 | 164 | </execution>
|
151 | 165 | </executions>
|
152 | 166 | </plugin>
|
153 |
| - <plugin> |
154 |
| - <groupId>org.codehaus.mojo</groupId> |
155 |
| - <artifactId>animal-sniffer-maven-plugin</artifactId> |
156 |
| - <version>1.23</version> |
157 |
| - <configuration> |
158 |
| - <signature> |
159 |
| - <groupId>org.codehaus.mojo.signature</groupId> |
160 |
| - <artifactId>java18</artifactId> |
161 |
| - <version>1.0</version> |
162 |
| - </signature> |
163 |
| - <skip>false</skip> |
164 |
| - </configuration> |
165 |
| - <executions> |
166 |
| - <execution> |
167 |
| - <id>enforce-java-8-compatibility</id> |
168 |
| - <phase>process-classes</phase> |
169 |
| - <goals> |
170 |
| - <goal>check</goal> |
171 |
| - </goals> |
172 |
| - </execution> |
173 |
| - </executions> |
174 |
| - </plugin> |
175 | 167 | <plugin>
|
176 | 168 | <groupId>org.apache.maven.plugins</groupId>
|
177 | 169 | <artifactId>maven-gpg-plugin</artifactId>
|
|
330 | 322 | <module>sdk-workflows</module>
|
331 | 323 | <module>sdk-springboot</module>
|
332 | 324 | <module>examples</module>
|
| 325 | + <!-- We are following test containers artifact convention on purpose, don't rename --> |
| 326 | + <module>testcontainers-dapr</module> |
333 | 327 | <!-- don't add sdk-tests to the build,
|
334 | 328 | it's only used for CI testing by github action
|
335 | 329 | <module>sdk-tests</module>
|
|
0 commit comments