Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,15 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 11, 13, 15, 16 ]
env:
GOVER: 1.15.0
GOOS: linux
GOARCH: amd64
GOPROXY: https://proxy.golang.org
JDK_VER: 13.0.x
JDK_VER: ${{ matrix.java }}
DAPR_CLI_VER: 1.3.0-rc.1
DAPR_RUNTIME_VER: 1.3.0-rc.1
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/v1.3.0-rc.1/install/install.sh
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,15 @@ on:
jobs:
validate:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 11, 13, 15, 16 ]
env:
GOVER: 1.15.0
GOOS: linux
GOARCH: amd64
GOPROXY: https://proxy.golang.org
JDK_VER: 13.0.x
JDK_VER: ${{ matrix.java }}
DAPR_CLI_VER: 1.3.0-rc.1
DAPR_RUNTIME_VER: 1.3.0-rc.1
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/3dacfb672d55f1436c249057aaebbe597e1066f3/install/install.sh
Expand Down
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
<spotbugs.version>4.0.0-RC1</spotbugs.version>
<spotbugs.fail>true</spotbugs.fail>
<springboot.version>2.3.5.RELEASE</springboot.version>
<argLine>--add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED</argLine>
</properties>

<distributionManagement>
Expand Down Expand Up @@ -76,7 +77,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>3.6.0</version>
<version>3.11.2</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
3 changes: 3 additions & 0 deletions sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@
<properties>
<maven.deploy.skip>false</maven.deploy.skip>
<grpc.version>1.39.0</grpc.version>
<argLine>
--add-opens java.base/java.util=ALL-UNNAMED
Comment thread
mthmulders marked this conversation as resolved.
</argLine>
</properties>

<dependencies>
Expand Down