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

com.playtika.testcontainer.common.spring.DependsOnDockerPostProcessor Maven / Gradle / Ivy

The newest version!
package com.playtika.testcontainer.common.spring;

import java.util.Collections;
import java.util.List;

import static com.playtika.testcontainer.common.spring.DockerPresenceBootstrapConfiguration.DOCKER_IS_AVAILABLE;

public class DependsOnDockerPostProcessor extends AbstractDependsOnPostProcessor {

    public DependsOnDockerPostProcessor(Class beansOfType) {
        super(beansOfType, DOCKER_IS_AVAILABLE);
    }

    @Override
    protected List getDefaultDependsOn() {
        return Collections.emptyList();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy