-
Notifications
You must be signed in to change notification settings - Fork 565
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
3.x: Archetype - Backport several issues from 4.x to 3.x (#8564)
* Fix Json code duplication Signed-off-by: tvallin <thibault.vallin@oracle.com> * Fix archetypes module Signed-off-by: tvallin <thibault.vallin@oracle.com> * Add opens WEB to module info for multipart Signed-off-by: tvallin <thibault.vallin@oracle.com> * Kubernetes uses ClusterIP instead of NodePort Signed-off-by: tvallin <thibault.vallin@oracle.com> * fix sql script for oracle database Signed-off-by: tvallin <thibault.vallin@oracle.com> * Archetype generates .gitignore Signed-off-by: tvallin <thibault.vallin@oracle.com> * update index.html to match backend endpoint Signed-off-by: tvallin <thibault.vallin@oracle.com> --------- Signed-off-by: tvallin <thibault.vallin@oracle.com>
- Loading branch information
Showing
22 changed files
with
204 additions
and
71 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
38 changes: 38 additions & 0 deletions
38
archetypes/helidon/src/main/archetype/common/files/.gitignore.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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Compiled class file | ||
*.class | ||
|
||
# Maven | ||
target/ | ||
.m2/ | ||
|
||
# Package Files # | ||
*.jar | ||
*.war | ||
*.nar | ||
*.ear | ||
*.zip | ||
*.tar.gz | ||
*.rar | ||
|
||
# IntelliJ Idea | ||
.idea/ | ||
*.iws | ||
*.ipr | ||
*.iml | ||
*.releaseBackup | ||
atlassian-ide-plugin.xml | ||
|
||
# Netbeans | ||
nbactions.xml | ||
nb-configuration.xml | ||
|
||
# Eclipse | ||
.settings | ||
.settings/ | ||
.project | ||
.classpath | ||
.factorypath | ||
|
||
{{#gitignore}} | ||
{{.}} | ||
{{/gitignore}} |
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
13 changes: 11 additions & 2 deletions
13
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,15 @@ | ||
|
||
module {{package}} { | ||
{{#modules}} | ||
{{#module-requires}} | ||
requires {{.}}; | ||
{{/modules}} | ||
{{/module-requires}} | ||
|
||
exports {{package}}; | ||
|
||
{{#module-opens}} | ||
opens {{.}}; | ||
{{/module-opens}} | ||
{{#module-opens-package}} | ||
opens {{package}}; | ||
{{/module-opens-package}} | ||
} |
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.