Java 类org.springframework.boot.cli.compiler.grape.DependencyResolutionContext 实例源码

项目:https-github.com-g0t4-jenkins2-course-spring-boot    文件:DependencyCustomizerTests.java   
@Before
public void setUp() {
    MockitoAnnotations.initMocks(this);
    given(this.resolver.getGroupId("spring-boot-starter-logging"))
            .willReturn("org.springframework.boot");
    given(this.resolver.getArtifactId("spring-boot-starter-logging"))
            .willReturn("spring-boot-starter-logging");
    this.moduleNode.addClass(this.classNode);
    this.dependencyCustomizer = new DependencyCustomizer(
            new GroovyClassLoader(getClass().getClassLoader()), this.moduleNode,
            new DependencyResolutionContext() {

                @Override
                public ArtifactCoordinatesResolver getArtifactCoordinatesResolver() {
                    return DependencyCustomizerTests.this.resolver;
                }

            });
}
项目:spring-boot-concourse    文件:DependencyCustomizerTests.java   
@Before
public void setUp() {
    MockitoAnnotations.initMocks(this);
    given(this.resolver.getGroupId("spring-boot-starter-logging"))
            .willReturn("org.springframework.boot");
    given(this.resolver.getArtifactId("spring-boot-starter-logging"))
            .willReturn("spring-boot-starter-logging");
    this.moduleNode.addClass(this.classNode);
    this.dependencyCustomizer = new DependencyCustomizer(
            new GroovyClassLoader(getClass().getClassLoader()), this.moduleNode,
            new DependencyResolutionContext() {

                @Override
                public ArtifactCoordinatesResolver getArtifactCoordinatesResolver() {
                    return DependencyCustomizerTests.this.resolver;
                }

            });
}
项目:contestparser    文件:DependencyCustomizerTests.java   
@Before
public void setUp() {
    MockitoAnnotations.initMocks(this);
    given(this.resolver.getGroupId("spring-boot-starter-logging"))
            .willReturn("org.springframework.boot");
    given(this.resolver.getArtifactId("spring-boot-starter-logging"))
            .willReturn("spring-boot-starter-logging");
    this.moduleNode.addClass(this.classNode);
    this.dependencyCustomizer = new DependencyCustomizer(
            new GroovyClassLoader(getClass().getClassLoader()), this.moduleNode,
            new DependencyResolutionContext() {

                @Override
                public ArtifactCoordinatesResolver getArtifactCoordinatesResolver() {
                    return DependencyCustomizerTests.this.resolver;
                }

            });
}
项目:https-github.com-g0t4-jenkins2-course-spring-boot    文件:DependencyAutoConfigurationTransformation.java   
public DependencyAutoConfigurationTransformation(GroovyClassLoader loader,
        DependencyResolutionContext dependencyResolutionContext,
        Iterable<CompilerAutoConfiguration> compilerAutoConfigurations) {
    this.loader = loader;
    this.dependencyResolutionContext = dependencyResolutionContext;
    this.compilerAutoConfigurations = compilerAutoConfigurations;

}
项目:https-github.com-g0t4-jenkins2-course-spring-boot    文件:DependencyCustomizer.java   
/**
 * Create a new {@link DependencyCustomizer} instance.
 * @param loader the current classloader
 * @param moduleNode the current module
 * @param dependencyResolutionContext the context for dependency resolution
 */
public DependencyCustomizer(GroovyClassLoader loader, ModuleNode moduleNode,
        DependencyResolutionContext dependencyResolutionContext) {
    this.loader = loader;
    this.classNode = moduleNode.getClasses().get(0);
    this.dependencyResolutionContext = dependencyResolutionContext;
}
项目:https-github.com-g0t4-jenkins2-course-spring-boot    文件:GroovyCompiler.java   
/**
 * Create a new {@link GroovyCompiler} instance.
 * @param configuration the compiler configuration
 */
