Skip to content

Commit

Permalink
Consistent project naming and packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
flawmop committed Feb 9, 2024
1 parent 7c7acb9 commit 9984da3
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id 'io.spring.dependency-management' version '1.1.4'
}

group = 'com.insilicosoft.portal'
group = 'com.insilicosoft.portal.svr'
version = '0.0.1-SNAPSHOT'

description = 'Provides API gateway and cross-cutting concerns.'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.insilicosoft.portal.edgesvr;
package com.insilicosoft.portal.svr.edge;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.insilicosoft.portal.edgesvr.config;
package com.insilicosoft.portal.svr.edge.config;

import reactor.core.publisher.Mono;

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spring:
order: 1
predicates:
- Method=GET,POST
- Path=/run
- Path=/run/**
uri: ${ROUTE_RUN:http://localhost:9002}/
- id: 100-default
order: 100
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.insilicosoft.portal.edgesvr;
package com.insilicosoft.portal.svr.edge;

import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.insilicosoft.portal.edgesvr.config;
package com.insilicosoft.portal.svr.edge.config;

import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
Expand Down

0 comments on commit 9984da3

Please sign in to comment.