diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 57aa8da..1a54ecd 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ # Contributing Guidelines -Thank you for considering contributing to the **Car Service REST API** ! By participating, you're helping to build a more reliable and feature-rich community project. Please take a moment to review these guidelines to ensure a smooth collaboration. +Thank you for considering contributing to the **AutoCare REST API** ! By participating, you're helping to build a more reliable and feature-rich community project. Please take a moment to review these guidelines to ensure a smooth collaboration. ## Table of Content diff --git a/README.md b/README.md index f6831a8..0d66452 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# Car Service REST API sample +# AutoCare REST API Sample -[![Code Analysis](https://github.com/firasrg/car-service-rest-api/actions/workflows/code-analysis.yaml/badge.svg)](https://github.com/firasrg/car-service-rest-api/actions/workflows/code-analysis.yaml) +[![Code Analysis](https://github.com/firasrg/auto-care/actions/workflows/code-analysis.yaml/badge.svg)](https://github.com/firasrg/auto-care/actions/workflows/code-analysis.yaml) [![java-version](https://img.shields.io/badge/Java-17-f0fc03)](https://img.shields.io/badge/Java-17-f0fc03) [![Bugs](https://sonarcloud.io/api/project_badges/measure?project=firasrg_car-service-rest-api&metric=bugs)](https://sonarcloud.io/summary/new_code?id=firasrg_car-service-rest-api) @@ -10,7 +10,7 @@ ## Overview -The **Car Service REST API** 🚗🧑‍🔧 offers a comprehensive solution for managing car service systems. This developer-friendly project is designed to enhance proficiency with modern Spring applications, providing hands-on experience with real-world scenarios and best practices for backend development. +The **AutoCare REST API** 🚗🧑‍🔧 offers a comprehensive solution for managing vehicle services . This developer-friendly project is designed to enhance proficiency with modern Spring applications, providing hands-on experience with real-world scenarios and best practices for backend development. **Goals** : @@ -39,7 +39,7 @@ The **Car Service REST API** 🚗🧑‍🔧 offers a comprehensive solution fo ```bash git clone -cd car-service-rest-api +cd autocare-rest-api ``` 2. **Build** diff --git a/pom.xml b/pom.xml index f095a56..b60c20e 100644 --- a/pom.xml +++ b/pom.xml @@ -9,11 +9,11 @@ com.frg - car-service-rest-api + autocare-rest-api 0.0.1-SNAPSHOT jar - car-service-rest-api - Car service management system + AutoCare Sample App + AutoCare is a management system sample built as a Spring Boot REST API @@ -78,6 +78,9 @@ lombok + + firas1220/car-services + diff --git a/src/main/java/com/frg/carservice/CarServiceApplication.java b/src/main/java/com/frg/autocare/AutoCareApplication.java similarity index 77% rename from src/main/java/com/frg/carservice/CarServiceApplication.java rename to src/main/java/com/frg/autocare/AutoCareApplication.java index 36be31c..80f2562 100644 --- a/src/main/java/com/frg/carservice/CarServiceApplication.java +++ b/src/main/java/com/frg/autocare/AutoCareApplication.java @@ -1,6 +1,6 @@ /** - * Car Service REST API - Application's main class. - * Copyright (C) 2024 Car Service REST API original author or authors. + * AutoCare REST API - Application's main class. + * Copyright (C) 2024 AutoCare REST API original author or authors. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published @@ -15,15 +15,15 @@ * You should have received a copy of the GNU Affero General Public License * along with this application. If not, see . */ -package com.frg.carservice; +package com.frg.autocare; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication -public class CarServiceApplication { +public class AutoCareApplication { public static void main(String[] args) { - SpringApplication.run(CarServiceApplication.class, args); + SpringApplication.run(AutoCareApplication.class, args); } } diff --git a/src/main/java/com/frg/carservice/configs/LoadDatabaseConfig.java b/src/main/java/com/frg/autocare/configs/LoadDatabaseConfig.java similarity index 76% rename from src/main/java/com/frg/carservice/configs/LoadDatabaseConfig.java rename to src/main/java/com/frg/autocare/configs/LoadDatabaseConfig.java index 74b5b02..20a6199 100644 --- a/src/main/java/com/frg/carservice/configs/LoadDatabaseConfig.java +++ b/src/main/java/com/frg/autocare/configs/LoadDatabaseConfig.java @@ -1,6 +1,6 @@ /** - * Car Service REST API - Load database configuration component. - * Copyright (C) 2024 Car Service REST API original author or authors. + * AutoCare REST API - Load database configuration component. + * Copyright (C) 2024 AutoCare REST API original author or authors. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published @@ -15,18 +15,18 @@ * You should have received a copy of the GNU Affero General Public License * along with this application. If not, see . */ -package com.frg.carservice.configs; +package com.frg.autocare.configs; -import com.frg.carservice.entities.Car; -import com.frg.carservice.entities.Client; -import com.frg.carservice.entities.Maintainer; -import com.frg.carservice.entities.Tool; -import com.frg.carservice.entities.User; -import com.frg.carservice.repository.CarRepository; -import com.frg.carservice.repository.ClientRepository; -import com.frg.carservice.repository.MaintainerRepository; -import com.frg.carservice.repository.ToolRepository; -import com.frg.carservice.repository.UserRepository; +import com.frg.autocare.entities.Car; +import com.frg.autocare.entities.Client; +import com.frg.autocare.entities.Maintainer; +import com.frg.autocare.entities.Tool; +import com.frg.autocare.entities.User; +import com.frg.autocare.repository.CarRepository; +import com.frg.autocare.repository.ClientRepository; +import com.frg.autocare.repository.MaintainerRepository; +import com.frg.autocare.repository.ToolRepository; +import com.frg.autocare.repository.UserRepository; import org.springframework.boot.CommandLineRunner; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; diff --git a/src/main/java/com/frg/carservice/constants/IDEs.java b/src/main/java/com/frg/autocare/constants/IDEs.java similarity index 83% rename from src/main/java/com/frg/carservice/constants/IDEs.java rename to src/main/java/com/frg/autocare/constants/IDEs.java index c53fb72..a681bbe 100644 --- a/src/main/java/com/frg/carservice/constants/IDEs.java +++ b/src/main/java/com/frg/autocare/constants/IDEs.java @@ -1,6 +1,6 @@ /** - * Car Service REST API - IDE names constants class. - * Copyright (C) 2024 Car Service REST API original author or authors. + * AutoCare REST API - IDE names constants class. + * Copyright (C) 2024 AutoCare REST API original author or authors. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published @@ -15,7 +15,7 @@ * You should have received a copy of the GNU Affero General Public License * along with this application. If not, see . */ -package com.frg.carservice.constants; +package com.frg.autocare.constants; import lombok.experimental.UtilityClass; diff --git a/src/main/java/com/frg/carservice/controllers/CarController.java b/src/main/java/com/frg/autocare/controllers/CarController.java similarity index 86% rename from src/main/java/com/frg/carservice/controllers/CarController.java rename to src/main/java/com/frg/autocare/controllers/CarController.java index 4ebe882..1cb6909 100644 --- a/src/main/java/com/frg/carservice/controllers/CarController.java +++ b/src/main/java/com/frg/autocare/controllers/CarController.java @@ -1,6 +1,6 @@ /** - * Car Service REST API - Car controller class. - * Copyright (C) 2024 Car Service REST API original author or authors. + * AutoCare REST API - Car controller class. + * Copyright (C) 2024 AutoCare REST API original author or authors. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published @@ -15,9 +15,9 @@ * You should have received a copy of the GNU Affero General Public License * along with this application. If not, see . */ -package com.frg.carservice.controllers; +package com.frg.autocare.controllers; -import com.frg.carservice.services.CarService; +import com.frg.autocare.services.CarService; import lombok.RequiredArgsConstructor; import org.springframework.http.MediaType; import org.springframework.http.ResponseEntity; diff --git a/src/main/java/com/frg/carservice/entities/Car.java b/src/main/java/com/frg/autocare/entities/Car.java similarity index 92% rename from src/main/java/com/frg/carservice/entities/Car.java rename to src/main/java/com/frg/autocare/entities/Car.java index 7cd5bb5..f730266 100644 --- a/src/main/java/com/frg/carservice/entities/Car.java +++ b/src/main/java/com/frg/autocare/entities/Car.java @@ -1,6 +1,6 @@ /** - * Car Service REST API - Car entity class. - * Copyright (C) 2024 Car Service REST API original author or authors. + * AutoCare REST API - Car entity class. + * Copyright (C) 2024 AutoCare REST API original author or authors. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published @@ -15,9 +15,9 @@ * You should have received a copy of the GNU Affero General Public License * along with this application. If not, see . */ -package com.frg.carservice.entities; +package com.frg.autocare.entities; -import com.frg.carservice.constants.IDEs; +import com.frg.autocare.constants.IDEs; import jakarta.annotation.Generated; import jakarta.persistence.Entity; import jakarta.persistence.GeneratedValue; diff --git a/src/main/java/com/frg/carservice/entities/Client.java b/src/main/java/com/frg/autocare/entities/Client.java similarity index 92% rename from src/main/java/com/frg/carservice/entities/Client.java rename to src/main/java/com/frg/autocare/entities/Client.java index 0574617..80d0acc 100644 --- a/src/main/java/com/frg/carservice/entities/Client.java +++ b/src/main/java/com/frg/autocare/entities/Client.java @@ -1,6 +1,6 @@ /** - * Car Service REST API - Client entity class. - * Copyright (C) 2024 Car Service REST API original author or authors. + * AutoCare REST API - Client entity class. + * Copyright (C) 2024 AutoCare REST API original author or authors. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published @@ -15,9 +15,9 @@ * You should have received a copy of the GNU Affero General Public License * along with this application. If not, see . */ -package com.frg.carservice.entities; +package com.frg.autocare.entities; -import com.frg.carservice.constants.IDEs; +import com.frg.autocare.constants.IDEs; import jakarta.annotation.Generated; import jakarta.persistence.Entity; import jakarta.persistence.GeneratedValue; diff --git a/src/main/java/com/frg/carservice/entities/Maintainer.java b/src/main/java/com/frg/autocare/entities/Maintainer.java similarity index 92% rename from src/main/java/com/frg/carservice/entities/Maintainer.java rename to src/main/java/com/frg/autocare/entities/Maintainer.java index b23feee..33bfa75 100644 --- a/src/main/java/com/frg/carservice/entities/Maintainer.java +++ b/src/main/java/com/frg/autocare/entities/Maintainer.java @@ -1,6 +1,6 @@ /** - * Car Service REST API - Maintainer entity class. - * Copyright (C) 2024 Car Service REST API original author or authors. + * AutoCare REST API - Maintainer entity class. + * Copyright (C) 2024 AutoCare REST API original author or authors. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published @@ -15,9 +15,9 @@ * You should have received a copy of the GNU Affero General Public License * along with this application. If not, see . */ -package com.frg.carservice.entities; +package com.frg.autocare.entities; -import com.frg.carservice.constants.IDEs; +import com.frg.autocare.constants.IDEs; import jakarta.annotation.Generated; import jakarta.persistence.Entity; import jakarta.persistence.GeneratedValue; diff --git a/src/main/java/com/frg/carservice/entities/Tool.java b/src/main/java/com/frg/autocare/entities/Tool.java similarity index 92% rename from src/main/java/com/frg/carservice/entities/Tool.java rename to src/main/java/com/frg/autocare/entities/Tool.java index 7a9de17..38ec4f2 100644 --- a/src/main/java/com/frg/carservice/entities/Tool.java +++ b/src/main/java/com/frg/autocare/entities/Tool.java @@ -1,6 +1,6 @@ /** - * Car Service REST API - Tool entity class. - * Copyright (C) 2024 Car Service REST API original author or authors. + * AutoCare REST API - Tool entity class. + * Copyright (C) 2024 AutoCare REST API original author or authors. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published @@ -15,9 +15,9 @@ * You should have received a copy of the GNU Affero General Public License * along with this application. If not, see . */ -package com.frg.carservice.entities; +package com.frg.autocare.entities; -import com.frg.carservice.constants.IDEs; +import com.frg.autocare.constants.IDEs; import jakarta.annotation.Generated; import jakarta.persistence.Entity; import jakarta.persistence.GeneratedValue; diff --git a/src/main/java/com/frg/carservice/entities/User.java b/src/main/java/com/frg/autocare/entities/User.java similarity index 91% rename from src/main/java/com/frg/carservice/entities/User.java rename to src/main/java/com/frg/autocare/entities/User.java index 481d90b..9bab25e 100644 --- a/src/main/java/com/frg/carservice/entities/User.java +++ b/src/main/java/com/frg/autocare/entities/User.java @@ -1,6 +1,6 @@ /** - * Car Service REST API - User entity class. - * Copyright (C) 2024 Car Service REST API original author or authors. + * AutoCare REST API - User entity class. + * Copyright (C) 2024 AutoCare REST API original author or authors. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published @@ -15,9 +15,9 @@ * You should have received a copy of the GNU Affero General Public License * along with this application. If not, see . */ -package com.frg.carservice.entities; +package com.frg.autocare.entities; -import com.frg.carservice.constants.IDEs; +import com.frg.autocare.constants.IDEs; import jakarta.annotation.Generated; import jakarta.persistence.Entity; import jakarta.persistence.GeneratedValue; diff --git a/src/main/java/com/frg/carservice/repository/CarRepository.java b/src/main/java/com/frg/autocare/repository/CarRepository.java similarity index 81% rename from src/main/java/com/frg/carservice/repository/CarRepository.java rename to src/main/java/com/frg/autocare/repository/CarRepository.java index f2aff56..6048e0e 100644 --- a/src/main/java/com/frg/carservice/repository/CarRepository.java +++ b/src/main/java/com/frg/autocare/repository/CarRepository.java @@ -1,6 +1,6 @@ /** - * Car Service REST API - Car repository component. - * Copyright (C) 2024 Car Service REST API original author or authors. + * AutoCare REST API - Car repository component. + * Copyright (C) 2024 AutoCare REST API original author or authors. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published @@ -15,9 +15,9 @@ * You should have received a copy of the GNU Affero General Public License * along with this application. If not, see . */ -package com.frg.carservice.repository; +package com.frg.autocare.repository; -import com.frg.carservice.entities.Car; +import com.frg.autocare.entities.Car; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.stereotype.Repository; diff --git a/src/main/java/com/frg/carservice/repository/ClientRepository.java b/src/main/java/com/frg/autocare/repository/ClientRepository.java similarity index 80% rename from src/main/java/com/frg/carservice/repository/ClientRepository.java rename to src/main/java/com/frg/autocare/repository/ClientRepository.java index ba66f9c..a55c951 100644 --- a/src/main/java/com/frg/carservice/repository/ClientRepository.java +++ b/src/main/java/com/frg/autocare/repository/ClientRepository.java @@ -1,6 +1,6 @@ /** - * Car Service REST API - Client repository component. - * Copyright (C) 2024 Car Service REST API original author or authors. + * AutoCare REST API - Client repository component. + * Copyright (C) 2024 AutoCare REST API original author or authors. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published @@ -15,9 +15,9 @@ * You should have received a copy of the GNU Affero General Public License * along with this application. If not, see . */ -package com.frg.carservice.repository; +package com.frg.autocare.repository; -import com.frg.carservice.entities.Client; +import com.frg.autocare.entities.Client; import org.springframework.data.repository.CrudRepository; import org.springframework.stereotype.Repository; diff --git a/src/main/java/com/frg/carservice/repository/MaintainerRepository.java b/src/main/java/com/frg/autocare/repository/MaintainerRepository.java similarity index 80% rename from src/main/java/com/frg/carservice/repository/MaintainerRepository.java rename to src/main/java/com/frg/autocare/repository/MaintainerRepository.java index 57ea588..f7881d4 100644 --- a/src/main/java/com/frg/carservice/repository/MaintainerRepository.java +++ b/src/main/java/com/frg/autocare/repository/MaintainerRepository.java @@ -1,6 +1,6 @@ /** - * Car Service REST API - Maintainer repository component. - * Copyright (C) 2024 Car Service REST API original author or authors. + * AutoCare REST API - Maintainer repository component. + * Copyright (C) 2024 AutoCare REST API original author or authors. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published @@ -15,9 +15,9 @@ * You should have received a copy of the GNU Affero General Public License * along with this application. If not, see . */ -package com.frg.carservice.repository; +package com.frg.autocare.repository; -import com.frg.carservice.entities.Maintainer; +import com.frg.autocare.entities.Maintainer; import org.springframework.data.repository.CrudRepository; import org.springframework.stereotype.Repository; diff --git a/src/main/java/com/frg/carservice/repository/ToolRepository.java b/src/main/java/com/frg/autocare/repository/ToolRepository.java similarity index 84% rename from src/main/java/com/frg/carservice/repository/ToolRepository.java rename to src/main/java/com/frg/autocare/repository/ToolRepository.java index 1a91672..285dbaa 100644 --- a/src/main/java/com/frg/carservice/repository/ToolRepository.java +++ b/src/main/java/com/frg/autocare/repository/ToolRepository.java @@ -1,6 +1,6 @@ /** - * Car Service REST API - Tool repository component. - * Copyright (C) 2024 Car Service REST API original author or authors. + * AutoCare REST API - Tool repository component. + * Copyright (C) 2024 AutoCare REST API original author or authors. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published @@ -15,9 +15,9 @@ * You should have received a copy of the GNU Affero General Public License * along with this application. If not, see . */ -package com.frg.carservice.repository; +package com.frg.autocare.repository; -import com.frg.carservice.entities.Tool; +import com.frg.autocare.entities.Tool; import java.util.List; import org.springframework.data.jpa.repository.Query; import org.springframework.data.repository.CrudRepository; diff --git a/src/main/java/com/frg/carservice/repository/UserRepository.java b/src/main/java/com/frg/autocare/repository/UserRepository.java similarity index 81% rename from src/main/java/com/frg/carservice/repository/UserRepository.java rename to src/main/java/com/frg/autocare/repository/UserRepository.java index a67d439..06358d6 100644 --- a/src/main/java/com/frg/carservice/repository/UserRepository.java +++ b/src/main/java/com/frg/autocare/repository/UserRepository.java @@ -1,6 +1,6 @@ /** - * Car Service REST API - User repository component. - * Copyright (C) 2024 Car Service REST API original author or authors. + * AutoCare REST API - User repository component. + * Copyright (C) 2024 AutoCare REST API original author or authors. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published @@ -15,9 +15,9 @@ * You should have received a copy of the GNU Affero General Public License * along with this application. If not, see . */ -package com.frg.carservice.repository; +package com.frg.autocare.repository; -import com.frg.carservice.entities.User; +import com.frg.autocare.entities.User; import org.springframework.data.repository.CrudRepository; import org.springframework.stereotype.Repository; diff --git a/src/main/java/com/frg/carservice/services/CarService.java b/src/main/java/com/frg/autocare/services/CarService.java similarity index 84% rename from src/main/java/com/frg/carservice/services/CarService.java rename to src/main/java/com/frg/autocare/services/CarService.java index 9b9f743..98e6016 100644 --- a/src/main/java/com/frg/carservice/services/CarService.java +++ b/src/main/java/com/frg/autocare/services/CarService.java @@ -1,6 +1,6 @@ /** - * Car Service REST API - Car service component. - * Copyright (C) 2024 Car Service REST API original author or authors. + * AutoCare REST API - Car service component. + * Copyright (C) 2024 AutoCare REST API original author or authors. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published @@ -15,15 +15,15 @@ * You should have received a copy of the GNU Affero General Public License * along with this application. If not, see . */ -package com.frg.carservice.services; +package com.frg.autocare.services; import com.fasterxml.jackson.databind.ObjectMapper; -import com.frg.carservice.entities.Car; -import com.frg.carservice.entities.Tool; -import com.frg.carservice.repository.CarRepository; -import com.frg.carservice.repository.ToolRepository; -import com.frg.carservice.technical.ModelObject; -import com.frg.carservice.technical.ModelObjectBuilder; +import com.frg.autocare.entities.Car; +import com.frg.autocare.entities.Tool; +import com.frg.autocare.repository.CarRepository; +import com.frg.autocare.repository.ToolRepository; +import com.frg.autocare.technical.ModelObject; +import com.frg.autocare.technical.ModelObjectBuilder; import java.util.ArrayList; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; diff --git a/src/main/java/com/frg/carservice/technical/ModelObject.java b/src/main/java/com/frg/autocare/technical/ModelObject.java similarity index 88% rename from src/main/java/com/frg/carservice/technical/ModelObject.java rename to src/main/java/com/frg/autocare/technical/ModelObject.java index 94aede6..82ee30f 100644 --- a/src/main/java/com/frg/carservice/technical/ModelObject.java +++ b/src/main/java/com/frg/autocare/technical/ModelObject.java @@ -1,6 +1,6 @@ /** - * Car Service REST API - Technical model builder used to construct JSON objects with flexibility. - * Copyright (C) 2024 Car Service REST API original author or authors. + * AutoCare REST API - Technical model builder used to construct JSON objects with flexibility. + * Copyright (C) 2024 AutoCare REST API original author or authors. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published @@ -15,7 +15,7 @@ * You should have received a copy of the GNU Affero General Public License * along with this application. If not, see . */ -package com.frg.carservice.technical; +package com.frg.autocare.technical; import com.fasterxml.jackson.annotation.JsonAnyGetter; import java.util.ArrayList; diff --git a/src/main/java/com/frg/carservice/technical/ModelObjectBuilder.java b/src/main/java/com/frg/autocare/technical/ModelObjectBuilder.java similarity index 87% rename from src/main/java/com/frg/carservice/technical/ModelObjectBuilder.java rename to src/main/java/com/frg/autocare/technical/ModelObjectBuilder.java index 9f597c8..61f73b7 100644 --- a/src/main/java/com/frg/carservice/technical/ModelObjectBuilder.java +++ b/src/main/java/com/frg/autocare/technical/ModelObjectBuilder.java @@ -1,6 +1,6 @@ /** - * Car Service REST API - Technical model used to construct JSON objects with flexibility. - * Copyright (C) 2024 Car Service REST API original author or authors. + * AutoCare REST API - Technical model used to construct JSON objects with flexibility. + * Copyright (C) 2024 AutoCare REST API original author or authors. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published @@ -15,7 +15,7 @@ * You should have received a copy of the GNU Affero General Public License * along with this application. If not, see . */ -package com.frg.carservice.technical; +package com.frg.autocare.technical; public final class ModelObjectBuilder { diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index b86123f..07781d3 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -1,6 +1,6 @@ # -# Car Service REST API - Application properties configuration. -# Copyright (C) 2024 Car Service REST API original author or authors. +# AutoCare REST API - Application properties configuration. +# Copyright (C) 2024 AutoCare REST API original author or authors. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published @@ -17,7 +17,7 @@ # spring: application: - name: car-service-rest-api + name: autocare-rest-api h2: console: enabled: true diff --git a/src/test/java/com/frg/carservice/CarServiceApplicationTests.java b/src/test/java/com/frg/autocare/AutoCareApplicationTests.java similarity index 81% rename from src/test/java/com/frg/carservice/CarServiceApplicationTests.java rename to src/test/java/com/frg/autocare/AutoCareApplicationTests.java index 95e71a6..f798b2e 100644 --- a/src/test/java/com/frg/carservice/CarServiceApplicationTests.java +++ b/src/test/java/com/frg/autocare/AutoCareApplicationTests.java @@ -1,6 +1,6 @@ /** - * Car Service REST API - Application main tests class. - * Copyright (C) 2024 Car Service REST API original author or authors. + * AutoCare REST API - Application main tests class. + * Copyright (C) 2024 AutoCare REST API original author or authors. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published @@ -15,13 +15,13 @@ * You should have received a copy of the GNU Affero General Public License * along with this application. If not, see . */ -package com.frg.carservice; +package com.frg.autocare; import org.junit.jupiter.api.Test; import org.springframework.boot.test.context.SpringBootTest; @SpringBootTest -class CarServiceApplicationTests { +class AutoCareApplicationTests { @Test void contextLoads() {}