Skip to content

Commit 69c1b75

Browse files
committedNov 9, 2023
[fix]: root project name - delimo로 변경
1 parent fa5a070 commit 69c1b75

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎settings.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
rootProject.name = 'security1'
1+
rootProject.name = 'delimo'

‎src/main/java/com/cos/delimo/Security1Application.java ‎src/main/java/com/cos/delimo/DelimoApplication.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010

1111
@EnableScheduling
1212
@SpringBootApplication(exclude = {SecurityAutoConfiguration.class})
13-
public class Security1Application {
13+
public class DelimoApplication {
1414

1515
@PostConstruct
1616
void started() {
1717
TimeZone.setDefault(TimeZone.getTimeZone("Asia/Seoul"));
1818
}
1919

2020
public static void main(String[] args) {
21-
SpringApplication.run(Security1Application.class, args);
21+
SpringApplication.run(DelimoApplication.class, args);
2222
}
2323

2424
}

0 commit comments

Comments
 (0)