blob: f3c022009587935f848a1e04c4cde78e2b1f0e5c [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 org.apache.maven.plugin.coreit;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import org.apache.maven.artifact.repository.layout.ArtifactRepositoryLayout;
import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.Component;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
/**
* Dumps the role hints of the available repository layouts to a properties file.
*
* @author Benjamin Bentmann
*/
@Mojo(name = "dump-repo-layouts", defaultPhase = LifecyclePhase.VALIDATE)
public class DumpRepoLayoutsMojo extends AbstractMojo {
/**
* Project base directory used for manual path alignment.
*/
@Parameter(defaultValue = "${basedir}", readonly = true)
private File basedir;
/**
* The available repository layouts, as a map.
*/
@Component
private Map<String, ArtifactRepositoryLayout> repositoryLayouts;
/**
* The available repository layouts, as a list.
*/
@Component
private List<ArtifactRepositoryLayout> repoLayouts;
/**
* The path to the properties file used to dump the repository layouts.
*/
@Parameter(property = "collections.layoutsFile")
private File layoutsFile;
/**
* Runs this mojo.
*
* @throws MojoFailureException If the output file could not be created.
*/
public void execute() throws MojoExecutionException, MojoFailureException {
Properties layoutProperties = new Properties();
getLog().info("[MAVEN-CORE-IT-LOG] Dumping repository layouts");
layoutProperties.setProperty("layouts", Integer.toString(repositoryLayouts.size()));
for (Object o : repositoryLayouts.keySet()) {
String roleHint = (String) o;
Object repoLayout = repositoryLayouts.get(roleHint);
if (repoLayout != null) {
layoutProperties.setProperty(
"layouts." + roleHint, repoLayout.getClass().getName());
} else {
layoutProperties.setProperty("layouts." + roleHint, "");
}
getLog().info("[MAVEN-CORE-IT-LOG] " + roleHint + " = " + repoLayout);
}
if (repoLayouts.size() != repositoryLayouts.size()) {
throw new MojoExecutionException("Inconsistent collection: " + repoLayouts + " vs " + repositoryLayouts);
}
if (!layoutsFile.isAbsolute()) {
layoutsFile = new File(basedir, layoutsFile.getPath());
}
getLog().info("[MAVEN-CORE-IT-LOG] Creating output file " + layoutsFile);
OutputStream out = null;
try {
layoutsFile.getParentFile().mkdirs();
out = new FileOutputStream(layoutsFile);
layoutProperties.store(out, "MAVEN-CORE-IT-LOG");
} catch (IOException e) {
throw new MojoExecutionException("Output file could not be created: " + layoutsFile, e);
} finally {
if (out != null) {
try {
out.close();
} catch (IOException e) {
// just ignore
}
}
}
getLog().info("[MAVEN-CORE-IT-LOG] Created output file " + layoutsFile);
}
}