Andrew Grant 5 mesiacov pred
rodič
commit
a201aaab88
35 zmenil súbory, kde vykonal 67 pridanie a 67 odobranie
  1. 1 1
      src/main/java/scot/carricksoftware/grantswriter/BaseEntity.java
  2. 1 1
      src/main/java/scot/carricksoftware/grantswriter/GrantsWriterApplication.java
  3. 2 2
      src/main/java/scot/carricksoftware/grantswriter/domains/census/Census.java
  4. 2 2
      src/main/java/scot/carricksoftware/grantswriter/domains/census/CensusEntry.java
  5. 2 2
      src/main/java/scot/carricksoftware/grantswriter/domains/certificates/BirthCertificate.java
  6. 2 2
      src/main/java/scot/carricksoftware/grantswriter/domains/certificates/DeathCertificate.java
  7. 2 2
      src/main/java/scot/carricksoftware/grantswriter/domains/certificates/DivorceCertificate.java
  8. 2 2
      src/main/java/scot/carricksoftware/grantswriter/domains/certificates/MarriageCertificate.java
  9. 2 2
      src/main/java/scot/carricksoftware/grantswriter/domains/images/Image.java
  10. 2 2
      src/main/java/scot/carricksoftware/grantswriter/domains/images/PersonImage.java
  11. 2 2
      src/main/java/scot/carricksoftware/grantswriter/domains/images/PlaceImage.java
  12. 2 2
      src/main/java/scot/carricksoftware/grantswriter/domains/people/Person.java
  13. 2 2
      src/main/java/scot/carricksoftware/grantswriter/domains/places/Country.java
  14. 2 2
      src/main/java/scot/carricksoftware/grantswriter/domains/places/Place.java
  15. 2 2
      src/main/java/scot/carricksoftware/grantswriter/domains/places/Region.java
  16. 2 2
      src/main/java/scot/carricksoftware/grantswriter/domains/text/DocumentText.java
  17. 2 2
      src/main/java/scot/carricksoftware/grantswriter/domains/text/PersonText.java
  18. 2 2
      src/main/java/scot/carricksoftware/grantswriter/domains/text/PlaceText.java
  19. 2 2
      src/main/java/scot/carricksoftware/grantswriter/repositories/census/CensusEntryRepository.java
  20. 2 2
      src/main/java/scot/carricksoftware/grantswriter/repositories/census/CensusRepository.java
  21. 2 2
      src/main/java/scot/carricksoftware/grantswriter/repositories/certificates/BirthCertificateRepository.java
  22. 2 2
      src/main/java/scot/carricksoftware/grantswriter/repositories/certificates/DeathCertificateRepository.java
  23. 2 2
      src/main/java/scot/carricksoftware/grantswriter/repositories/certificates/DivorceCertificateRepository.java
  24. 2 2
      src/main/java/scot/carricksoftware/grantswriter/repositories/certificates/MarriageCertificateRepository.java
  25. 2 2
      src/main/java/scot/carricksoftware/grantswriter/repositories/images/ImageRepository.java
  26. 2 2
      src/main/java/scot/carricksoftware/grantswriter/repositories/images/PersonImageRepository.java
  27. 2 2
      src/main/java/scot/carricksoftware/grantswriter/repositories/images/PlaceImageRepository.java
  28. 2 2
      src/main/java/scot/carricksoftware/grantswriter/repositories/people/PersonRepository.java
  29. 2 2
      src/main/java/scot/carricksoftware/grantswriter/repositories/places/CountryRepository.java
  30. 2 2
      src/main/java/scot/carricksoftware/grantswriter/repositories/places/PlaceRepository.java
  31. 2 2
      src/main/java/scot/carricksoftware/grantswriter/repositories/places/RegionRepository.java
  32. 2 2
      src/main/java/scot/carricksoftware/grantswriter/repositories/text/DocumentTextRepository.java
  33. 2 2
      src/main/java/scot/carricksoftware/grantswriter/repositories/text/PersonTextRepository.java
  34. 2 2
      src/main/java/scot/carricksoftware/grantswriter/repositories/text/PlaceTextRepository.java
  35. 1 1
      src/test/java/scot/carricksoftware/grantswriter/GrantsApplicationTests.java

+ 1 - 1
src/main/java/scot/carricksoftware/grants/BaseEntity.java → src/main/java/scot/carricksoftware/grantswriter/BaseEntity.java