public GroovyCompiler(final GroovyCompilerConfiguration configuration) {

    this.configuration = configuration;
    this.loader = createLoader(configuration);

    DependencyResolutionContext resolutionContext = new DependencyResolutionContext();

    AetherGrapeEngine grapeEngine = AetherGrapeEngineFactory.create(this.loader,
            configuration.getRepositoryConfiguration(), resolutionContext);

    GrapeEngineInstaller.install(grapeEngine);

    this.loader.getConfiguration()
            .addCompilationCustomizers(new CompilerAutoConfigureCustomizer());
    if (configuration.isAutoconfigure()) {
        this.compilerAutoConfigurations = ServiceLoader
                .load(CompilerAutoConfiguration.class);
    }
    else {
        this.compilerAutoConfigurations = Collections.emptySet();
    }

    this.transformations = new ArrayList<ASTTransformation>();
    this.transformations
            .add(new DependencyManagementBomTransformation(resolutionContext));
    this.transformations.add(new DependencyAutoConfigurationTransformation(
            this.loader, resolutionContext, this.compilerAutoConfigurations));
    this.transformations.add(new GroovyBeansTransformation());
    if (this.configuration.isGuessDependencies()) {
        this.transformations.add(
                new ResolveDependencyCoordinatesTransformation(resolutionContext));
    }
    for (ASTTransformation transformation : ServiceLoader
            .load(SpringBootAstTransformation.class)) {
        this.transformations.add(transformation);
    }
    Collections.sort(this.transformations, AnnotationAwareOrderComparator.INSTANCE);
}
项目:spring-boot-concourse    文件:DependencyAutoConfigurationTransformation.java   
public DependencyAutoConfigurationTransformation(GroovyClassLoader loader,
        DependencyResolutionContext dependencyResolutionContext,
        Iterable<CompilerAutoConfiguration> compilerAutoConfigurations) {
    this.loader = loader;
    this.dependencyResolutionContext = dependencyResolutionContext;
    this.compilerAutoConfigurations = compilerAutoConfigurations;

}
项目:spring-boot-concourse    文件:DependencyCustomizer.java   
/**
 * Create a new {@link DependencyCustomizer} instance.
 * @param loader the current classloader
 * @param moduleNode the current module
 * @param dependencyResolutionContext the context for dependency resolution
 */
public DependencyCustomizer(GroovyClassLoader loader, ModuleNode moduleNode,
        DependencyResolutionContext dependencyResolutionContext) {
    this.loader = loader;
    this.classNode = moduleNode.getClasses().get(0);
    this.dependencyResolutionContext = dependencyResolutionContext;
}
项目:spring-boot-concourse    文件:GroovyCompiler.java   
/**
 * Create a new {@link GroovyCompiler} instance.
 * @param configuration the compiler configuration
 */
