File tree Expand file tree Collapse file tree 3 files changed +17
-16
lines changed Expand file tree Collapse file tree 3 files changed +17
-16
lines changed Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ jobs:
119
119
run : ./mvnw install -q -B -DskipTests
120
120
- name : Integration tests using spring boot version ${{ matrix.spring-boot-version }}
121
121
id : integration_tests
122
- run : PRODUCT_SPRING_BOOT_VERSION=${{ matrix.spring-boot-version }} ./mvnw -B -f sdk -tests/pom.xml verify
122
+ run : PRODUCT_SPRING_BOOT_VERSION=${{ matrix.spring-boot-version }} ./mvnw -B -Pintegration -tests verify
123
123
- name : Upload test report for sdk
124
124
uses : actions/upload-artifact@v4
125
125
with :
Original file line number Diff line number Diff line change 328
328
<module >examples</module >
329
329
<!-- We are following test containers artifact convention on purpose, don't rename -->
330
330
<module >testcontainers-dapr</module >
331
- <!-- don't add sdk-tests to the build,
332
- it's only used for CI testing by github action
333
- <module>sdk-tests</module>
334
- -->
335
331
</modules >
336
332
333
+ <profiles >
334
+ <profile >
335
+ <id >integration-tests</id >
336
+ <modules >
337
+ <module >sdk-tests</module >
338
+ </modules >
339
+ </profile >
340
+ </profiles >
341
+
337
342
</project >
Original file line number Diff line number Diff line change 4
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
- <groupId >io.dapr</groupId >
7
+ <parent >
8
+ <groupId >io.dapr</groupId >
9
+ <artifactId >dapr-sdk-parent</artifactId >
10
+ <version >1.13.0-SNAPSHOT</version >
11
+ </parent >
12
+
8
13
<artifactId >dapr-sdk-tests</artifactId >
9
- <version >0.0 .0-SNAPSHOT</version >
14
+ <version >1.13 .0-SNAPSHOT</version >
10
15
<name >dapr-sdk-tests</name >
11
16
<description >Tests for Dapr's Java SDK - not to be published as a jar.</description >
12
17
320
325
<properties >
321
326
<springboot .version>${env.PRODUCT_SPRING_BOOT_VERSION} </springboot .version>
322
327
</properties >
323
- <dependencies >
324
- <dependency >
325
- <!-- Needed for dapr compatibility for spring boot versions before 2.7 -->
326
- <groupId >com.squareup.okhttp3</groupId >
327
- <artifactId >okhttp</artifactId >
328
- <version >4.9.0</version >
329
- <scope >test</scope >
330
- </dependency >
331
- </dependencies >
332
328
</profile >
333
329
</profiles >
334
330
</project >
You can’t perform that action at this time.
0 commit comments