org.wildfly.swarm.plugin.bom.BomBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wildfly-swarm-fraction-plugin Show documentation
Show all versions of wildfly-swarm-fraction-plugin Show documentation
Plugin to create fraction packages for Wildfly Swarm proper.
/*
* Copyright 2016 Red Hat, Inc, and individual contributors.
*
* Licensed 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 org.wildfly.swarm.plugin.bom;
import java.util.Collection;
import java.util.stream.Collectors;
import org.apache.maven.project.MavenProject;
import org.wildfly.swarm.plugin.DependencyMetadata;
class BomBuilder {
private BomBuilder() {
}
static String generateBOM(final MavenProject rootProject,
final String template,
final Collection bomItems) {
return template.replace("#{dependencies}",
String.join("\n",
bomItems.stream()
.map(BomBuilder::pomGav)
.collect(Collectors.toList())))
.replace("#{bom-artifactId}", rootProject.getArtifactId())
.replace("#{bom-name}", rootProject.getName())
.replace("#{bom-description}", rootProject.getDescription());
}
private static String pomGav(DependencyMetadata project) {
return String.format(DEP_TEMPLATE, project.getGroupId(), project.getArtifactId(), project.getVersion(),
project.hasDefaultScope() ? "" : "\n " + project.getScope() + " ");
}
private static final String DEP_TEMPLATE = " \n %s \n"
+ " %s \n %s %s\n ";
}