void apply()

in src/main/groovy/com/epam/atg/gradle/initializers/ProjectDependenciesExtensionInitializer.groovy [30:45]


    void apply(Project project) {
        prepareAtgDependenciesByType(project, ATGPluginConstants.API_DEPENDENCIES)
        prepareAtgDependenciesByType(project, ATGPluginConstants.API_ELEMENTS_DEPENDENCIES)
        prepareAtgDependenciesByType(project, ATGPluginConstants.COMPILE_DEPENDENCIES)
        prepareAtgDependenciesByType(project, ATGPluginConstants.COMPILE_CLASSPATH_DEPENDENCIES)
        prepareAtgDependenciesByType(project, ATGPluginConstants.COMPILE_ONLY_DEPENDENCIES)
        prepareAtgDependenciesByType(project, ATGPluginConstants.IMPLEMENTATION_DEPENDENCIES)
        prepareAtgDependenciesByType(project, ATGPluginConstants.RUNTIME_CLASSPATH_DEPENDENCIES)
        prepareAtgDependenciesByType(project, ATGPluginConstants.RUNTIME_ELEMENTS_DEPENDENCIES)
        prepareAtgDependenciesByType(project, ATGPluginConstants.RUNTIME_ONLY_DEPENDENCIES)
        prepareAtgDependenciesByType(project, ATGPluginConstants.TEST_COMPILE_CLASSPATH_DEPENDENCIES)
        prepareAtgDependenciesByType(project, ATGPluginConstants.TEST_COMPILE_DEPENDENCIES)
        prepareAtgDependenciesByType(project, ATGPluginConstants.TEST_COMPILE_ONLY_DEPENDENCIES)
        prepareAtgDependenciesByType(project, ATGPluginConstants.TEST_IMPLEMENTATION_DEPENDENCIES)
        prepareAtgDependenciesByType(project, ATGPluginConstants.TEST_RUNTIME_CLASSPATH_DEPENDENCIES)
    }