-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f426559
commit 194c5f0
Showing
8 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ spring: | |
- sms | ||
- redis | ||
- rest | ||
- aws | ||
docker: | ||
compose: | ||
enabled: false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import org.springframework.boot.gradle.tasks.bundling.BootJar | ||
|
||
val jar: Jar by tasks | ||
val bootJar: BootJar by tasks | ||
|
||
bootJar.enabled = false | ||
jar.enabled = true | ||
|
||
dependencies { | ||
implementation(project(":support:common")) | ||
implementation(project(":domain")) | ||
implementation(project(":application")) | ||
|
||
implementation(libs.spring.boot.core) | ||
implementation(libs.spring.cloud.starter.aws.s3) | ||
} |
12 changes: 12 additions & 0 deletions
12
infrastructure/aws/src/main/kotlin/com/threedays/aws/support/AwsConfig.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.threedays.aws.support | ||
|
||
import org.springframework.boot.context.properties.ConfigurationPropertiesScan | ||
import org.springframework.context.annotation.ComponentScan | ||
import org.springframework.context.annotation.Configuration | ||
|
||
private const val BASE_PACKAGE = "com.threedays.aws" | ||
|
||
@Configuration | ||
@ComponentScan(basePackages = [BASE_PACKAGE]) | ||
@ConfigurationPropertiesScan(basePackages = [BASE_PACKAGE]) | ||
class AwsConfig |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters