[JAVA-632] Standardizing packages from org.baeldung to com.baeldung: spring-cloud-zookeeper
This commit is contained in:
parent
ac44d74f33
commit
505ed38593
|
@ -56,6 +56,12 @@
|
|||
<artifactId>spring-cloud-starter-feign</artifactId>
|
||||
<version>${spring-cloud-starter-feign.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-test</artifactId>
|
||||
<version>${spring-boot.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.hamcrest</groupId>
|
||||
<artifactId>hamcrest-core</artifactId>
|
||||
|
|
|
@ -1,12 +1,11 @@
|
|||
package org.baeldung;
|
||||
package com.baeldung;
|
||||
|
||||
import com.baeldung.spring.cloud.greeting.GreetingApplication;
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.context.junit4.SpringRunner;
|
||||
|
||||
import com.baeldung.spring.cloud.ribbon.client.ServerLocationApp;
|
||||
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest(classes = GreetingApplication.class)
|
||||
public class SpringContextTest {
|
Loading…
Reference in New Issue