You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2019/12/18 07:02:47 UTC

[camel-k] 02/02: goimports - fix build issue import order

This is an automated email from the ASF dual-hosted git repository.

nferraro pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit bc08a41e327f26c5bd9133dbb64da8cd06c9aec2
Author: Ganeshraja Ramu <ga...@hmcts.net>
AuthorDate: Tue Dec 17 23:43:39 2019 +0000

    goimports - fix build issue import order
---
 cmd/kamel/main.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmd/kamel/main.go b/cmd/kamel/main.go
index 5402649..3402644 100644
--- a/cmd/kamel/main.go
+++ b/cmd/kamel/main.go
@@ -28,8 +28,8 @@ import (
 	_ "github.com/apache/camel-k/pkg/builder/s2i"
 	"github.com/apache/camel-k/pkg/cmd"
 
-	_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
 	_ "k8s.io/client-go/plugin/pkg/client/auth/azure"
+	_ "k8s.io/client-go/plugin/pkg/client/auth/gcp"
 )
 
 func main() {