blob: ac0fc44d39eb1697e795bb6f4b84c01c300bd4ef [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.servicemix.maven.plugin.jbi;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.io.PrintStream;
import java.util.Date;
import java.util.Iterator;
import org.apache.maven.model.Dependency;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
/**
* Generates the dependencies properties file
*
* @version $Id: $
* @goal generate-depends-file
* @phase generate-resources
* @requiresDependencyResolution runtime
* @description Generates the dependencies properties file
*/
public class GenerateDependsFileMojo extends AbstractJbiMojo {
protected static final String SEPARATOR = "/";
/**
* The file to generate
*
* @parameter default-value="${project.build.directory}/classes/META-INF/maven/dependencies.properties"
*/
private File outputFile;
public void execute() throws MojoExecutionException, MojoFailureException {
OutputStream out = null;
try {
outputFile.getParentFile().mkdirs();
out = new FileOutputStream(outputFile);
PrintStream printer = new PrintStream(out);
populateProperties(printer);
getLog().info("Created: " + outputFile);
} catch (Exception e) {
throw new MojoExecutionException(
"Unable to create dependencies file: " + e, e);
} finally {
if (out != null) {
try {
out.close();
} catch (IOException e) {
getLog().info("Failed to close: " + outputFile + ". Reason: " + e, e);
}
}
}
}
protected void populateProperties(PrintStream out) {
out.println("# Project dependencies generated by the Apache ServiceMix Maven Plugin");
out.println("# Generated at: " + new Date());
out.println();
out.println("groupId = " + project.getGroupId());
out.println("artifactId = " + project.getArtifactId());
out.println("version = " + project.getVersion());
out.println(project.getGroupId() + SEPARATOR + project.getArtifactId() + SEPARATOR + "version = " + project.getVersion());
out.println();
out.println("# dependencies");
out.println();
Iterator iterator = project.getDependencies().iterator();
while (iterator.hasNext()) {
Dependency dependency = (Dependency) iterator.next();
String prefix = dependency.getGroupId() + SEPARATOR + dependency.getArtifactId() + SEPARATOR;
out.println(prefix + "version = " + dependency.getVersion());
String classifier = dependency.getClassifier();
if (classifier != null) {
out.println(prefix + "classifier = " + classifier);
}
out.println(prefix + "type = " + dependency.getType());
out.println(prefix + "scope = " + dependency.getScope());
out.println();
getLog().debug("Dependency: " + dependency + " classifier: " + classifier + " type: " + dependency.getType());
}
}
}