blob: aae4e0f565183be7ad6292bb3b6f7f27cde9ee89 [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 plugin;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import org.apache.maven.model.Model;
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.project.MavenProject;
import org.codehaus.plexus.util.IOUtil;
/**
* @goal validate
* @phase validate
*/
public class Mojo3563 extends AbstractMojo {
/**
* @parameter default-value="${project}"
*/
private MavenProject project;
/**
* @parameter
* @required
*/
private File foo;
public void execute() throws MojoExecutionException, MojoFailureException {
Model model = project.getModel();
String property = model.getProperties().getProperty("test");
if (property == null) {
throw new MojoExecutionException("Could not find property.");
}
File testFile = new File(property.substring(property.indexOf(":") + 1));
if (!testFile.exists()) {
throw new MojoExecutionException(
"Test file does not exist: File = " + testFile.getAbsolutePath() + "Property = " + property);
}
getLog().info("Property = " + property);
File f = new File(project.getBuild().getOutputDirectory(), "foo.txt");
getLog().info("Creating test file using project.getBuild().getDirectory(): " + f);
String testValue = "" + System.currentTimeMillis();
FileWriter w = null;
try {
f.getParentFile().mkdirs();
w = new FileWriter(f);
w.write(testValue);
} catch (IOException e) {
throw new MojoExecutionException("Failed to write test file.", e);
} finally {
IOUtil.close(w);
}
getLog().info("Attempting to read test file using path from plugin parameter: " + foo);
BufferedReader r = null;
try {
r = new BufferedReader(new FileReader(foo));
if (!testValue.equals(r.readLine())) {
throw new MojoExecutionException("Test file: " + foo + " has wrong contents.");
}
} catch (IOException e) {
throw new MojoExecutionException("Failed to read test file.", e);
} finally {
IOUtil.close(r);
}
}
}