Skip to content

Commit

Permalink
Springboot 3.3.3 migration (#132)
Browse files Browse the repository at this point in the history
Signed-off-by: Seddik Yengui <seddik.yengui@rte-france.com>
  • Loading branch information
YenguiSeddik authored Sep 18, 2024
1 parent 832d4bc commit d782730
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<parent>
<groupId>com.powsybl</groupId>
<artifactId>powsybl-parent-ws</artifactId>
<version>19</version>
<version>20</version>
<relativePath/>
</parent>

Expand Down Expand Up @@ -44,7 +44,7 @@
<properties>
<jib.from.image>powsybl/java-dynawo:2.1.0</jib.from.image>
<liquibase-hibernate-package>org.gridsuite.loadflow.server</liquibase-hibernate-package>
<gridsuite-dependencies.version>32</gridsuite-dependencies.version>
<gridsuite-dependencies.version>33</gridsuite-dependencies.version>
<!--
antlr4 from openloadflow conflicts ? Only on repository.count() method in this project..
[ERROR] org.gridsuite.loadflow.server.SupervisionControllerTest.testResultCount <<< ERROR!
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public class LimitReductionsByVoltageLevel {
@Setter
@Getter
@NoArgsConstructor
@EqualsAndHashCode
public static class LimitDuration {
private Integer lowBound;
private boolean lowClosed;
Expand All @@ -32,6 +33,7 @@ public static class LimitDuration {
@Setter
@Getter
@NoArgsConstructor
@EqualsAndHashCode
public static class VoltageLevel {
private double nominalV;
private double lowBound;
Expand All @@ -43,6 +45,7 @@ public static class VoltageLevel {
@Getter
@NoArgsConstructor
@AllArgsConstructor
@EqualsAndHashCode
public static class LimitReduction {
double reduction;
LimitDuration limitDuration;
Expand Down

0 comments on commit d782730

Please sign in to comment.