public GroovyCompiler(final GroovyCompilerConfiguration configuration) {

    this.configuration = configuration;
    this.loader = createLoader(configuration);

    DependencyResolutionContext resolutionContext = new DependencyResolutionContext();

    AetherGrapeEngine grapeEngine = AetherGrapeEngineFactory.create(this.loader,
            configuration.getRepositoryConfiguration(), resolutionContext);

    GrapeEngineInstaller.install(grapeEngine);

    this.loader.getConfiguration()
            .addCompilationCustomizers(new CompilerAutoConfigureCustomizer());
    if (configuration.isAutoconfigure()) {
        this.compilerAutoConfigurations = ServiceLoader
                .load(CompilerAutoConfiguration.class);
    }
    else {
        this.compilerAutoConfigurations = Collections.emptySet();
    }

    this.transformations = new ArrayList<ASTTransformation>();
    this.transformations
            .add(new DependencyManagementBomTransformation(resolutionContext));
    this.transformations.add(new DependencyAutoConfigurationTransformation(
            this.loader, resolutionContext, this.compilerAutoConfigurations));
    this.transformations.add(new GroovyBeansTransformation());
    if (this.configuration.isGuessDependencies()) {
        this.transformations.add(
                new ResolveDependencyCoordinatesTransformation(resolutionContext));
    }
    for (ASTTransformation transformation : ServiceLoader
            .load(SpringBootAstTransformation.class)) {
        this.transformations.add(transformation);
    }
    Collections.sort(this.transformations, AnnotationAwareOrderComparator.INSTANCE);
}
项目:contestparser    文件:DependencyAutoConfigurationTransformation.java   
public DependencyAutoConfigurationTransformation(GroovyClassLoader loader,
        DependencyResolutionContext dependencyResolutionContext,
        Iterable<CompilerAutoConfiguration> compilerAutoConfigurations) {
    this.loader = loader;
    this.dependencyResolutionContext = dependencyResolutionContext;
    this.compilerAutoConfigurations = compilerAutoConfigurations;

}
项目:contestparser    文件:DependencyCustomizer.java   
/**
 * Create a new {@link DependencyCustomizer} instance.
 * @param loader the current classloader
 * @param moduleNode the current module
 * @param dependencyResolutionContext the context for dependency resolution
 */
public DependencyCustomizer(GroovyClassLoader loader, ModuleNode moduleNode,
        DependencyResolutionContext dependencyResolutionContext) {
    this.loader = loader;
    this.classNode = moduleNode.getClasses().get(0);
    this.dependencyResolutionContext = dependencyResolutionContext;
}
项目:contestparser    文件:GroovyCompiler.java   
/**
 * Create a new {@link GroovyCompiler} instance.
 * @param configuration the compiler configuration
 */
