/******************************************************************************* * Copyright (c) 2006-2010 eBay Inc. All Rights Reserved. * 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 *******************************************************************************/ package org.ebayopensource.turmeric.maven.standards; import org.apache.maven.plugin.AbstractMojo; import org.apache.maven.plugin.MojoExecutionException; import org.apache.maven.plugin.MojoFailureException; /** * Checks the project to ensure that it follows various maven standards. * * @goal validate-standards * @phase validate * @requiresProject true */ public class StandardsCheckMojo extends AbstractMojo { @Override public void execute() throws MojoExecutionException, MojoFailureException { // TODO Auto-generated method stub } }