You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by as...@apache.org on 2019/11/04 16:10:35 UTC

[camel-k] 11/38: feat(quarkus): Fix reported artifact IDs

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

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

commit ca9810bab1b5bf6039e84b2fe0232f63553add77
Author: Antonin Stefanutti <an...@stefanutti.fr>
AuthorDate: Wed Oct 23 12:07:01 2019 +0200

    feat(quarkus): Fix reported artifact IDs
---
 pkg/builder/runtime/quarkus.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pkg/builder/runtime/quarkus.go b/pkg/builder/runtime/quarkus.go
index c3c734a..243f871 100644
--- a/pkg/builder/runtime/quarkus.go
+++ b/pkg/builder/runtime/quarkus.go
@@ -127,7 +127,7 @@ func computeQuarkusDependencies(ctx *builder.Context) error {
 		}
 
 		ctx.Artifacts = append(ctx.Artifacts, v1alpha1.Artifact{
-			ID:       fileName,
+			ID:       gav.GroupID + ":" + gav.ArtifactID + ":" + gav.Type + ":" + gav.Version,
 			Location: location,
 			Target:   path.Join("lib", fileName),
 		})