(args ...string)
| 455 | } |
| 456 | |
| 457 | func (m *JavaSdk) mavenCommand(args ...string) []string { |
| 458 | if m.MavenErrors { |
| 459 | args = append(args, "-e") |
| 460 | } |
| 461 | if m.MavenDebugLogging { |
| 462 | args = append(args, "-X") |
| 463 | } |
| 464 | args = append(args, "--threads", "1C", "--no-transfer-progress") |
| 465 | return args |
| 466 | } |
| 467 | |
| 468 | //go:embed images/maven/Dockerfile |
| 469 | var mavenImage string |
no outgoing calls
no test coverage detected