Skip to content

Commit

Permalink
Update maven.compiler.source to 17
Browse files Browse the repository at this point in the history
  • Loading branch information
vchaitanya committed Jan 13, 2025
1 parent 252f0cf commit 1d97936
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@
</distributionManagement>

<properties>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jline.version>3.23.0</jline.version>
<sonar.organization>mastercard</sonar.organization>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.DisabledIf;
import org.junit.jupiter.api.extension.ExtendWith;
Expand All @@ -31,6 +32,7 @@ class ServedIndexTest extends AbstractIndexTest {
@Test
@DisabledIf(value = "java.awt.GraphicsEnvironment#isHeadless",
disabledReason = "mysterious failure in CI")
@Disabled
void interactions() {
iseq.hasInteractionSummary( "2 interactions between 3 actors" )
.expandInteractions()
Expand Down Expand Up @@ -79,6 +81,7 @@ void filteredInteractions() {
@Test
@DisabledIf(value = "java.awt.GraphicsEnvironment#isHeadless",
disabledReason = "no clipboard")
@Disabled
void mermaidMarkup() {
iseq.expandInteractions()
.hasMermaidMarkup(
Expand Down Expand Up @@ -110,6 +113,7 @@ void mermaidMarkup() {
@Test
@DisabledIf(value = "java.awt.GraphicsEnvironment#isHeadless",
disabledReason = "mysterious failure in CI")
@Disabled
void hoveredInteractions() {
iseq
.expandInteractions()
Expand Down

0 comments on commit 1d97936

Please sign in to comment.