Skip to content

Commit 42bb362

Browse files
authored
Rename spreadsheet-config-server into study-config-server (#16)
Signed-off-by: David BRAQUART <[email protected]>
1 parent 77373ba commit 42bb362

39 files changed

+123
-123
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
uses: powsybl/github-ci/.github/workflows/build-generic.yml@07ff8aa16a298b7d735d50883f6f723d84d87a55
1212
with:
1313
sonarOrganization: gridsuite
14-
sonarProjectKey: org.gridsuite:spreadsheet-config-server
15-
dockerImage: docker.io/gridsuite/spreadsheet-config-server
14+
sonarProjectKey: org.gridsuite:study-config-server
15+
dockerImage: docker.io/gridsuite/study-config-server
1616
dockerUsername: gridsuiteci
17-
eventType: spreadsheet_config_server_updated
17+
eventType: study_config_server_updated
1818
secrets:
1919
sonar-token: ${{ secrets.SONAR_TOKEN }}
2020
docker-token: ${{ secrets.DOCKERHUB_TOKEN }}

.github/workflows/patch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
with:
1414
githubappId: ${{ vars.GRIDSUITE_ACTIONS_APPID }}
1515
sonarOrganization: gridsuite
16-
sonarProjectKey: org.gridsuite:spreadsheet-config-server
17-
dockerImage: docker.io/gridsuite/spreadsheet-config-server
16+
sonarProjectKey: org.gridsuite:study-config-server
17+
dockerImage: docker.io/gridsuite/study-config-server
1818
dockerUsername: gridsuiteci
1919
releaseVersion: ${{ github.event.inputs.releaseVersion }}
2020
secrets:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
with:
1717
githubappId: ${{ vars.GRIDSUITE_ACTIONS_APPID }}
1818
sonarOrganization: gridsuite
19-
sonarProjectKey: org.gridsuite:spreadsheet-config-server
20-
dockerImage: docker.io/gridsuite/spreadsheet-config-server
19+
sonarProjectKey: org.gridsuite:study-config-server
20+
dockerImage: docker.io/gridsuite/study-config-server
2121
dockerUsername: gridsuiteci
2222
releaseVersion: ${{ github.event.inputs.releaseVersion }}
2323
gitReference: ${{ github.event.inputs.gitReference }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# spreadsheet-config-server
1+
# study-config-server

pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@
1818
</parent>
1919

2020
<groupId>org.gridsuite</groupId>
21-
<artifactId>gridsuite-spreadsheet-config-server</artifactId>
21+
<artifactId>gridsuite-study-config-server</artifactId>
2222
<version>2.11.0-SNAPSHOT</version>
2323

2424
<packaging>jar</packaging>
25-
<name>Spreadsheet config server</name>
26-
<description>Spreadsheet config server</description>
25+
<name>Study config server</name>
26+
<description>Study config server</description>
2727
<url>http://www.gridsuite.org/</url>
2828

2929
<scm>
30-
<connection>scm:git:https://github.com/gridsuite/spreadsheet-config-server.git</connection>
31-
<developerConnection>scm:git:https://github.com/gridsuite/spreadsheet-config-server.git</developerConnection>
32-
<url>https://github.com/gridsuite/spreadsheet-config-server</url>
30+
<connection>scm:git:https://github.com/gridsuite/study-config-server.git</connection>
31+
<developerConnection>scm:git:https://github.com/gridsuite/study-config-server.git</developerConnection>
32+
<url>https://github.com/gridsuite/study-config-server</url>
3333
</scm>
3434

3535
<developers>
@@ -43,7 +43,7 @@
4343

4444
<properties>
4545
<gridsuite-dependencies.version>35</gridsuite-dependencies.version>
46-
<liquibase-hibernate-package>org.gridsuite.spreadsheetconfig.server</liquibase-hibernate-package>
46+
<liquibase-hibernate-package>org.gridsuite.studyconfig.server</liquibase-hibernate-package>
4747
</properties>
4848

4949
<build>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* License, v. 2.0. If a copy of the MPL was not distributed with this
55
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
66
*/
7-
package org.gridsuite.spreadsheetconfig.server;
7+
package org.gridsuite.studyconfig.server;
88

99
import jakarta.persistence.EntityNotFoundException;
1010
import org.springframework.http.HttpStatus;

src/main/java/org/gridsuite/spreadsheetconfig/server/RestTemplateConfig.java renamed to src/main/java/org/gridsuite/studyconfig/server/RestTemplateConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* License, v. 2.0. If a copy of the MPL was not distributed with this
55
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
66
*/
7-
package org.gridsuite.spreadsheetconfig.server;
7+
package org.gridsuite.studyconfig.server;
88

99
import org.springframework.boot.web.client.RestTemplateBuilder;
1010
import org.springframework.context.annotation.Bean;
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
* License, v. 2.0. If a copy of the MPL was not distributed with this
55
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
66
*/
7-
package org.gridsuite.spreadsheetconfig.server;
7+
package org.gridsuite.studyconfig.server;
88

99
/**
1010
* @author Achour BERRAHMA <achour.berrahma at rte-france.com>
1111
*/
12-
public final class SpreadsheetConfigApi {
12+
public final class StudyConfigApi {
1313

14-
private SpreadsheetConfigApi() {
14+
private StudyConfigApi() {
1515
}
1616

1717
public static final String API_VERSION = "v1";
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* License, v. 2.0. If a copy of the MPL was not distributed with this
55
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
66
*/
7-
package org.gridsuite.spreadsheetconfig.server;
7+
package org.gridsuite.studyconfig.server;
88

99
import org.springframework.boot.SpringApplication;
1010
import org.springframework.boot.autoconfigure.SpringBootApplication;
@@ -14,9 +14,9 @@
1414
*/
1515
@SuppressWarnings("checkstyle:HideUtilityClassConstructor")
1616
@SpringBootApplication
17-
public class SpreadsheetConfigApplication {
17+
public class StudyConfigApplication {
1818

1919
public static void main(String[] args) {
20-
SpringApplication.run(SpreadsheetConfigApplication.class, args);
20+
SpringApplication.run(StudyConfigApplication.class, args);
2121
}
2222
}

src/main/java/org/gridsuite/spreadsheetconfig/server/SwaggerConfig.java renamed to src/main/java/org/gridsuite/studyconfig/server/SwaggerConfig.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* License, v. 2.0. If a copy of the MPL was not distributed with this
55
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
66
*/
7-
package org.gridsuite.spreadsheetconfig.server;
7+
package org.gridsuite.studyconfig.server;
88

99
import io.swagger.v3.oas.models.OpenAPI;
1010
import io.swagger.v3.oas.models.info.Info;
@@ -21,8 +21,8 @@ public class SwaggerConfig {
2121
public OpenAPI openAPI() {
2222
return new OpenAPI()
2323
.info(new Info()
24-
.title("Spreadsheet Config API")
25-
.description("This is the documentation of the spreadsheet config REST API")
26-
.version(SpreadsheetConfigApi.API_VERSION));
24+
.title("Study Config API")
25+
.description("This is the documentation of the study config REST API")
26+
.version(StudyConfigApi.API_VERSION));
2727
}
2828
}

0 commit comments

Comments
 (0)