farao-crac-creator-cim
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.farao-community.farao</groupId> <artifactId>farao-crac-creator-cim</artifactId> <version>5.0.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright (c) 2022, RTE (http://www.rte-france.com) ~ This Source Code Form is subject to the terms of the Mozilla Public ~ License, v. 2.0. If a copy of the MPL was not distributed with this ~ file, You can obtain one at http://mozilla.org/MPL/2.0/. --> <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"> <parent> <artifactId>farao-crac-creation</artifactId> <groupId>com.farao-community.farao</groupId> <version>5.0.0</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>farao-crac-creator-cim</artifactId> <name>CRAC creator - SWE zone</name> <description>CRAC creator implementation for CRAC specific to SWE zone format</description> <packaging>jar</packaging> <build> <plugins> <plugin> <groupId>org.jvnet.jaxb2.maven2</groupId> <artifactId>maven-jaxb2-plugin</artifactId> <configuration> <args> <arg>-Xinheritance</arg> </args> <plugins> <plugin> <groupId>org.jvnet.jaxb2_commons</groupId> <artifactId>jaxb2-basics</artifactId> <version>${maven.jvnet.jaxb2-basics.version}</version> </plugin> </plugins> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <excludePackageNames> com.farao_community.farao.data.crac_creation.creator.cim.xsd.*:com.farao_community.farao.data.crac_creation.creator.cim.xsd:eu.entsoe.* </excludePackageNames> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>farao-crac-creator-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>farao-crac-creation-util</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>farao-crac-util</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>javax.xml.bind</groupId> <artifactId>jaxb-api</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> <version>4.1</version> <scope>compile</scope> </dependency> <!-- Runtime dependencies --> <dependency> <groupId>${project.groupId}</groupId> <artifactId>farao-crac-impl</artifactId> <version>${project.version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.glassfish.jaxb</groupId> <artifactId>jaxb-runtime</artifactId> <scope>runtime</scope> </dependency> <!-- Test dependencies --> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.powsybl</groupId> <artifactId>powsybl-config-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.powsybl</groupId> <artifactId>powsybl-cgmes-conversion</artifactId> <version>${powsybl.core.version}</version> </dependency> <dependency> <groupId>com.powsybl</groupId> <artifactId>powsybl-iidm-impl</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>com.powsybl</groupId> <artifactId>powsybl-triple-store-impl-rdf4j</artifactId> <version>${powsybl.core.version}</version> <scope>runtime</scope> </dependency> <dependency> <groupId>com.powsybl</groupId> <artifactId>powsybl-ucte-converter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-inline</artifactId> <scope>test</scope> </dependency> </dependencies> </project>