vaadin-groovy-builder-v14.2

Vaadin Groovy Builder, Groovy extensions/DSL for Vaadin

License

License

Categories

Categories

Groovy Languages Vaadin User Interface Web Frameworks
GroupId

GroupId

com.github.mvysny.vaadin-groovy-builder
ArtifactId

ArtifactId

vaadin-groovy-builder-v14.2
Last Version

Last Version

0.0.8
Release Date

Release Date

Type

Type

jar
Description

Description

vaadin-groovy-builder-v14.2
Vaadin Groovy Builder, Groovy extensions/DSL for Vaadin
Project URL

Project URL

https://github.com/mvysny/vaadin-groovy-builder
Source Code Management

Source Code Management

https://github.com/mvysny/vaadin-groovy-builder

Download vaadin-groovy-builder-v14.2

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.mvysny.vaadin-groovy-builder/vaadin-groovy-builder-v14.2/ -->
<dependency>
    <groupId>com.github.mvysny.vaadin-groovy-builder</groupId>
    <artifactId>vaadin-groovy-builder-v14.2</artifactId>
    <version>0.0.8</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.mvysny.vaadin-groovy-builder/vaadin-groovy-builder-v14.2/
implementation 'com.github.mvysny.vaadin-groovy-builder:vaadin-groovy-builder-v14.2:0.0.8'
// https://jarcasting.com/artifacts/com.github.mvysny.vaadin-groovy-builder/vaadin-groovy-builder-v14.2/
implementation ("com.github.mvysny.vaadin-groovy-builder:vaadin-groovy-builder-v14.2:0.0.8")
'com.github.mvysny.vaadin-groovy-builder:vaadin-groovy-builder-v14.2:jar:0.0.8'
<dependency org="com.github.mvysny.vaadin-groovy-builder" name="vaadin-groovy-builder-v14.2" rev="0.0.8">
  <artifact name="vaadin-groovy-builder-v14.2" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.mvysny.vaadin-groovy-builder', module='vaadin-groovy-builder-v14.2', version='0.0.8')
)
libraryDependencies += "com.github.mvysny.vaadin-groovy-builder" % "vaadin-groovy-builder-v14.2" % "0.0.8"
[com.github.mvysny.vaadin-groovy-builder/vaadin-groovy-builder-v14.2 "0.0.8"]

Dependencies

compile (3)

Group / Artifact Type Version
com.github.mvysny.vaadin-groovy-builder : vaadin-groovy-builder-v14 jar 0.0.8
com.intellij : annotations jar 12.0
javax.validation : validation-api jar 2.0.1.Final

runtime (2)

Group / Artifact Type Version
org.hibernate.validator : hibernate-validator jar 6.1.2.Final
org.glassfish : javax.el jar 3.0.1-b08

Project Modules

There are no modules declared in this project.

GitHub tag Maven Central Java CI

Vaadin Groovy Builder (Vaadin Groovy Extensions)

This is a Groovy extensions and DSL library for the Vaadin framework.

This library:

The full documentation:

Note: For Kotlin Vaadin DSL please see the Karibu-DSL library.

Example Project

See Vaadin Groovy Builder Example. Code example:

@Route("")
@CompileStatic
class MainView extends GComposite {
    private TextField name
    private Button sayHello
    private def root = ui {
        verticalLayout {
            name = textField("Your name") {}
            sayHello = button("Say hello") {}
        }
    }
    MainView() {
        sayHello.addClickListener {
            Notification.show("Hello, ${name.value}")
        }
    }
}

License

Licensed under the MIT License.

Copyright (c) 2017-2018 Martin Vysny

All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Versions

Version
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4