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

com.github.ksoichiro.web.resource.extension.WebResourceProcessor.groovy Maven / Gradle / Ivy

package com.github.ksoichiro.web.resource.extension

import groovy.transform.ToString
import groovy.transform.TupleConstructor
import org.gradle.api.logging.LogLevel

@ToString
@TupleConstructor
class WebResourceProcessor {
    String src
    String dest
    LogLevel logLevel

    def methodMissing(String name, args) {
        this."$name" = args[0]
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy