Skip to content

Commit 8b7c064

Browse files
authored
Migrate to PowSyBl dependencies 1.2.0 (#40)
* Migrate to PowSyBl dependencies 1.2.0 * Add commons properties init Signed-off-by: Geoffroy Jamgotchian <[email protected]>
1 parent 8886fac commit 8b7c064

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<properties>
4747
<java.version>11</java.version>
4848

49-
<gridsuite-dependencies.version>17</gridsuite-dependencies.version>
49+
<gridsuite-dependencies.version>18</gridsuite-dependencies.version>
5050
</properties>
5151

5252
<build>

src/main/java/org/gridsuite/notification/server/NotificationApplication.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
*/
77
package org.gridsuite.notification.server;
88

9+
import com.powsybl.ws.commons.Utils;
910
import org.springframework.boot.SpringApplication;
1011
import org.springframework.boot.autoconfigure.SpringBootApplication;
1112

@@ -17,6 +18,7 @@
1718
public class NotificationApplication {
1819

1920
public static void main(String[] args) {
21+
Utils.initProperties();
2022
SpringApplication.run(NotificationApplication.class, args);
2123
}
2224
}

0 commit comments

Comments
 (0)