Skip to content

Commit 6e5611d

Browse files
committed
✨ rename backend, adjust README.md and delete unused folders
1 parent 351712e commit 6e5611d

File tree

144 files changed

+102
-16590
lines changed

Some content is hidden

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

144 files changed

+102
-16590
lines changed

.github/README.md

Lines changed: 23 additions & 18 deletions
File renamed without changes.

refarch-backend/pom.xml renamed to personalization-service/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
<relativePath/>
1010
</parent>
1111

12-
<groupId>de.muenchen.refarch</groupId>
13-
<artifactId>refarch-backend</artifactId>
12+
<groupId>de.muenchen.dbs.personalization</groupId>
13+
<artifactId>personalization-service</artifactId>
1414
<version>0.0.1-SNAPSHOT</version>
15-
<name>refarch_backend</name>
16-
<description>This is the default starting project for a backend project based on the reference architecture of it@M</description>
17-
<url>https://github.com/it-at-m/refarch-templates</url>
15+
<name>personalization_service</name>
16+
<description>Personalization service for the digital citizen service of the City of Munich</description>
17+
<url>https://github.com/it-at-m/dbs</url>
1818

1919
<properties>
2020
<!-- Compilation -->
@@ -237,8 +237,8 @@
237237
</dependencies>
238238

239239
<scm>
240-
<connection>scm:git:https://github.com/it-at-m/refarch-templates.git</connection>
241-
<developerConnection>scm:git:https://github.com/it-at-m/refarch-templates.git</developerConnection>
240+
<connection>scm:git:https://github.com/it-at-m/dbs.git</connection>
241+
<developerConnection>scm:git:https://github.com/it-at-m/dbs.git</developerConnection>
242242
<tag>HEAD</tag>
243243
</scm>
244244

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

refarch-backend/src/main/java/de/muenchen/refarch/MicroServiceApplication.java renamed to personalization-service/src/main/java/de/muenchen/dbs/personalization/PersonalizationServiceApplication.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package de.muenchen.refarch;
1+
package de.muenchen.dbs.personalization;
22

33
import org.springframework.boot.SpringApplication;
44
import org.springframework.boot.autoconfigure.SpringBootApplication;
@@ -10,8 +10,8 @@
1010
@SpringBootApplication
1111
@ConfigurationPropertiesScan
1212
@SuppressWarnings("PMD.UseUtilityClass")
13-
public class MicroServiceApplication {
13+
public class PersonalizationServiceApplication {
1414
public static void main(final String[] args) {
15-
SpringApplication.run(MicroServiceApplication.class, args);
15+
SpringApplication.run(PersonalizationServiceApplication.class, args);
1616
}
1717
}

refarch-backend/src/main/java/de/muenchen/refarch/common/BaseEntity.java renamed to personalization-service/src/main/java/de/muenchen/dbs/personalization/common/BaseEntity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package de.muenchen.refarch.common;
1+
package de.muenchen.dbs.personalization.common;
22

33
import jakarta.persistence.Column;
44
import jakarta.persistence.GeneratedValue;

0 commit comments

Comments
 (0)