Skip to content

Commit

Permalink
[0.3.2] spring starter 네이밍 규칙에 따라 모듈 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
jojoldu committed Jun 4, 2018
1 parent 3b63a99 commit d6f7252
Show file tree
Hide file tree
Showing 26 changed files with 41 additions and 3 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
@Setter
@NoArgsConstructor
public class QueueData {

private String name;
private Long defaultVisibilityTimeout = 3L;
private Long delay = 0L;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"groups": [{
"name": "sqs.mock",
"type": "com.github.jojoldu.sqs.config.SqsProperties",
"sourceType": "com.github.jojoldu.sqs.config.SqsProperties"
}],
"properties": [
{
"name": "sqs.mock.enabled",
"type": "java.lang.Boolean",
"description": "true or false.",
"defaultValue": false
},
{
"name": "sqs.mock.randomPortEnabled",
"type": "java.lang.Boolean",
"description": "true or false.",
"defaultValue": false
},
{
"name": "sqs.mock.host",
"type": "java.lang.String",
"description": "Your Mock Sqs Server Host.",
"defaultValue": "localhost"
},
{
"name": "sqs.mock.port",
"type": "java.lang.Integer",
"description": "Your Mock Sqs Server Port.",
"defaultValue": 9324
},
{
"name": "sqs.mock.queues",
"type": "java.util.List<com.github.jojoldu.sqs.config.QueueData>"
}
]
}
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
rootProject.name = 'spring-boot-aws-mock'

include 'spring-boot-starter-mock-sqs', 'spring-boot-starter-mock-sample', 'spring-boot-starter-mock-sample2'
include 'mock-sqs-spring-boot-starter', 'spring-boot-starter-mock-sample', 'spring-boot-starter-mock-sample2'
2 changes: 1 addition & 1 deletion spring-boot-starter-mock-sample/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'groovy'

dependencies {
compile project(":spring-boot-starter-mock-sqs")
compile project(":mock-sqs-spring-boot-starter")

compile('org.springframework.boot:spring-boot-starter-actuator')
compile('org.springframework.boot:spring-boot-starter-web')
Expand Down
2 changes: 1 addition & 1 deletion spring-boot-starter-mock-sample2/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'groovy'

dependencies {
compile project(":spring-boot-starter-mock-sqs")
compile project(":mock-sqs-spring-boot-starter")

compile('org.springframework.boot:spring-boot-starter-actuator')
compile('org.springframework.boot:spring-boot-starter-web')
Expand Down

0 comments on commit d6f7252

Please sign in to comment.