BAEL-4783 fix package name

This commit is contained in:
Trixi Turny
2021-04-23 09:50:59 +01:00
parent c3b985584b
commit b31a927e4e
18 changed files with 20 additions and 21 deletions
@@ -1,4 +1,4 @@
package com.baeldung.cucumber_tags;
package com.baeldung.cucumber.tags;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@@ -1,4 +1,4 @@
package com.baeldung.cucumber_tags.controller;
package com.baeldung.cucumber.tags.controller;
import org.springframework.http.HttpStatus;
@@ -1,6 +1,6 @@
package com.baeldung.cucumber_tags.controller;
package com.baeldung.cucumber.tags.controller;
import com.baeldung.cucumber_tags.service.RandomNumberGeneratorService;
import com.baeldung.cucumber.tags.service.RandomNumberGeneratorService;
import lombok.Data;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
@@ -1,4 +1,4 @@
package com.baeldung.cucumber_tags.service;
package com.baeldung.cucumber.tags.service;
import java.util.concurrent.ThreadLocalRandom;