
com.darylteo.vertx.gradle.configuration.PlatformConfiguration.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vertx-gradle-plugin Show documentation
Show all versions of vertx-gradle-plugin Show documentation
A Gradle Plugin for building, assembling and running Vert.x projects.
The newest version!
package com.darylteo.vertx.gradle.configuration
import org.gradle.api.Project
class PlatformConfiguration {
Project project
String version
String toolsVersion
def lang
PlatformConfiguration(Project project) {
this.project = project
}
def version(String version) {
this.setVersion(version)
}
def setVersion(String version) {
this.version = version
}
def tools(String version) {
this.toolsVersion = version
}
def lang(String language) {
this.lang = language
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy