Skip to content

Commit 5f2c61f

Browse files
authored
Merge branch 'main' into bug_bus_connection_status
2 parents 6b810c8 + fbdff76 commit 5f2c61f

File tree

102 files changed

+2586
-2569
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+2586
-2569
lines changed

diagram-test/pom.xml

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
4+
Copyright (c) 2023, RTE (http://www.rte-france.com)
5+
This Source Code Form is subject to the terms of the Mozilla Public
6+
License, v. 2.0. If a copy of the MPL was not distributed with this
7+
file, You can obtain one at http://mozilla.org/MPL/2.0/.
8+
SPDX-License-Identifier: MPL-2.0
9+
10+
-->
11+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13+
<modelVersion>4.0.0</modelVersion>
14+
15+
<parent>
16+
<groupId>com.powsybl</groupId>
17+
<artifactId>powsybl-diagram</artifactId>
18+
<version>4.0.0-SNAPSHOT</version>
19+
</parent>
20+
21+
<artifactId>powsybl-diagram-test</artifactId>
22+
<name>PowSyBl diagram test</name>
23+
<description>Set of testing classes for PowSyBl Diagram</description>
24+
25+
<build>
26+
<plugins>
27+
<plugin>
28+
<groupId>org.codehaus.mojo</groupId>
29+
<artifactId>templating-maven-plugin</artifactId>
30+
</plugin>
31+
<plugin>
32+
<groupId>org.codehaus.mojo</groupId>
33+
<artifactId>buildnumber-maven-plugin</artifactId>
34+
</plugin>
35+
</plugins>
36+
</build>
37+
38+
<dependencies>
39+
<!-- compilation dependencies -->
40+
<dependency>
41+
<groupId>com.powsybl</groupId>
42+
<artifactId>powsybl-iidm-api</artifactId>
43+
</dependency>
44+
<dependency>
45+
<groupId>com.powsybl</groupId>
46+
<artifactId>powsybl-commons</artifactId>
47+
</dependency>
48+
<dependency>
49+
<groupId>com.powsybl</groupId>
50+
<artifactId>powsybl-iidm-extensions</artifactId>
51+
<version>5.2.0</version>
52+
<scope>compile</scope>
53+
</dependency>
54+
</dependencies>
55+
</project>

0 commit comments

Comments
 (0)