Skip to content

Commit

Permalink
feat(#26): set maven compiler source and target to java 11
Browse files Browse the repository at this point in the history
  • Loading branch information
volodya-lombrozo committed Aug 17, 2023
1 parent 8a81c5e commit 08a22e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ SOFTWARE.
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>16</maven.compiler.source>
<maven.compiler.target>16</maven.compiler.target>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<skipITs/>
</properties>
<dependencies>
Expand Down

3 comments on commit 08a22e3

@0pdd
Copy link

@0pdd 0pdd commented on 08a22e3 Aug 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 13-f243b827 disappeared from src/main/java/org/eolang/jeo/BytecodeIR.java), that's why I closed #26. Please, remember that the puzzle was not necessarily removed in this particular commit. Maybe it happened earlier, but we discovered this fact only now.

@0pdd
Copy link

@0pdd 0pdd commented on 08a22e3 Aug 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 26-d69b9f82 discovered in pom.xml) and submitted as #30. Please, remember that the puzzle was not necessarily added in this particular commit. Maybe it was added earlier, but we discovered it only now.

@0pdd
Copy link

@0pdd 0pdd commented on 08a22e3 Aug 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 26-78d4854d discovered in src/main/java/org/eolang/jeo/BytecodeIr.java) and submitted as #31. Please, remember that the puzzle was not necessarily added in this particular commit. Maybe it was added earlier, but we discovered it only now.

Please sign in to comment.