com.enofex.naikan.maven.provider.pom.MavenTechnologyProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of naikan-maven-plugin Show documentation
Show all versions of naikan-maven-plugin Show documentation
The Naikan Model Plugin for Naikan the software inventory management tool for dev teams driven by our CI/CD pipeline.
package com.enofex.naikan.maven.provider.pom;
import com.enofex.naikan.model.Bom;
import com.enofex.naikan.model.Tags;
import com.enofex.naikan.model.Technologies;
import com.enofex.naikan.model.Technology;
import java.util.ArrayList;
import java.util.List;
import org.apache.maven.execution.MavenSession;
import org.apache.maven.project.MavenProject;
public class MavenTechnologyProvider extends PomProvider {
@Override
public Technologies provide(MavenSession session, MavenProject project, Bom existingBom) {
List technologies = new ArrayList<>(1);
maven(session, project, technologies);
return new Technologies(technologies);
}
private void maven(MavenSession session, MavenProject project,
List technologies) {
String mavenVersion = project.getProperties().getProperty("maven.version");
if (mavenVersion == null) {
mavenVersion = session.getSystemProperties().getProperty("maven.version");
}
if (mavenVersion != null) {
technologies.add(new Technology(
"Maven",
mavenVersion,
"The build automation tool for this project.",
Tags.of("Build automation tool")));
}
}
@Override
public boolean support(Class> clazz) {
return Technologies.class.isAssignableFrom(clazz);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy