blob: eb0dbf4aa3cbc7dff9156f777e24bb534b731b9a [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package camel
import (
"fmt"
"strings"
"github.com/apache/camel-k/pkg/util/jitpack"
"github.com/apache/camel-k/pkg/util/maven"
"github.com/rs/xid"
)
// ManageIntegrationDependencies --
func ManageIntegrationDependencies(
project *maven.Project,
dependencies []string,
catalog *RuntimeCatalog) error {
// Add dependencies from build
for _, d := range dependencies {
switch {
case strings.HasPrefix(d, "bom:"):
mid := strings.TrimPrefix(d, "bom:")
gav := strings.Replace(mid, "/", ":", -1)
d, err := maven.ParseGAV(gav)
if err != nil {
return err
}
project.DependencyManagement.Dependencies = append(project.DependencyManagement.Dependencies, maven.Dependency{
GroupID: d.GroupID,
ArtifactID: d.ArtifactID,
Version: d.Version,
Type: "pom",
Scope: "import",
})
case strings.HasPrefix(d, "camel:"):
artifactID := strings.TrimPrefix(d, "camel:")
if !strings.HasPrefix(artifactID, "camel-") {
artifactID = "camel-" + artifactID
}
project.AddDependencyGAV("org.apache.camel", artifactID, "")
case strings.HasPrefix(d, "camel-k:"):
artifactID := strings.TrimPrefix(d, "camel-k:")
if !strings.HasPrefix(artifactID, "camel-k-") {
artifactID = "camel-k-" + artifactID
}
project.AddDependencyGAV("org.apache.camel.k", artifactID, "")
case strings.HasPrefix(d, "camel-quarkus:"):
artifactID := strings.TrimPrefix(d, "camel-quarkus:")
if !strings.HasPrefix(artifactID, "camel-quarkus-") {
artifactID = "camel-quarkus-" + artifactID
}
project.AddDependencyGAV("org.apache.camel.quarkus", artifactID, "")
case strings.HasPrefix(d, "mvn:"):
mid := strings.TrimPrefix(d, "mvn:")
gav := strings.Replace(mid, "/", ":", -1)
project.AddEncodedDependencyGAV(gav)
default:
if dep := jitpack.ToDependency(d); dep != nil {
project.AddDependency(*dep)
addRepo := true
for _, repo := range project.Repositories {
if repo.URL == jitpack.RepoURL {
addRepo = false
break
}
}
if addRepo {
project.Repositories = append(project.Repositories, maven.Repository{
ID: "jitpack.io-" + xid.New().String(),
URL: jitpack.RepoURL,
Releases: maven.RepositoryPolicy{
Enabled: true,
ChecksumPolicy: "fail",
},
Snapshots: maven.RepositoryPolicy{
Enabled: true,
ChecksumPolicy: "fail",
},
})
}
} else {
return fmt.Errorf("unknown dependency type: %s", d)
}
}
}
// Add dependencies from catalog
deps := make([]maven.Dependency, len(project.Dependencies))
copy(deps, project.Dependencies)
for _, d := range deps {
if a, ok := catalog.Artifacts[d.ArtifactID]; ok {
for _, dep := range a.Dependencies {
md := maven.Dependency{
GroupID: dep.GroupID,
ArtifactID: dep.ArtifactID,
}
project.AddDependency(md)
for _, e := range dep.Exclusions {
me := maven.Exclusion{
GroupID: e.GroupID,
ArtifactID: e.ArtifactID,
}
project.AddDependencyExclusion(md, me)
}
}
}
}
// Post process dependencies
deps = make([]maven.Dependency, len(project.Dependencies))
copy(deps, project.Dependencies)
for _, d := range deps {
if a, ok := catalog.Artifacts[d.ArtifactID]; ok {
md := maven.Dependency{
GroupID: a.GroupID,
ArtifactID: a.ArtifactID,
}
for _, e := range a.Exclusions {
me := maven.Exclusion{
GroupID: e.GroupID,
ArtifactID: e.ArtifactID,
}
project.AddDependencyExclusion(md, me)
}
}
}
return nil
}
// SanitizeIntegrationDependencies --
func SanitizeIntegrationDependencies(dependencies []maven.Dependency) error {
for i := 0; i < len(dependencies); i++ {
dep := dependencies[i]
// It may be externalized into runtime provider specific steps
switch dep.GroupID {
case "org.apache.camel":
fallthrough
case "org.apache.camel.k":
fallthrough
case "org.apache.camel.quarkus":
//
// Remove the version so we force using the one configured by the bom
//
dependencies[i].Version = ""
}
}
return nil
}