All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.shrinkwrap.resolver.impl.gradle.GradleResolverSystem Maven / Gradle / Ivy

The newest version!
package org.jboss.shrinkwrap.resolver.impl.gradle;

import java.io.File;

/**
 * Class to set the directory to resolve build.gradle file.
 */
public class GradleResolverSystem {

   public ProjectEquippedResolveStage forProjectDirectory(final String projectDirectory) {
      return new ProjectEquippedResolveStage(projectDirectory);
   }

   public ProjectEquippedResolveStage forProjectDirectory(final File projectDirectory) {
      return forProjectDirectory(projectDirectory.getAbsolutePath());
   }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy