-
Notifications
You must be signed in to change notification settings - Fork 787
/
create_camel.go
68 lines (55 loc) · 1.83 KB
/
create_camel.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package cmd
import (
"github.com/spf13/cobra"
"github.com/jenkins-x/jx/pkg/jx/cmd/templates"
)
var (
createCamelLong = templates.LongDesc(`
Creates a new Apache Camel application using Spring Boot and then optionally sets up CI/CD pipelines and GitOps promotion.
For more documentation about Camel see: [https://camel.apache.org/](https://camel.apache.org/)
` + SeeAlsoText("jx create project"))
createCamelExample = templates.Examples(`
# Create a Camel application and be prompted for the folder name
jx create camel
# Create a Camel application called awesome
jx create camel -a awesome
`)
)
// CreateCamelOptions the options for the create spring command
type CreateCamelOptions struct {
CreateArchetypeOptions
}
// NewCmdCreateCamel creates a command object for the "create" command
func NewCmdCreateCamel(commonOpts *CommonOptions) *cobra.Command {
options := &CreateCamelOptions{
CreateArchetypeOptions{
CreateProjectOptions: CreateProjectOptions{
ImportOptions: ImportOptions{
CommonOptions: commonOpts,
},
},
},
}
cmd := &cobra.Command{
Use: "camel",
Short: "Create a new Camel based application and import the generated code into Git and Jenkins for CI/CD",
Long: createCamelLong,
Example: createCamelExample,
Run: func(cmd *cobra.Command, args []string) {
options.Cmd = cmd
options.Args = args
err := options.Run()
CheckErr(err)
},
}
cmd.Flags().StringVarP(&options.Form.ArchetypeVersion, "camel-version", "c", "RELEASE", "The Version of the Archetype to use")
options.addCreateAppFlags(cmd)
options.addGeneratedMvnCoordinateFlags(cmd)
return cmd
}
// Run implements the command
func (o *CreateCamelOptions) Run() error {
o.Form.ArchetypeGroupId = "org.apache.camel.archetypes"
o.Form.ArchetypeArtifactId = "camel-archetype-spring-boot"
return o.CreateArchetype()
}