forked from helidon-io/helidon
-
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.
Fix archetypes module (helidon-io#7803)
Signed-off-by: tvallin <[email protected]>
- Loading branch information
1 parent
6c3d2a6
commit edda695
Showing
22 changed files
with
113 additions
and
94 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
56 changes: 28 additions & 28 deletions
56
archetypes/helidon/src/main/archetype/common/files/application.abac.yaml
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
29 changes: 15 additions & 14 deletions
29
archetypes/helidon/src/main/archetype/common/files/application.jwt.yaml
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,14 +1,15 @@ | ||
- atn-token: | ||
jwk.resource.resource-path: "verifying-jwk.json" | ||
jwt-audience: "http://my.service" | ||
- sign-token: | ||
jwk.resource.resource-path: "signing-jwk.json" | ||
jwt-issuer: "http://my.server/identity" | ||
outbound: | ||
- name: "propagate-token" | ||
hosts: ["*.internal.org"] | ||
- name: "generate-token" | ||
hosts: ["1.partner-service"] | ||
jwk-kid: "partner-1" | ||
jwt-kid: "helidon" | ||
jwt-audience: "http://1.partner-service" | ||
- jwt: | ||
atn-token: | ||
jwk.resource.resource-path: "verifying-jwk.json" | ||
jwt-audience: "http://my.service" | ||
sign-token: | ||
jwk.resource.resource-path: "signing-jwk.json" | ||
jwt-issuer: "http://my.server/identity" | ||
outbound: | ||
- name: "propagate-token" | ||
hosts: ["*.internal.org"] | ||
- name: "generate-token" | ||
hosts: ["1.partner-service"] | ||
jwk-kid: "partner-1" | ||
jwt-kid: "helidon" | ||
jwt-audience: "http://1.partner-service" |
10 changes: 8 additions & 2 deletions
10
archetypes/helidon/src/main/archetype/common/files/src/main/java/module-info.java.mustache
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,6 +1,12 @@ | ||
|
||
module {{package}} { | ||
{{#modules}} | ||
{{#module-requires}} | ||
requires {{.}}; | ||
{{/modules}} | ||
{{/module-requires}} | ||
|
||
exports {{package}}; | ||
|
||
{{#module-opens}} | ||
opens {{package}}; | ||
{{/module-opens}} | ||
} |
File renamed without changes.
File renamed without changes.
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
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
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
Oops, something went wrong.