forked from farao-community/rao-example
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
104 lines (97 loc) · 4.01 KB
/
pom.xml
File metadata and controls
104 lines (97 loc) · 4.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.farao-community.farao</groupId>
<artifactId>rao-example</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<maven.shade.version>3.6.1</maven.shade.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<powsybl.core.version>7.0.1</powsybl.core.version>
<powsybl.starter.version>2025.2.0</powsybl.starter.version>
<openrao.version>7.0.0</openrao.version>
<logback.version>1.5.21</logback.version>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>${maven.shade.version}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>com.farao_community.farao.rao_example.Main</mainClass>
</transformer>
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<!-- COMPILE DEPENDENCIES -->
<dependency>
<groupId>com.powsybl</groupId>
<artifactId>powsybl-starter</artifactId>
<version>${powsybl.starter.version}</version>
</dependency>
<dependency>
<groupId>com.powsybl</groupId>
<artifactId>open-rao-crac-api</artifactId>
<version>${openrao.version}</version>
</dependency>
<dependency>
<groupId>com.powsybl</groupId>
<artifactId>open-rao-commons</artifactId>
<version>${openrao.version}</version>
</dependency>
<dependency>
<groupId>com.powsybl</groupId>
<artifactId>open-rao-rao-api</artifactId>
<version>${openrao.version}</version>
</dependency>
<dependency>
<groupId>com.powsybl</groupId>
<artifactId>open-rao-rao-result-json</artifactId>
<version>${openrao.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>${logback.version}</version>
</dependency>
<!-- RUNTIME DEPENDENCIES -->
<dependency>
<groupId>com.powsybl</groupId>
<artifactId>powsybl-ucte-converter</artifactId>
<version>${powsybl.core.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.powsybl</groupId>
<artifactId>open-rao-crac-impl</artifactId>
<version>${openrao.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.powsybl</groupId>
<artifactId>open-rao-search-tree-rao</artifactId>
<version>${openrao.version}</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>