-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename AWS AppConfig as artifactId avaje-aws-appconfig
- Loading branch information
Showing
7 changed files
with
22 additions
and
14 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
2 changes: 1 addition & 1 deletion
2
...config/awsappconfig/AppConfigFetcher.java → ...je/config/appconfig/AppConfigFetcher.java
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package io.avaje.config.awsappconfig; | ||
package io.avaje.config.appconfig; | ||
|
||
interface AppConfigFetcher { | ||
|
||
|
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
2 changes: 1 addition & 1 deletion
2
...onfig/awsappconfig/DAppConfigFetcher.java → ...e/config/appconfig/DAppConfigFetcher.java
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
2 changes: 1 addition & 1 deletion
2
...io/avaje/config/awsappconfig/DResult.java → ...va/io/avaje/config/appconfig/DResult.java
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 |
---|---|---|
@@ -1,10 +1,11 @@ | ||
import io.avaje.config.awsappconfig.AwsAppConfigPlugin; | ||
import io.avaje.config.appconfig.AppConfigPlugin; | ||
|
||
module io.avaje.config.awsappconfig { | ||
module io.avaje.config.appconfig { | ||
|
||
exports io.avaje.config.awsappconfig; | ||
exports io.avaje.config.appconfig; | ||
|
||
requires io.avaje.config; | ||
requires java.net.http; | ||
provides io.avaje.config.ConfigurationSource with AwsAppConfigPlugin; | ||
requires transitive io.avaje.applog; | ||
provides io.avaje.config.ConfigurationSource with AppConfigPlugin; | ||
} |
2 changes: 1 addition & 1 deletion
2
avaje-aws-appconfig/src/main/resources/META-INF/services/io.avaje.config.ConfigurationSource
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 |
---|---|---|
@@ -1 +1 @@ | ||
io.avaje.config.awsappconfig.AwsAppConfigPlugin | ||
io.avaje.config.appconfig.AppConfigPlugin |