Skip to content

Commit

Permalink
Added exclusion for sun.jdk to support java 11
Browse files Browse the repository at this point in the history
  • Loading branch information
stas-panasiuk committed Feb 14, 2024
1 parent c84aaf3 commit ad484f1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
name: Java CI with Maven

on:
# TODO remove after tested
push:
branches: [ "build_and_test_ci" ]
pull_request:
branches: [ "develop" ]

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/build_and_test_future_java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
name: Future compatibility Java CI with Maven

on:
# TODO remove after tested
push:
branches: [ "build_and_test_ci" ]
schedule:
# At 2:30am each Saturday on the default branch
- cron: '30 2 * * 6'
Expand Down
6 changes: 6 additions & 0 deletions flink-cyber/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -535,6 +535,12 @@
<artifactId>multiline-string</artifactId>
<version>${multiline-string.version}</version>
<scope>test</scope>
<exclusions>
<exclusion>
<artifactId>tools</artifactId>
<groupId>sun.jdk</groupId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down

0 comments on commit ad484f1

Please sign in to comment.