Skip to content

Commit

Permalink
fix regex
Browse files Browse the repository at this point in the history
  • Loading branch information
AlvaroVega committed Sep 13, 2023
1 parent bee00f8 commit ce13299
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ jobs:
- 13
- 14
- 15
# - 16
# - 17
- 16
- 17
steps:
- name: Git checkout
uses: actions/checkout@v2
Expand Down
3 changes: 3 additions & 0 deletions cygnus-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,9 @@
<version>3.0.0</version>
<configuration>
<skipTests>true</skipTests>
<argLine>
--add-opens=java.base/java.lang.invoke=ALL-UNNAMED
</argLine>
</configuration>
</plugin>
<!-- Explicit Java version declaration in needed in some systems in which Maven seems not -->
Expand Down
5 changes: 4 additions & 1 deletion cygnus-ngsi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,10 @@
<artifactId>maven-surefire-report-plugin</artifactId>
<version>3.0.0</version>
<configuration>
<aggregate>true</aggregate>
<aggregate>true</aggregate>
<argLine>
--add-opens=java.base/java.lang.invoke=ALL-UNNAMED
</argLine>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit ce13299

Please sign in to comment.