├── .gitignore ├── .travis.yml ├── Jenkinsfile ├── LICENSE.md ├── README.md ├── config ├── checkstyle │ ├── checkstyle.xml │ └── required-header.txt └── codenarc │ └── ruleset.groovy ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle ├── src ├── functionalTest │ └── groovy │ │ └── com │ │ └── devsoap │ │ └── plugin │ │ ├── categories │ │ ├── RunProject.groovy │ │ ├── ThemeCompile.groovy │ │ ├── WidgetsetAndThemeCompile.groovy │ │ └── WidgetsetCompile.groovy │ │ └── tests │ │ ├── CompileWidgetsetTest.groovy │ │ ├── CreateAddonThemeTest.groovy │ │ ├── CreateProjectTest.groovy │ │ ├── CreateThemeTest.groovy │ │ ├── EclipseTest.groovy │ │ ├── GradleVersionTest.groovy │ │ ├── GroovyProjectTest.groovy │ │ ├── IntegrationTest.groovy │ │ ├── JavadocTest.groovy │ │ ├── KotlinIntegrationTest.groovy │ │ ├── KotlinTest.groovy │ │ ├── MultiProjectIntegrationTest.groovy │ │ ├── MultimoduleWidgetsetThemeTest.groovy │ │ ├── PluginExtensionConfigurationTest.groovy │ │ ├── PluginRestrictionsTest.groovy │ │ ├── PluginVersionCheckTest.groovy │ │ ├── ProjectDependenciesTest.groovy │ │ ├── ProxyTest.groovy │ │ ├── SpringBootTest.groovy │ │ ├── TaskConfigurationsTest.groovy │ │ ├── UpdateWidgetsetTest.groovy │ │ └── WARArchiveTest.groovy ├── main │ ├── groovy │ │ └── com │ │ │ └── devsoap │ │ │ └── plugin │ │ │ ├── GradleVaadinPlugin.groovy │ │ │ ├── MessageLogger.groovy │ │ │ ├── ProjectType.groovy │ │ │ ├── TemplateUtil.groovy │ │ │ ├── Util.groovy │ │ │ ├── actions │ │ │ ├── EclipsePluginAction.groovy │ │ │ ├── EclipseWtpPluginAction.groovy │ │ │ ├── GrettyAction.groovy │ │ │ ├── IdeaPluginAction.groovy │ │ │ ├── JavaPluginAction.groovy │ │ │ ├── PluginAction.groovy │ │ │ ├── SpringBootAction.groovy │ │ │ ├── VaadinPluginAction.groovy │ │ │ ├── WarPluginAction.groovy │ │ │ └── package-info.groovy │ │ │ ├── creators │ │ │ ├── AddonThemeCreator.groovy │ │ │ ├── ComponentCreator.groovy │ │ │ ├── ProjectCreator.groovy │ │ │ ├── ThemeCreator.groovy │ │ │ └── package-info.groovy │ │ │ ├── extensions │ │ │ ├── AddonExtension.groovy │ │ │ ├── SpringBootExtension.groovy │ │ │ ├── TestBenchExtension.groovy │ │ │ ├── TestBenchHubExtension.groovy │ │ │ ├── TestBenchNodeExtension.groovy │ │ │ ├── VaadinPluginExtension.groovy │ │ │ ├── WidgetsetCDNExtension.groovy │ │ │ └── package-info.groovy │ │ │ ├── package-info.groovy │ │ │ ├── servers │ │ │ ├── ApplicationServer.groovy │ │ │ ├── JettyApplicationServer.groovy │ │ │ ├── PayaraApplicationServer.groovy │ │ │ └── package-info.groovy │ │ │ ├── tasks │ │ │ ├── BuildClassPathJar.groovy │ │ │ ├── BuildJavadocJarTask.groovy │ │ │ ├── BuildSourcesJarTask.groovy │ │ │ ├── CompileThemeTask.groovy │ │ │ ├── CompileWidgetsetTask.groovy │ │ │ ├── CompressCssTask.groovy │ │ │ ├── CreateAddonProjectTask.groovy │ │ │ ├── CreateAddonThemeTask.groovy │ │ │ ├── CreateComponentTask.groovy │ │ │ ├── CreateCompositeTask.groovy │ │ │ ├── CreateDesignTask.groovy │ │ │ ├── CreateDirectoryZipTask.groovy │ │ │ ├── CreateProjectTask.groovy │ │ │ ├── CreateTestbenchTestTask.groovy │ │ │ ├── CreateThemeTask.groovy │ │ │ ├── CreateWidgetsetGeneratorTask.groovy │ │ │ ├── DevModeTask.groovy │ │ │ ├── DirectorySearchTask.groovy │ │ │ ├── RunTask.groovy │ │ │ ├── SuperDevModeTask.groovy │ │ │ ├── UpdateAddonStylesTask.groovy │ │ │ ├── UpdateWidgetsetTask.groovy │ │ │ ├── VersionCheckTask.groovy │ │ │ └── package-info.groovy │ │ │ └── testbench │ │ │ ├── TestbenchHub.groovy │ │ │ ├── TestbenchNode.groovy │ │ │ └── package-info.groovy │ ├── java │ │ └── com │ │ │ └── devsoap │ │ │ └── plugin │ │ │ ├── JettyServerRunner.java │ │ │ ├── LibSassCompiler.java │ │ │ └── PayaraServerRunner.java │ └── resources │ │ ├── META-INF │ │ └── gradle-plugins │ │ │ └── com.devsoap.plugin.vaadin.properties │ │ ├── favicon.ico │ │ ├── templates │ │ ├── AppWidgetset.groovy.template │ │ ├── AppWidgetset.java.template │ │ ├── AppWidgetset.kt.template │ │ ├── MyComponent.java.template │ │ ├── MyComponentConnector.java.template │ │ ├── MyComponentWidget.java.template │ │ ├── MyComposite.groovy.template │ │ ├── MyComposite.java.template │ │ ├── MyComposite.kt.template │ │ ├── MyConnectorBundleLoaderFactory.groovy.template │ │ ├── MyConnectorBundleLoaderFactory.java.template │ │ ├── MyConnectorBundleLoaderFactory.kt.template │ │ ├── MyDesign.html.template │ │ ├── MyDesign.java.template │ │ ├── MyDesignImpl.groovy.template │ │ ├── MyDesignImpl.java.template │ │ ├── MyDesignImpl.kt.template │ │ ├── MyTest.groovy.template │ │ ├── MyTest.java.template │ │ ├── MyTheme.scss.template │ │ ├── Widgetset.xml.template │ │ ├── addonProject │ │ │ ├── AddonWidgetset.xml.template │ │ │ ├── MyServlet.java.template │ │ │ ├── MyUI.java.template │ │ │ ├── addon.gradle.template │ │ │ ├── beans.xml.template │ │ │ ├── demo.gradle.template │ │ │ ├── myaddon.scss.template │ │ │ └── settings.gradle.template │ │ ├── myaddon.scss.template │ │ ├── simpleProject │ │ │ ├── MyServlet.groovy.template │ │ │ ├── MyServlet.java.template │ │ │ ├── MyServlet.kt.template │ │ │ ├── MyUI.groovy.template │ │ │ ├── MyUI.java.template │ │ │ ├── MyUI.kt.template │ │ │ ├── SpringBootApplication.groovy.template │ │ │ ├── SpringBootApplication.java.template │ │ │ ├── SpringBootApplication.kt.template │ │ │ └── beans.xml.template │ │ └── styles.scss.template │ │ └── vaadin_plugin.properties └── test │ └── resources │ ├── log4j.properties │ └── templates │ ├── MyTestTemplate.java.template │ ├── SpringBootApplication.java.template │ └── SpringBootUI.java.template └── vaadin-development.plugin /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/README.md -------------------------------------------------------------------------------- /config/checkstyle/checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/config/checkstyle/checkstyle.xml -------------------------------------------------------------------------------- /config/checkstyle/required-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/config/checkstyle/required-header.txt -------------------------------------------------------------------------------- /config/codenarc/ruleset.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/config/codenarc/ruleset.groovy -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | 2 | rootProject.name = 'gradle-vaadin-plugin' 3 | -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/devsoap/plugin/categories/RunProject.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/functionalTest/groovy/com/devsoap/plugin/categories/RunProject.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/devsoap/plugin/categories/ThemeCompile.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/functionalTest/groovy/com/devsoap/plugin/categories/ThemeCompile.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/devsoap/plugin/categories/WidgetsetAndThemeCompile.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/functionalTest/groovy/com/devsoap/plugin/categories/WidgetsetAndThemeCompile.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/devsoap/plugin/categories/WidgetsetCompile.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/functionalTest/groovy/com/devsoap/plugin/categories/WidgetsetCompile.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/devsoap/plugin/tests/CompileWidgetsetTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/functionalTest/groovy/com/devsoap/plugin/tests/CompileWidgetsetTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/devsoap/plugin/tests/CreateAddonThemeTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/functionalTest/groovy/com/devsoap/plugin/tests/CreateAddonThemeTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/devsoap/plugin/tests/CreateProjectTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/functionalTest/groovy/com/devsoap/plugin/tests/CreateProjectTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/devsoap/plugin/tests/CreateThemeTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/functionalTest/groovy/com/devsoap/plugin/tests/CreateThemeTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/devsoap/plugin/tests/EclipseTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/functionalTest/groovy/com/devsoap/plugin/tests/EclipseTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/devsoap/plugin/tests/GradleVersionTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/functionalTest/groovy/com/devsoap/plugin/tests/GradleVersionTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/devsoap/plugin/tests/GroovyProjectTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/functionalTest/groovy/com/devsoap/plugin/tests/GroovyProjectTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/devsoap/plugin/tests/IntegrationTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/functionalTest/groovy/com/devsoap/plugin/tests/IntegrationTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/devsoap/plugin/tests/JavadocTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/functionalTest/groovy/com/devsoap/plugin/tests/JavadocTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/devsoap/plugin/tests/KotlinIntegrationTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/functionalTest/groovy/com/devsoap/plugin/tests/KotlinIntegrationTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/devsoap/plugin/tests/KotlinTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/functionalTest/groovy/com/devsoap/plugin/tests/KotlinTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/devsoap/plugin/tests/MultiProjectIntegrationTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/functionalTest/groovy/com/devsoap/plugin/tests/MultiProjectIntegrationTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/devsoap/plugin/tests/MultimoduleWidgetsetThemeTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/functionalTest/groovy/com/devsoap/plugin/tests/MultimoduleWidgetsetThemeTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/devsoap/plugin/tests/PluginExtensionConfigurationTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/functionalTest/groovy/com/devsoap/plugin/tests/PluginExtensionConfigurationTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/devsoap/plugin/tests/PluginRestrictionsTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/functionalTest/groovy/com/devsoap/plugin/tests/PluginRestrictionsTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/devsoap/plugin/tests/PluginVersionCheckTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/functionalTest/groovy/com/devsoap/plugin/tests/PluginVersionCheckTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/devsoap/plugin/tests/ProjectDependenciesTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/functionalTest/groovy/com/devsoap/plugin/tests/ProjectDependenciesTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/devsoap/plugin/tests/ProxyTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/functionalTest/groovy/com/devsoap/plugin/tests/ProxyTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/devsoap/plugin/tests/SpringBootTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/functionalTest/groovy/com/devsoap/plugin/tests/SpringBootTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/devsoap/plugin/tests/TaskConfigurationsTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/functionalTest/groovy/com/devsoap/plugin/tests/TaskConfigurationsTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/devsoap/plugin/tests/UpdateWidgetsetTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/functionalTest/groovy/com/devsoap/plugin/tests/UpdateWidgetsetTest.groovy -------------------------------------------------------------------------------- /src/functionalTest/groovy/com/devsoap/plugin/tests/WARArchiveTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/functionalTest/groovy/com/devsoap/plugin/tests/WARArchiveTest.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/GradleVaadinPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/GradleVaadinPlugin.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/MessageLogger.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/MessageLogger.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/ProjectType.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/ProjectType.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/TemplateUtil.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/TemplateUtil.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/Util.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/Util.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/actions/EclipsePluginAction.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/actions/EclipsePluginAction.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/actions/EclipseWtpPluginAction.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/actions/EclipseWtpPluginAction.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/actions/GrettyAction.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/actions/GrettyAction.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/actions/IdeaPluginAction.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/actions/IdeaPluginAction.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/actions/JavaPluginAction.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/actions/JavaPluginAction.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/actions/PluginAction.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/actions/PluginAction.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/actions/SpringBootAction.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/actions/SpringBootAction.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/actions/VaadinPluginAction.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/actions/VaadinPluginAction.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/actions/WarPluginAction.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/actions/WarPluginAction.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/actions/package-info.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/actions/package-info.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/creators/AddonThemeCreator.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/creators/AddonThemeCreator.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/creators/ComponentCreator.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/creators/ComponentCreator.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/creators/ProjectCreator.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/creators/ProjectCreator.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/creators/ThemeCreator.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/creators/ThemeCreator.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/creators/package-info.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/creators/package-info.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/extensions/AddonExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/extensions/AddonExtension.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/extensions/SpringBootExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/extensions/SpringBootExtension.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/extensions/TestBenchExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/extensions/TestBenchExtension.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/extensions/TestBenchHubExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/extensions/TestBenchHubExtension.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/extensions/TestBenchNodeExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/extensions/TestBenchNodeExtension.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/extensions/VaadinPluginExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/extensions/VaadinPluginExtension.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/extensions/WidgetsetCDNExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/extensions/WidgetsetCDNExtension.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/extensions/package-info.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/extensions/package-info.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/package-info.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/package-info.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/servers/ApplicationServer.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/servers/ApplicationServer.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/servers/JettyApplicationServer.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/servers/JettyApplicationServer.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/servers/PayaraApplicationServer.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/servers/PayaraApplicationServer.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/servers/package-info.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/servers/package-info.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/tasks/BuildClassPathJar.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/tasks/BuildClassPathJar.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/tasks/BuildJavadocJarTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/tasks/BuildJavadocJarTask.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/tasks/BuildSourcesJarTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/tasks/BuildSourcesJarTask.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/tasks/CompileThemeTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/tasks/CompileThemeTask.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/tasks/CompileWidgetsetTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/tasks/CompileWidgetsetTask.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/tasks/CompressCssTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/tasks/CompressCssTask.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/tasks/CreateAddonProjectTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/tasks/CreateAddonProjectTask.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/tasks/CreateAddonThemeTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/tasks/CreateAddonThemeTask.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/tasks/CreateComponentTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/tasks/CreateComponentTask.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/tasks/CreateCompositeTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/tasks/CreateCompositeTask.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/tasks/CreateDesignTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/tasks/CreateDesignTask.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/tasks/CreateDirectoryZipTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/tasks/CreateDirectoryZipTask.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/tasks/CreateProjectTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/tasks/CreateProjectTask.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/tasks/CreateTestbenchTestTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/tasks/CreateTestbenchTestTask.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/tasks/CreateThemeTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/tasks/CreateThemeTask.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/tasks/CreateWidgetsetGeneratorTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/tasks/CreateWidgetsetGeneratorTask.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/tasks/DevModeTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/tasks/DevModeTask.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/tasks/DirectorySearchTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/tasks/DirectorySearchTask.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/tasks/RunTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/tasks/RunTask.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/tasks/SuperDevModeTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/tasks/SuperDevModeTask.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/tasks/UpdateAddonStylesTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/tasks/UpdateAddonStylesTask.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/tasks/UpdateWidgetsetTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/tasks/UpdateWidgetsetTask.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/tasks/VersionCheckTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/tasks/VersionCheckTask.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/tasks/package-info.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/tasks/package-info.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/testbench/TestbenchHub.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/testbench/TestbenchHub.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/testbench/TestbenchNode.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/testbench/TestbenchNode.groovy -------------------------------------------------------------------------------- /src/main/groovy/com/devsoap/plugin/testbench/package-info.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/groovy/com/devsoap/plugin/testbench/package-info.groovy -------------------------------------------------------------------------------- /src/main/java/com/devsoap/plugin/JettyServerRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/java/com/devsoap/plugin/JettyServerRunner.java -------------------------------------------------------------------------------- /src/main/java/com/devsoap/plugin/LibSassCompiler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/java/com/devsoap/plugin/LibSassCompiler.java -------------------------------------------------------------------------------- /src/main/java/com/devsoap/plugin/PayaraServerRunner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/java/com/devsoap/plugin/PayaraServerRunner.java -------------------------------------------------------------------------------- /src/main/resources/META-INF/gradle-plugins/com.devsoap.plugin.vaadin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/META-INF/gradle-plugins/com.devsoap.plugin.vaadin.properties -------------------------------------------------------------------------------- /src/main/resources/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/favicon.ico -------------------------------------------------------------------------------- /src/main/resources/templates/AppWidgetset.groovy.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/AppWidgetset.groovy.template -------------------------------------------------------------------------------- /src/main/resources/templates/AppWidgetset.java.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/AppWidgetset.java.template -------------------------------------------------------------------------------- /src/main/resources/templates/AppWidgetset.kt.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/AppWidgetset.kt.template -------------------------------------------------------------------------------- /src/main/resources/templates/MyComponent.java.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/MyComponent.java.template -------------------------------------------------------------------------------- /src/main/resources/templates/MyComponentConnector.java.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/MyComponentConnector.java.template -------------------------------------------------------------------------------- /src/main/resources/templates/MyComponentWidget.java.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/MyComponentWidget.java.template -------------------------------------------------------------------------------- /src/main/resources/templates/MyComposite.groovy.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/MyComposite.groovy.template -------------------------------------------------------------------------------- /src/main/resources/templates/MyComposite.java.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/MyComposite.java.template -------------------------------------------------------------------------------- /src/main/resources/templates/MyComposite.kt.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/MyComposite.kt.template -------------------------------------------------------------------------------- /src/main/resources/templates/MyConnectorBundleLoaderFactory.groovy.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/MyConnectorBundleLoaderFactory.groovy.template -------------------------------------------------------------------------------- /src/main/resources/templates/MyConnectorBundleLoaderFactory.java.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/MyConnectorBundleLoaderFactory.java.template -------------------------------------------------------------------------------- /src/main/resources/templates/MyConnectorBundleLoaderFactory.kt.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/MyConnectorBundleLoaderFactory.kt.template -------------------------------------------------------------------------------- /src/main/resources/templates/MyDesign.html.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/MyDesign.html.template -------------------------------------------------------------------------------- /src/main/resources/templates/MyDesign.java.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/MyDesign.java.template -------------------------------------------------------------------------------- /src/main/resources/templates/MyDesignImpl.groovy.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/MyDesignImpl.groovy.template -------------------------------------------------------------------------------- /src/main/resources/templates/MyDesignImpl.java.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/MyDesignImpl.java.template -------------------------------------------------------------------------------- /src/main/resources/templates/MyDesignImpl.kt.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/MyDesignImpl.kt.template -------------------------------------------------------------------------------- /src/main/resources/templates/MyTest.groovy.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/MyTest.groovy.template -------------------------------------------------------------------------------- /src/main/resources/templates/MyTest.java.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/MyTest.java.template -------------------------------------------------------------------------------- /src/main/resources/templates/MyTheme.scss.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/MyTheme.scss.template -------------------------------------------------------------------------------- /src/main/resources/templates/Widgetset.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/Widgetset.xml.template -------------------------------------------------------------------------------- /src/main/resources/templates/addonProject/AddonWidgetset.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/addonProject/AddonWidgetset.xml.template -------------------------------------------------------------------------------- /src/main/resources/templates/addonProject/MyServlet.java.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/addonProject/MyServlet.java.template -------------------------------------------------------------------------------- /src/main/resources/templates/addonProject/MyUI.java.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/addonProject/MyUI.java.template -------------------------------------------------------------------------------- /src/main/resources/templates/addonProject/addon.gradle.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/addonProject/addon.gradle.template -------------------------------------------------------------------------------- /src/main/resources/templates/addonProject/beans.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/addonProject/beans.xml.template -------------------------------------------------------------------------------- /src/main/resources/templates/addonProject/demo.gradle.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/addonProject/demo.gradle.template -------------------------------------------------------------------------------- /src/main/resources/templates/addonProject/myaddon.scss.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/addonProject/myaddon.scss.template -------------------------------------------------------------------------------- /src/main/resources/templates/addonProject/settings.gradle.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/addonProject/settings.gradle.template -------------------------------------------------------------------------------- /src/main/resources/templates/myaddon.scss.template: -------------------------------------------------------------------------------- 1 | @mixin ${themeName} { 2 | 3 | // Add addon styles here 4 | } -------------------------------------------------------------------------------- /src/main/resources/templates/simpleProject/MyServlet.groovy.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/simpleProject/MyServlet.groovy.template -------------------------------------------------------------------------------- /src/main/resources/templates/simpleProject/MyServlet.java.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/simpleProject/MyServlet.java.template -------------------------------------------------------------------------------- /src/main/resources/templates/simpleProject/MyServlet.kt.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/simpleProject/MyServlet.kt.template -------------------------------------------------------------------------------- /src/main/resources/templates/simpleProject/MyUI.groovy.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/simpleProject/MyUI.groovy.template -------------------------------------------------------------------------------- /src/main/resources/templates/simpleProject/MyUI.java.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/simpleProject/MyUI.java.template -------------------------------------------------------------------------------- /src/main/resources/templates/simpleProject/MyUI.kt.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/simpleProject/MyUI.kt.template -------------------------------------------------------------------------------- /src/main/resources/templates/simpleProject/SpringBootApplication.groovy.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/simpleProject/SpringBootApplication.groovy.template -------------------------------------------------------------------------------- /src/main/resources/templates/simpleProject/SpringBootApplication.java.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/simpleProject/SpringBootApplication.java.template -------------------------------------------------------------------------------- /src/main/resources/templates/simpleProject/SpringBootApplication.kt.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/simpleProject/SpringBootApplication.kt.template -------------------------------------------------------------------------------- /src/main/resources/templates/simpleProject/beans.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/simpleProject/beans.xml.template -------------------------------------------------------------------------------- /src/main/resources/templates/styles.scss.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/templates/styles.scss.template -------------------------------------------------------------------------------- /src/main/resources/vaadin_plugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/main/resources/vaadin_plugin.properties -------------------------------------------------------------------------------- /src/test/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/test/resources/log4j.properties -------------------------------------------------------------------------------- /src/test/resources/templates/MyTestTemplate.java.template: -------------------------------------------------------------------------------- 1 | The quick ${color} fox jumps over the lazy ${obsticle} -------------------------------------------------------------------------------- /src/test/resources/templates/SpringBootApplication.java.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/test/resources/templates/SpringBootApplication.java.template -------------------------------------------------------------------------------- /src/test/resources/templates/SpringBootUI.java.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/src/test/resources/templates/SpringBootUI.java.template -------------------------------------------------------------------------------- /vaadin-development.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndevs/gradle-vaadin-plugin/HEAD/vaadin-development.plugin --------------------------------------------------------------------------------