updated package name

This commit is contained in:
ajay74984 2020-02-12 16:10:36 +01:00
parent 91da58e880
commit 563b6b7a89
8 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
package com.ajay.documentservice;
package com.baeldung;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

View File

@ -1,4 +1,4 @@
package com.ajay.documentservice.adapter;
package com.baeldung.adapter;
import com.ajay.documentservice.domain.Document;
import com.ajay.documentservice.port.DocumentRepo;

View File

@ -1,4 +1,4 @@
package com.ajay.documentservice.adapter;
package com.baeldung.adapter;
import com.ajay.documentservice.domain.Document;
import com.ajay.documentservice.port.DocumentService;

View File

@ -1,4 +1,4 @@
package com.ajay.documentservice.domain;
package com.baeldung.domain;
import lombok.AllArgsConstructor;
import lombok.Builder;

View File

@ -1,4 +1,4 @@
package com.ajay.documentservice.port;
package com.baeldung.port;
import com.ajay.documentservice.domain.Document;

View File

@ -1,4 +1,4 @@
package com.ajay.documentservice.port;
package com.baeldung.port;
import com.ajay.documentservice.domain.Document;

View File

@ -1,4 +1,4 @@
package com.ajay.documentservice.port.impl;
package com.baeldung.port.impl;
import com.ajay.documentservice.domain.Document;
import com.ajay.documentservice.port.DocumentRepo;

View File

@ -1,4 +1,4 @@
package com.ajay.documentservice.documentservice;
package com.baeldung;
import org.junit.Test;
import org.junit.runner.RunWith;