public GroovyCompiler(final GroovyCompilerConfiguration configuration) {

    this.configuration = configuration;
    this.loader = createLoader(configuration);

    DependencyResolutionContext resolutionContext = new DependencyResolutionContext();

    AetherGrapeEngine grapeEngine = AetherGrapeEngineFactory.create(this.loader,
            configuration.getRepositoryConfiguration(), resolutionContext);

    GrapeEngineInstaller.install(grapeEngine);

    this.loader.getConfiguration()
            .addCompilationCustomizers(new CompilerAutoConfigureCustomizer());
    if (configuration.isAutoconfigure()) {
        this.compilerAutoConfigurations = ServiceLoader
                .load(CompilerAutoConfiguration.class);
    }
    else {
        this.compilerAutoConfigurations = Collections.emptySet();
    }

    this.transformations = new ArrayList<ASTTransformation>();
    this.transformations
            .add(new DependencyManagementBomTransformation(resolutionContext));
    this.transformations.add(new DependencyAutoConfigurationTransformation(
            this.loader, resolutionContext, this.compilerAutoConfigurations));
    this.transformations.add(new GroovyBeansTransformation());
    if (this.configuration.isGuessDependencies()) {
        this.transformations.add(
                new ResolveDependencyCoordinatesTransformation(resolutionContext));
    }
    for (ASTTransformation transformation : ServiceLoader
            .load(SpringBootAstTransformation.class)) {
        this.transformations.add(transformation);
    }
    Collections.sort(this.transformations, AnnotationAwareOrderComparator.INSTANCE);
}
项目:spring-cloud-cli    文件:LauncherCommand.java   
private URLClassLoader populateClassloader(OptionSet options)
        throws MalformedURLException {
    DependencyResolutionContext resolutionContext = new DependencyResolutionContext();

    List<RepositoryConfiguration> repositoryConfiguration = RepositoryConfigurationFactory
            .createDefaultRepositoryConfiguration();
    repositoryConfiguration.add(0, new RepositoryConfiguration("local",
            new File("repository").toURI(), true));

    boolean quiet = true;
    if (options.has(debugOption)) {
        System.setProperty("groovy.grape.report.downloads", "true");
        quiet = false;
    }

    AetherGrapeEngine grapeEngine = AetherGrapeEngineFactory.create(null,
            repositoryConfiguration, resolutionContext, quiet);

    HashMap<String, Object> dependency = new HashMap<>();
    dependency.put("group", "org.springframework.cloud.launcher");
    dependency.put("module", "spring-cloud-launcher-deployer");
    dependency.put("version", getVersion());
    dependency.put("transitive", false);
    URI[] uris = grapeEngine.resolve(null, dependency);
    URLClassLoader loader = new URLClassLoader(new URL[] { uris[0].toURL() },
            getClass().getClassLoader().getParent().getParent());
    log.debug("resolved URIs " + Arrays.asList(loader.getURLs()));
    return loader;
}
项目:https-github.com-g0t4-jenkins2-course-spring-boot    文件:DependencyManagementBomTransformation.java   
public DependencyManagementBomTransformation(
        DependencyResolutionContext resolutionContext) {
    super(DEPENDENCY_MANAGEMENT_BOM_ANNOTATION_NAMES, true);
    this.resolutionContext = resolutionContext;
}
项目:https-github.com-g0t4-jenkins2-course-spring-boot    文件:ResolveDependencyCoordinatesTransformation.java   
public ResolveDependencyCoordinatesTransformation(
        DependencyResolutionContext resolutionContext) {
    super(GRAB_ANNOTATION_NAMES, false);
    this.resolutionContext = resolutionContext;
}
项目:spring-boot-concourse    文件:DependencyManagementBomTransformation.java   
public DependencyManagementBomTransformation(
        DependencyResolutionContext resolutionContext) {
    super(DEPENDENCY_MANAGEMENT_BOM_ANNOTATION_NAMES, true);
    this.resolutionContext = resolutionContext;
}
项目:spring-boot-concourse    文件:ResolveDependencyCoordinatesTransformation.java   
public ResolveDependencyCoordinatesTransformation(
        DependencyResolutionContext resolutionContext) {
    super(GRAB_ANNOTATION_NAMES, false);
    this.resolutionContext = resolutionContext;
}
项目:contestparser    文件:DependencyManagementBomTransformation.java   
public DependencyManagementBomTransformation(
        DependencyResolutionContext resolutionContext) {
    super(DEPENDENCY_MANAGEMENT_BOM_ANNOTATION_NAMES, true);
    this.resolutionContext = resolutionContext;
}
项目:contestparser    文件:ResolveDependencyCoordinatesTransformation.java   
public ResolveDependencyCoordinatesTransformation(
        DependencyResolutionContext resolutionContext) {
    super(GRAB_ANNOTATION_NAMES, false);
    this.resolutionContext = resolutionContext;
}
项目:mvn-classloader    文件:DefaultAetherGrapeEngine.java   
public DefaultAetherGrapeEngine() {
    groovyClassLoader = getGroovyClassLoader();
    grapeEngine = AetherGrapeEngineFactory.create(groovyClassLoader,
            RepositoryConfigurationFactory.createDefaultRepositoryConfiguration(),
            new DependencyResolutionContext());
}
项目:https-github.com-g0t4-jenkins2-course-spring-boot    文件:DependencyCustomizer.java   
/**
 * Returns the {@link DependencyResolutionContext}.
 * @return the dependency resolution context
 */
public DependencyResolutionContext getDependencyResolutionContext() {
    return this.dependencyResolutionContext;
}
项目:spring-boot-concourse    文件:DependencyCustomizer.java   
/**
 * Returns the {@link DependencyResolutionContext}.
 * @return the dependency resolution context
 */
public DependencyResolutionContext getDependencyResolutionContext() {
    return this.dependencyResolutionContext;
}
项目:contestparser    文件:DependencyCustomizer.java   
/**
 * Returns the {@link DependencyResolutionContext}.
 * @return the dependency resolution context
 */
public DependencyResolutionContext getDependencyResolutionContext() {
    return this.dependencyResolutionContext;
}