@@ -3,7 +3,7 @@
  * All rights reserved.
  */
 
-package scot.carricksoftware.grants;
+package scot.carricksoftware.grantswriter;
 
 import jakarta.persistence.GeneratedValue;
 import jakarta.persistence.GenerationType;

+ 1 - 1
src/main/java/scot/carricksoftware/grants/GrantsWriterApplication.java → src/main/java/scot/carricksoftware/grantswriter/GrantsWriterApplication.java

@@ -1,4 +1,4 @@
-package scot.carricksoftware.grants;
+package scot.carricksoftware.grantswriter;
 
 import org.springframework.boot.SpringApplication;
 import org.springframework.boot.autoconfigure.SpringBootApplication;

+ 2 - 2
src/main/java/scot/carricksoftware/grants/domains/census/Census.java → src/main/java/scot/carricksoftware/grantswriter/domains/census/Census.java

@@ -3,10 +3,10 @@
  *
  */
 
-package scot.carricksoftware.grants.domains.census;
+package scot.carricksoftware.grantswriter.domains.census;
 
 import jakarta.persistence.*;
-import scot.carricksoftware.grants.BaseEntity;
+import scot.carricksoftware.grantswriter.BaseEntity;
 
 @Entity
 public class Census extends BaseEntity {

+ 2 - 2
src/main/java/scot/carricksoftware/grants/domains/census/CensusEntry.java → src/main/java/scot/carricksoftware/grantswriter/domains/census/CensusEntry.java

@@ -3,10 +3,10 @@
  *
  */
 
-package scot.carricksoftware.grants.domains.census;
+package scot.carricksoftware.grantswriter.domains.census;
 
 import jakarta.persistence.*;
-import scot.carricksoftware.grants.BaseEntity;
+import scot.carricksoftware.grantswriter.BaseEntity;
 
 
 @Entity

+ 2 - 2
src/main/java/scot/carricksoftware/grants/domains/certificates/BirthCertificate.java → src/main/java/scot/carricksoftware/grantswriter/domains/certificates/BirthCertificate.java

@@ -3,10 +3,10 @@
  *
  */
 
-package scot.carricksoftware.grants.domains.certificates;
+package scot.carricksoftware.grantswriter.domains.certificates;
 
 import jakarta.persistence.*;
-import scot.carricksoftware.grants.BaseEntity;
+import scot.carricksoftware.grantswriter.BaseEntity;
 
 @Entity
 public class BirthCertificate extends BaseEntity {

+ 2 - 2
src/main/java/scot/carricksoftware/grants/domains/certificates/DeathCertificate.java → src/main/java/scot/carricksoftware/grantswriter/domains/certificates/DeathCertificate.java

@@ -3,10 +3,10 @@
  *
  */
 
-package scot.carricksoftware.grants.domains.certificates;
+package scot.carricksoftware.grantswriter.domains.certificates;
 
 import jakarta.persistence.Entity;
-import scot.carricksoftware.grants.BaseEntity;
+import scot.carricksoftware.grantswriter.BaseEntity;
 
 @Entity
 public class DeathCertificate extends BaseEntity {

+ 2 - 2
src/main/java/scot/carricksoftware/grants/domains/certificates/DivorceCertificate.java → src/main/java/scot/carricksoftware/grantswriter/domains/certificates/DivorceCertificate.java

@@ -3,10 +3,10 @@
  *
  */
 
-package scot.carricksoftware.grants.domains.certificates;
+package scot.carricksoftware.grantswriter.domains.certificates;
 
 import jakarta.persistence.Entity;
-import scot.carricksoftware.grants.BaseEntity;
+import scot.carricksoftware.grantswriter.BaseEntity;
 
 @Entity
 public class DivorceCertificate extends BaseEntity {

+ 2 - 2
src/main/java/scot/carricksoftware/grants/domains/certificates/MarriageCertificate.java → src/main/java/scot/carricksoftware/grantswriter/domains/certificates/MarriageCertificate.java

@@ -3,10 +3,10 @@
  *
  */
 
-package scot.carricksoftware.grants.domains.certificates;
+package scot.carricksoftware.grantswriter.domains.certificates;
 
 import jakarta.persistence.Entity;
-import scot.carricksoftware.grants.BaseEntity;
+import scot.carricksoftware.grantswriter.BaseEntity;
 
 @Entity
 public class MarriageCertificate extends BaseEntity {

+ 2 - 2
src/main/java/scot/carricksoftware/grants/domains/images/Image.java → src/main/java/scot/carricksoftware/grantswriter/domains/images/Image.java

@@ -3,10 +3,10 @@
  *
  */
 
-package scot.carricksoftware.grants.domains.images;
+package scot.carricksoftware.grantswriter.domains.images;
 
 import jakarta.persistence.Entity;
-import scot.carricksoftware.grants.BaseEntity;
+import scot.carricksoftware.grantswriter.BaseEntity;
 
 @Entity
 public class Image extends BaseEntity {

+ 2 - 2
src/main/java/scot/carricksoftware/grants/domains/images/PersonImage.java → src/main/java/scot/carricksoftware/grantswriter/domains/images/PersonImage.java

@@ -3,10 +3,10 @@
  *
  */
 
-package scot.carricksoftware.grants.domains.images;
+package scot.carricksoftware.grantswriter.domains.images;
 
 import jakarta.persistence.Entity;
-import scot.carricksoftware.grants.BaseEntity;
+import scot.carricksoftware.grantswriter.BaseEntity;
 
 @Entity
 public class PersonImage extends BaseEntity {

+ 2 - 2
src/main/java/scot/carricksoftware/grants/domains/images/PlaceImage.java → src/main/java/scot/carricksoftware/grantswriter/domains/images/PlaceImage.java

@@ -3,10 +3,10 @@
  *
  */
 
-package scot.carricksoftware.grants.domains.images;
+package scot.carricksoftware.grantswriter.domains.images;
 
 import jakarta.persistence.Entity;
-import scot.carricksoftware.grants.BaseEntity;
+import scot.carricksoftware.grantswriter.BaseEntity;
 
 @Entity
 public class PlaceImage extends BaseEntity {

+ 2 - 2
src/main/java/scot/carricksoftware/grants/domains/people/Person.java → src/main/java/scot/carricksoftware/grantswriter/domains/people/Person.java

@@ -3,10 +3,10 @@
  *
  */
 
-package scot.carricksoftware.grants.domains.people;
+package scot.carricksoftware.grantswriter.domains.people;
 
 import jakarta.persistence.Entity;
-import scot.carricksoftware.grants.BaseEntity;
+import scot.carricksoftware.grantswriter.BaseEntity;
 
 @Entity
 public class Person extends BaseEntity {

+ 2 - 2
src/main/java/scot/carricksoftware/grants/domains/places/Country.java → src/main/java/scot/carricksoftware/grantswriter/domains/places/Country.java

@@ -3,10 +3,10 @@
  * All rights reserved.
  */
 
-package scot.carricksoftware.grants.domains.places;
+package scot.carricksoftware.grantswriter.domains.places;
 
 import jakarta.persistence.Entity;
-import scot.carricksoftware.grants.BaseEntity;
+import scot.carricksoftware.grantswriter.BaseEntity;
 
 @Entity
 public class Country extends BaseEntity {

+ 2 - 2
src/main/java/scot/carricksoftware/grants/domains/places/Place.java → src/main/java/scot/carricksoftware/grantswriter/domains/places/Place.java

@@ -3,11 +3,11 @@
  * All rights reserved.
  */
 
-package scot.carricksoftware.grants.domains.places;
+package scot.carricksoftware.grantswriter.domains.places;
 
 
 import jakarta.persistence.*;
-import scot.carricksoftware.grants.BaseEntity;
+import scot.carricksoftware.grantswriter.BaseEntity;
 
 @Entity
 public class Place extends BaseEntity {

+ 2 - 2
src/main/java/scot/carricksoftware/grants/domains/places/Region.java → src/main/java/scot/carricksoftware/grantswriter/domains/places/Region.java

@@ -3,11 +3,11 @@
  * All rights reserved.
  */
 
-package scot.carricksoftware.grants.domains.places;
+package scot.carricksoftware.grantswriter.domains.places;
 
 
 import jakarta.persistence.*;
-import scot.carricksoftware.grants.BaseEntity;
+import scot.carricksoftware.grantswriter.BaseEntity;
 
 @Entity
 public class Region extends BaseEntity {

+ 2 - 2
src/main/java/scot/carricksoftware/grants/domains/text/DocumentText.java → src/main/java/scot/carricksoftware/grantswriter/domains/text/DocumentText.java

@@ -3,10 +3,10 @@
  *
  */
 
-package scot.carricksoftware.grants.domains.text;
+package scot.carricksoftware.grantswriter.domains.text;
 
 import jakarta.persistence.Entity;
-import scot.carricksoftware.grants.BaseEntity;
+import scot.carricksoftware.grantswriter.BaseEntity;
 
 @Entity
 public class DocumentText extends BaseEntity {

+ 2 - 2
src/main/java/scot/carricksoftware/grants/domains/text/PersonText.java → src/main/java/scot/carricksoftware/grantswriter/domains/text/PersonText.java

@@ -3,10 +3,10 @@
  *
  */
 
-package scot.carricksoftware.grants.domains.text;
+package scot.carricksoftware.grantswriter.domains.text;
 
 import jakarta.persistence.Entity;
-import scot.carricksoftware.grants.BaseEntity;
+import scot.carricksoftware.grantswriter.BaseEntity;
 
 @Entity
 public class PersonText extends BaseEntity {

+ 2 - 2
src/main/java/scot/carricksoftware/grants/domains/text/PlaceText.java → src/main/java/scot/carricksoftware/grantswriter/domains/text/PlaceText.java

@@ -3,10 +3,10 @@
  *
  */
 
-package scot.carricksoftware.grants.domains.text;
+package scot.carricksoftware.grantswriter.domains.text;
 
 import jakarta.persistence.Entity;
-import scot.carricksoftware.grants.BaseEntity;
+import scot.carricksoftware.grantswriter.BaseEntity;
 
 
 @Entity

+ 2 - 2
src/main/java/scot/carricksoftware/grants/repositories/census/CensusEntryRepository.java → src/main/java/scot/carricksoftware/grantswriter/repositories/census/CensusEntryRepository.java

@@ -3,11 +3,11 @@
  *
  */
 
-package scot.carricksoftware.grants.repositories.census;
+package scot.carricksoftware.grantswriter.repositories.census;
 
 import org.springframework.data.repository.PagingAndSortingRepository;
 import org.springframework.stereotype.Repository;
-import scot.carricksoftware.grants.domains.census.CensusEntry;
+import scot.carricksoftware.grantswriter.domains.census.CensusEntry;
 
 @SuppressWarnings("unused")
 @Repository

+ 2 - 2
src/main/java/scot/carricksoftware/grants/repositories/census/CensusRepository.java → src/main/java/scot/carricksoftware/grantswriter/repositories/census/CensusRepository.java

@@ -3,11 +3,11 @@
  *
  */
 
-package scot.carricksoftware.grants.repositories.census;
+package scot.carricksoftware.grantswriter.repositories.census;
 
 import org.springframework.data.repository.PagingAndSortingRepository;
 import org.springframework.stereotype.Repository;
-import scot.carricksoftware.grants.domains.census.Census;
+import scot.carricksoftware.grantswriter.domains.census.Census;
 
 @SuppressWarnings("unused")
 @Repository

+ 2 - 2
src/main/java/scot/carricksoftware/grants/repositories/certificates/BirthCertificateRepository.java → src/main/java/scot/carricksoftware/grantswriter/repositories/certificates/BirthCertificateRepository.java

@@ -3,11 +3,11 @@
  *
  */
 
-package scot.carricksoftware.grants.repositories.certificates;
+package scot.carricksoftware.grantswriter.repositories.certificates;
 
 import org.springframework.data.repository.PagingAndSortingRepository;
 import org.springframework.stereotype.Repository;
-import scot.carricksoftware.grants.domains.certificates.BirthCertificate;
+import scot.carricksoftware.grantswriter.domains.certificates.BirthCertificate;
 
 @SuppressWarnings("unused")
 @Repository

+ 2 - 2
src/main/java/scot/carricksoftware/grants/repositories/certificates/DeathCertificateRepository.java → src/main/java/scot/carricksoftware/grantswriter/repositories/certificates/DeathCertificateRepository.java

@@ -3,11 +3,11 @@
  *
  */
 
-package scot.carricksoftware.grants.repositories.certificates;
+package scot.carricksoftware.grantswriter.repositories.certificates;
 
 import org.springframework.data.repository.PagingAndSortingRepository;
 import org.springframework.stereotype.Repository;
-import scot.carricksoftware.grants.domains.certificates.DeathCertificate;
+import scot.carricksoftware.grantswriter.domains.certificates.DeathCertificate;
 
 @SuppressWarnings("unused")
 @Repository

+ 2 - 2
src/main/java/scot/carricksoftware/grants/repositories/certificates/DivorceCertificateRepository.java → src/main/java/scot/carricksoftware/grantswriter/repositories/certificates/DivorceCertificateRepository.java

@@ -3,11 +3,11 @@
  *
  */
 
-package scot.carricksoftware.grants.repositories.certificates;
+package scot.carricksoftware.grantswriter.repositories.certificates;
 
 import org.springframework.data.repository.PagingAndSortingRepository;
 import org.springframework.stereotype.Repository;
-import scot.carricksoftware.grants.domains.certificates.DivorceCertificate;
+import scot.carricksoftware.grantswriter.domains.certificates.DivorceCertificate;
 
 @SuppressWarnings("unused")
 @Repository

+ 2 - 2
src/main/java/scot/carricksoftware/grants/repositories/certificates/MarriageCertificateRepository.java → src/main/java/scot/carricksoftware/grantswriter/repositories/certificates/MarriageCertificateRepository.java

@@ -3,11 +3,11 @@
  *
  */
 
-package scot.carricksoftware.grants.repositories.certificates;
+package scot.carricksoftware.grantswriter.repositories.certificates;
 
 import org.springframework.data.repository.PagingAndSortingRepository;
 import org.springframework.stereotype.Repository;
-import scot.carricksoftware.grants.domains.certificates.MarriageCertificate;
+import scot.carricksoftware.grantswriter.domains.certificates.MarriageCertificate;
 
 @SuppressWarnings("unused")
 @Repository

+ 2 - 2
src/main/java/scot/carricksoftware/grants/repositories/images/ImageRepository.java → src/main/java/scot/carricksoftware/grantswriter/repositories/images/ImageRepository.java

@@ -3,10 +3,10 @@
  *
  */
 
-package scot.carricksoftware.grants.repositories.images;
+package scot.carricksoftware.grantswriter.repositories.images;
 
 import org.springframework.data.repository.PagingAndSortingRepository;
-import scot.carricksoftware.grants.domains.images.Image;
+import scot.carricksoftware.grantswriter.domains.images.Image;
 
 @SuppressWarnings("unused")
 public interface ImageRepository extends PagingAndSortingRepository<Image, Long> {

+ 2 - 2
src/main/java/scot/carricksoftware/grants/repositories/images/PersonImageRepository.java → src/main/java/scot/carricksoftware/grantswriter/repositories/images/PersonImageRepository.java

@@ -3,10 +3,10 @@
  *
  */
 
-package scot.carricksoftware.grants.repositories.images;
+package scot.carricksoftware.grantswriter.repositories.images;
 
 import org.springframework.data.repository.PagingAndSortingRepository;
-import scot.carricksoftware.grants.domains.images.PersonImage;
+import scot.carricksoftware.grantswriter.domains.images.PersonImage;
 
 @SuppressWarnings("unused")
 public interface PersonImageRepository extends PagingAndSortingRepository<PersonImage, Long> {

+ 2 - 2
src/main/java/scot/carricksoftware/grants/repositories/images/PlaceImageRepository.java → src/main/java/scot/carricksoftware/grantswriter/repositories/images/PlaceImageRepository.java

@@ -3,10 +3,10 @@
  *
  */
 
-package scot.carricksoftware.grants.repositories.images;
+package scot.carricksoftware.grantswriter.repositories.images;
 
 import org.springframework.data.repository.PagingAndSortingRepository;
-import scot.carricksoftware.grants.domains.images.PlaceImage;
+import scot.carricksoftware.grantswriter.domains.images.PlaceImage;
 
 @SuppressWarnings("unused")
 public interface PlaceImageRepository extends PagingAndSortingRepository<PlaceImage, Long> {

+ 2 - 2
src/main/java/scot/carricksoftware/grants/repositories/people/PersonRepository.java → src/main/java/scot/carricksoftware/grantswriter/repositories/people/PersonRepository.java

@@ -3,11 +3,11 @@
  *
  */
 
-package scot.carricksoftware.grants.repositories.people;
+package scot.carricksoftware.grantswriter.repositories.people;
 
 import org.springframework.data.repository.PagingAndSortingRepository;
 import org.springframework.stereotype.Repository;
-import scot.carricksoftware.grants.domains.people.Person;
+import scot.carricksoftware.grantswriter.domains.people.Person;
 
 @SuppressWarnings("unused")
 @Repository

+ 2 - 2
src/main/java/scot/carricksoftware/grants/repositories/places/CountryRepository.java → src/main/java/scot/carricksoftware/grantswriter/repositories/places/CountryRepository.java

@@ -3,11 +3,11 @@
  *
  */
 
-package scot.carricksoftware.grants.repositories.places;
+package scot.carricksoftware.grantswriter.repositories.places;
 
 import org.springframework.data.repository.PagingAndSortingRepository;
 import org.springframework.stereotype.Repository;
-import scot.carricksoftware.grants.domains.places.Country;
+import scot.carricksoftware.grantswriter.domains.places.Country;
 
 @SuppressWarnings("unused")
 @Repository

+ 2 - 2
src/main/java/scot/carricksoftware/grants/repositories/places/PlaceRepository.java → src/main/java/scot/carricksoftware/grantswriter/repositories/places/PlaceRepository.java

@@ -3,11 +3,11 @@
  *
  */
 
-package scot.carricksoftware.grants.repositories.places;
+package scot.carricksoftware.grantswriter.repositories.places;
 
 import org.springframework.data.repository.PagingAndSortingRepository;
 import org.springframework.stereotype.Repository;
-import scot.carricksoftware.grants.domains.places.Place;
+import scot.carricksoftware.grantswriter.domains.places.Place;
 
 @SuppressWarnings("unused")
 @Repository

+ 2 - 2
src/main/java/scot/carricksoftware/grants/repositories/places/RegionRepository.java → src/main/java/scot/carricksoftware/grantswriter/repositories/places/RegionRepository.java

@@ -3,11 +3,11 @@
  *
  */
 
-package scot.carricksoftware.grants.repositories.places;
+package scot.carricksoftware.grantswriter.repositories.places;
 
 import org.springframework.data.repository.PagingAndSortingRepository;
 import org.springframework.stereotype.Repository;
-import scot.carricksoftware.grants.domains.places.Region;
+import scot.carricksoftware.grantswriter.domains.places.Region;
 
 @SuppressWarnings("unused")
 @Repository

+ 2 - 2
src/main/java/scot/carricksoftware/grants/repositories/text/DocumentTextRepository.java → src/main/java/scot/carricksoftware/grantswriter/repositories/text/DocumentTextRepository.java

@@ -3,11 +3,11 @@
  *
  */
 
-package scot.carricksoftware.grants.repositories.text;
+package scot.carricksoftware.grantswriter.repositories.text;
 
 import org.springframework.data.repository.PagingAndSortingRepository;
 import org.springframework.stereotype.Repository;
-import scot.carricksoftware.grants.domains.text.DocumentText;
+import scot.carricksoftware.grantswriter.domains.text.DocumentText;
 
 import java.util.Optional;
 

+ 2 - 2
src/main/java/scot/carricksoftware/grants/repositories/text/PersonTextRepository.java → src/main/java/scot/carricksoftware/grantswriter/repositories/text/PersonTextRepository.java

@@ -3,11 +3,11 @@
  *
  */
 
-package scot.carricksoftware.grants.repositories.text;
+package scot.carricksoftware.grantswriter.repositories.text;
 
 import org.springframework.data.repository.PagingAndSortingRepository;
 import org.springframework.stereotype.Repository;
-import scot.carricksoftware.grants.domains.text.PersonText;
+import scot.carricksoftware.grantswriter.domains.text.PersonText;
 
 import java.util.Optional;
 

+ 2 - 2
src/main/java/scot/carricksoftware/grants/repositories/text/PlaceTextRepository.java → src/main/java/scot/carricksoftware/grantswriter/repositories/text/PlaceTextRepository.java

@@ -3,11 +3,11 @@
  *
  */
 
-package scot.carricksoftware.grants.repositories.text;
+package scot.carricksoftware.grantswriter.repositories.text;
 
 import org.springframework.data.repository.PagingAndSortingRepository;
 import org.springframework.stereotype.Repository;
-import scot.carricksoftware.grants.domains.text.PlaceText;
+import scot.carricksoftware.grantswriter.domains.text.PlaceText;
 
 import java.util.Optional;
 

+ 1 - 1
src/test/java/scot/carricksoftware/grants/GrantsApplicationTests.java → src/test/java/scot/carricksoftware/grantswriter/GrantsApplicationTests.java

@@ -1,4 +1,4 @@
-package scot.carricksoftware.grants;
+package scot.carricksoftware.grantswriter;
 
 
 import org.junit.jupiter.api.Test;