BuckPal -> CashPal
This commit is contained in:
@@ -4,4 +4,4 @@
|
||||
|
||||
This is the companion code to my eBook [Get Your Hands Dirty on Clean Architecture](https://leanpub.com/get-your-hands-dirty-on-clean-architecture).
|
||||
|
||||
It implements a domain-centric "Hexagonal" approach of a common web application with Java and Spring Boot.
|
||||
It implements a domain-centric "Hexagonal" approach of a common web application with Java and Spring Boot.
|
||||
|
||||
@@ -4,10 +4,10 @@ import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class CashpalApplication {
|
||||
public class BuckPalApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(CashpalApplication.class, args);
|
||||
SpringApplication.run(BuckPalApplication.class, args);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -7,7 +7,7 @@ import org.springframework.test.context.junit.jupiter.SpringExtension;
|
||||
|
||||
@ExtendWith(SpringExtension.class)
|
||||
@SpringBootTest
|
||||
class CashpalApplicationTests {
|
||||
class BuckPalApplicationTests {
|
||||
|
||||
@Test
|
||||
void contextLoads() {
|
||||
Reference in New Issue
Block a user