/* * Copyright (c) 2010 Red Hat, Inc. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published * by the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see * <http://www.gnu.org/licenses>. */ package com.redhat.rcm.version.mgr.verify; import org.apache.maven.mae.project.key.FullProjectKey; import org.codehaus.plexus.component.annotations.Component; import com.redhat.rcm.version.VManException; import com.redhat.rcm.version.mgr.session.VersionManagerSession; import com.redhat.rcm.version.model.Project; @Component( role = ProjectVerifier.class, hint = "version-suffix" ) public class VersionSuffixVerifier implements ProjectVerifier { @Override public void verify( final Project project, final VersionManagerSession session ) { if ( !session.isStrict() && session.isMissingParent( project ) ) { session.addError( new VManException( "The project parent version was NOT specified in a BOM.\nParent: %s\nProject: %s\nFile: %s\n", new FullProjectKey( project.getParent() ), project.getKey(), project.getPom() ) ); } } }