-
Notifications
You must be signed in to change notification settings - Fork 0
First implementation for gridsuite-computation lib #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
README.md
Outdated
[](https://sonarcloud.io/component_measures?id=org.gridsuite%computation&metric=coverage) | ||
[](https://www.mozilla.org/en-US/MPL/2.0/) | ||
|
||
Shared library for common computation and filter classes. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shared library for common computation and filter classes. | |
Common library for computation and result filtering. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
or just Library for computation and result filtering ( I mean without Common ) ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
but it is okey for Common
done
pom.xml
Outdated
|
||
<packaging>jar</packaging> | ||
<name>Computation library</name> | ||
<description>A shared library for common computation and filter classes</description> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<description>A shared library for common computation and filter classes</description> | |
<description>Common library for computation and result filtering.</description> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
okey
pom.xml
Outdated
<spring-boot.version>3.3.3</spring-boot.version> | ||
<spring-cloud.version>2023.0.1</spring-cloud.version> | ||
|
||
<powsybl-dependencies.version>2025.0.2</powsybl-dependencies.version> | ||
<powsybl-network-store-client.version>1.27.2</powsybl-network-store-client.version> | ||
|
||
<lombok.version>1.18.34</lombok.version> | ||
<org-apache-commons.version>4.4</org-apache-commons.version> | ||
<org.hamcrest.version>2.2</org.hamcrest.version> | ||
|
||
<gridsuite-filter.version>1.4.0</gridsuite-filter.version> | ||
|
||
<sonar.organization>gridsuite</sonar.organization> | ||
<sonar.projectKey>org.gridsuite:computation</sonar.projectKey> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<spring-boot.version>3.3.3</spring-boot.version> | |
<spring-cloud.version>2023.0.1</spring-cloud.version> | |
<powsybl-dependencies.version>2025.0.2</powsybl-dependencies.version> | |
<powsybl-network-store-client.version>1.27.2</powsybl-network-store-client.version> | |
<lombok.version>1.18.34</lombok.version> | |
<org-apache-commons.version>4.4</org-apache-commons.version> | |
<org.hamcrest.version>2.2</org.hamcrest.version> | |
<gridsuite-filter.version>1.4.0</gridsuite-filter.version> | |
<sonar.organization>gridsuite</sonar.organization> | |
<sonar.projectKey>org.gridsuite:computation</sonar.projectKey> | |
<powsybl-ws-dependencies.version>2.22.0</powsybl-ws-dependencies.version> | |
<powsybl-network-store.version>1.28.0</powsybl-network-store.version> | |
<gridsuite-filter.version>1.5.0</gridsuite-filter.version> | |
<spring-boot.version>3.3.3</spring-boot.version> | |
<spring-cloud.version>2023.0.1</spring-cloud.version> | |
<lombok.version>1.18.34</lombok.version> | |
<org-apache-commons.version>4.4</org-apache-commons.version> | |
<org.hamcrest.version>2.2</org.hamcrest.version> | |
<sonar.organization>gridsuite</sonar.organization> | |
<sonar.projectKey>org.gridsuite:computation</sonar.projectKey> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<powsybl-network-store-client.version>1.28.0</powsybl-network-store-client.version> and not <powsybl-network-store.version>1.28.0</powsybl-network-store.version>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In my opinion, powsybl-network-store-client always matches the powsybl-network-store.version. Therefore, when overriding the client, it's more appropriate to use powsybl-network-store.version
However, it should include a TODO: To be removed comment for the next powsybl-ws-dependencies migration.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
powsybl-network-store-client always matches the powsybl-network-store.version
have you checked sonar issues ? |
@EtienneLt #1 (comment) |
As it is minor changes, it is ok to fix them in this PR. But it's also a good thing to keep the code the same when we move a lot of code as you do here. So up to you |
pom.xml
Outdated
<dependency> | ||
<groupId>com.powsybl</groupId> | ||
<artifactId>powsybl-network-store-client</artifactId> | ||
<version>${powsybl-network-store-client.version}</version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<version>${powsybl-network-store-client.version}</version> |
we do not need version except override but we use ${powsybl-network-store}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
#1 (comment) |
pom.xml
Outdated
<powsybl-ws-dependencies.version>2.22.0</powsybl-ws-dependencies.version> | ||
<gridsuite-filter.version>1.5.0</gridsuite-filter.version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<powsybl-ws-dependencies.version>2.22.0</powsybl-ws-dependencies.version> | |
<gridsuite-filter.version>1.5.0</gridsuite-filter.version> | |
<powsybl-ws-dependencies.version>2.23.0</powsybl-ws-dependencies.version> | |
<gridsuite-filter.version>1.6.0</gridsuite-filter.version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
|
No description provided.