com.github.dynamicextensionsalfresco.gradle.configuration.Endpoint.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-plugin Show documentation
Show all versions of gradle-plugin Show documentation
Adds an OSGi container to alfresco repository supporting dynamic code reloading, classpath isolation and a bunch of other useful features
package com.github.dynamicextensionsalfresco.gradle.configuration
/**
* @author Laurent Van der Linden
*/
class Endpoint {
String host = "localhost"
String port = "8080"
String serviceUrl = "/alfresco/service"
String protocol = "http"
URL getUrl() {
new URL("$protocol://$host:$port/${serviceUrl.replaceAll(/^\//, "")}")
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy