blob: 88685030f3e837a1a269a9b060fdb055ad179802 [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.plugins.clean;
/*
* 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.
*/
import java.io.File;
import org.codehaus.plexus.util.cli.CommandLineUtils;
import org.codehaus.plexus.util.cli.Commandline;
/**
* Testing helpers for the IT scripts.
*
* @author Benjamin Bentmann
*/
public class Utils {
/**
* Creates a symbolic link.
*
* @param target The target (file or directory) of the link, must not be <code>null</code>.
* @param link The path to the link, must not be <code>null</code>.
* @return <code>true</code> if the symlink could be created, <code>false</code> otherwise.
*/
public static boolean createSymlink(File target, File link) {
try {
Commandline cli = new Commandline();
cli.setExecutable("ln");
cli.createArg().setValue("-s");
cli.createArg().setFile(target);
cli.createArg().setFile(link);
int code = CommandLineUtils.executeCommandLine(cli, System.out::println, System.err::println);
return 0 == code;
} catch (Exception e) {
return false;
}
}
}