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

com.github.dynamicextensionsalfresco.gradle.configuration.BaseConfig.groovy Maven / Gradle / Ivy

Go to download

Adds an OSGi container to alfresco repository supporting dynamic code reloading, classpath isolation and a bunch of other useful features

There is a newer version: 1.7.6
Show newest version
package com.github.dynamicextensionsalfresco.gradle.configuration

import org.gradle.api.Project

/**
 * @author Laurent Van der Linden
 */
class BaseConfig {
    Repository repository = new Repository(project)
    Versions versions = new Versions()

    Project project

    BaseConfig(Project project) {
        this.project = project
    }

    def repository(Closure closure) {
        project.configure(repository, closure)
    }

    def versions(Closure closure) {
        project.configure(versions, closure)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy