Skip to content

Commit a2bffaa

Browse files
thuannguyenquangthuannguyenit
authored andcommitted
Rename package-name
1 parent 231c524 commit a2bffaa

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

micro-services/limits-service/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55

6-
<groupId>com.codekooking.rest.microservices</groupId>
6+
<groupId>com.codekooking.microservices</groupId>
77
<artifactId>limits-service</artifactId>
88
<version>0.0.1-SNAPSHOT</version>
99
<packaging>jar</packaging>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.codekooking.rest.microservices.limitsservice;
1+
package com.codekooking.microservices.limitsservice;
22

33
import org.springframework.boot.context.properties.ConfigurationProperties;
44
import org.springframework.stereotype.Component;
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
package com.codekooking.rest.microservices.limitsservice;
1+
package com.codekooking.microservices.limitsservice;
22

33
import org.springframework.beans.factory.annotation.Autowired;
44
import org.springframework.web.bind.annotation.GetMapping;
55
import org.springframework.web.bind.annotation.RestController;
66

7-
import com.codekooking.rest.microservices.limitsservice.bean.LimitConfiguration;
7+
import com.codekooking.microservices.limitsservice.bean.LimitConfiguration;
88

99
@RestController
1010
public class LimitsConfigurationController {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.codekooking.rest.microservices.limitsservice;
1+
package com.codekooking.microservices.limitsservice;
22

33
import org.springframework.boot.SpringApplication;
44
import org.springframework.boot.autoconfigure.SpringBootApplication;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.codekooking.rest.microservices.limitsservice.bean;
1+
package com.codekooking.microservices.limitsservice.bean;
22

33
public class LimitConfiguration {
44
private int maximum;

0 commit comments

Comments
 (0)