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

dk.nstack.kotlin.plugin.Util.groovy Maven / Gradle / Ivy

There is a newer version: 3.3.0
Show newest version
package dk.nstack.kotlin.plugin

class Util {

    static String getTextFromUrl(String url) throws IOException {
        def inputFile = new URL(url)

        return inputFile.getText(requestProperties: [
                'Accept-Language' : TranslationPlugin.project.translation.acceptHeader,
                'X-Application-Id': TranslationPlugin.project.translation.appId,
                'X-Rest-Api-Key'  : TranslationPlugin.project.translation.apiKey,
                'N-Meta'          : 'androidstudio;debug;1.0;1.0;gradleplugin'
        ])
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy