Skip to content

Commit

Permalink
refactor: rename project name
Browse files Browse the repository at this point in the history
  • Loading branch information
oereo committed Mar 19, 2023
1 parent e13aaf0 commit 1e28e37
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1 @@
rootProject.name = 'ourBoard'
rootProject.name = 'ourboard'
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class JamBoardApplication {
public class OurBoardApplication {

public static void main(String[] args) {
SpringApplication.run(JamBoardApplication.class, args);
SpringApplication.run(OurBoardApplication.class, args);
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import org.springframework.boot.test.context.SpringBootTest;

@SpringBootTest
class JamBoardApplicationTests {
class OurBoardApplicationTests {

@Test
void contextLoads() {
Expand Down

0 comments on commit 1e28e37

Please sign in to comment.