Skip to content

Commit

Permalink
Add settings file option to openrewrite
Browse files Browse the repository at this point in the history
Maven settings.xml file can be now specified as parameter for kantra
transform openrewrite (that uses maven for its execution).

Fixes: #19

Signed-off-by: Marek Aufart <[email protected]>
  • Loading branch information
aufi committed Jan 11, 2024
1 parent ab855f7 commit 89547c3
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions cmd/openrewrite.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,14 @@ import (
)

type openRewriteCommand struct {
listTargets bool
input string
target string
goal string
miscOpts string
log logr.Logger
cleanup bool
listTargets bool
input string
target string
goal string
miscOpts string
log logr.Logger
cleanup bool
mavenSettingsFile string
}

func NewOpenRewriteCommand(log logr.Logger) *cobra.Command {
Expand Down Expand Up @@ -58,6 +59,7 @@ func NewOpenRewriteCommand(log logr.Logger) *cobra.Command {
openRewriteCommand.Flags().StringVarP(&openRewriteCmd.target, "target", "t", "", "target openrewrite recipe to use. Run --list-targets to get a list of packaged recipes.")
openRewriteCommand.Flags().StringVarP(&openRewriteCmd.goal, "goal", "g", "dryRun", "target goal")
openRewriteCommand.Flags().StringVarP(&openRewriteCmd.input, "input", "i", "", "path to application source code directory")
openRewriteCommand.Flags().StringVarP(&openRewriteCmd.mavenSettingsFile, "maven-settings", "s", "", "path to a custom maven settings file to use")

return openRewriteCommand
}
Expand Down Expand Up @@ -143,6 +145,12 @@ func (o *openRewriteCommand) Run(ctx context.Context) error {
}
o.log.Info("executing openrewrite recipe",
"recipe", o.target, "input", o.input, "args", strings.Join(args, " "))

if o.mavenSettingsFile != "" {
o.log.Info("using custom maven settings file", "path", o.mavenSettingsFile)
args = append(args, "-s", o.mavenSettingsFile)
}

err := NewContainer(o.log).Run(
ctx,
WithEntrypointArgs(args...),
Expand Down

0 comments on commit 89547c3

Please sign in to comment.