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

org.wisepersist.gradle.plugins.gwt.GwtPluginExtension Maven / Gradle / Ivy

There is a newer version: 1.1.19
Show newest version
/**
 * Copyright (C) 2013-2017 Steffen Schaefer
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.wisepersist.gradle.plugins.gwt;

import groovy.lang.Closure;
import java.io.File;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.gradle.api.file.FileCollection;
import org.gradle.api.tasks.Optional;
import org.gradle.util.ConfigureUtil;
import org.wisepersist.gradle.plugins.gwt.internal.GwtCompileOptionsImpl;
import org.wisepersist.gradle.plugins.gwt.internal.GwtDevOptionsImpl;
import org.wisepersist.gradle.plugins.gwt.internal.GwtJsInteropExportsOptionsImpl;
import org.wisepersist.gradle.plugins.gwt.internal.GwtSuperDevOptionsImpl;

public class GwtPluginExtension {

  private String gwtVersion;
  private boolean codeserver = true;
  private boolean elemental = false;
  private File devWar;
  private File extraDir;
  private File workDir;
  private File genDir;
  private File cacheDir;
  private LogLevel logLevel;
  private List modules = new ArrayList<>();
  private List devModules = new ArrayList<>();
  private FileCollection src;
  private String sourceLevel;
  private String modulePathPrefix;

  private Boolean incremental;
  private JsInteropMode jsInteropMode;
  private MethodNameDisplayMode methodNameDisplayMode;

  private String minHeapSize = "256M";
  private String maxHeapSize = "256M";
  private List extraJvmArgs = new ArrayList<>();

  private final GwtJsInteropExportsOptions jsInteropExports = new GwtJsInteropExportsOptionsImpl();
  private final GwtDevOptions dev = new GwtDevOptionsImpl();
  private final GwtSuperDevOptions superDev = new GwtSuperDevOptionsImpl();
  private final GwtCompileOptions compiler = new GwtCompileOptionsImpl();
  private final GwtTestOptions test = new GwtTestOptions();

  public List getModules() {
    return modules;
  }

  public void setModules(List modules) {
    this.modules.clear();
    this.modules.addAll(modules);
  }

  public void modules(String... modules) {
    this.modules.addAll(Arrays.asList(modules));
  }

  @Optional
  public String getGwtVersion() {
    return gwtVersion;
  }

  public void setGwtVersion(String gwtVersion) {
    this.gwtVersion = gwtVersion;
  }

  public boolean isCodeserver() {
    return codeserver;
  }

  public void setCodeserver(boolean codeserver) {
    this.codeserver = codeserver;
  }

  public boolean isElemental() {
    return elemental;
  }

  public void setElemental(boolean elemental) {
    this.elemental = elemental;
  }

  public List getDevModules() {
    return devModules;
  }

  public void setDevModules(List devModules) {
    this.devModules.clear();
    this.devModules.addAll(devModules);
  }

  public void devModules(String... modules) {
    this.devModules.addAll(Arrays.asList(modules));
  }

  public File getDevWar() {
    return devWar;
  }

  public void setDevWar(File devWar) {
    this.devWar = devWar;
  }

  public File getExtraDir() {
    return extraDir;
  }

  public void setExtraDir(File extraDir) {
    this.extraDir = extraDir;
  }

  public File getWorkDir() {
    return workDir;
  }

  public void setWorkDir(File workDir) {
    this.workDir = workDir;
  }

  public File getGenDir() {
    return genDir;
  }

  public void setGenDir(File genDir) {
    this.genDir = genDir;
  }

  public File getCacheDir() {
    return cacheDir;
  }

  public void setCacheDir(File cacheDir) {
    this.cacheDir = cacheDir;
  }

  public LogLevel getLogLevel() {
    return logLevel;
  }

  public void setLogLevel(LogLevel logLevel) {
    this.logLevel = logLevel;
  }

  public String getMinHeapSize() {
    return minHeapSize;
  }

  public void setMinHeapSize(String minHeapSize) {
    this.minHeapSize = minHeapSize;
  }

  public String getMaxHeapSize() {
    return maxHeapSize;
  }

  public void setMaxHeapSize(String maxHeapSize) {
    this.maxHeapSize = maxHeapSize;
  }

  public List getExtraJvmArgs() {
    return extraJvmArgs;
  }

  public void setExtraJvmArgs(List extraJvmArgs) {
    this.extraJvmArgs = extraJvmArgs;
  }

  public GwtJsInteropExportsOptions getJsInteropExports() {
    return jsInteropExports;
  }

  public GwtPluginExtension jsInteropExports(
      Closure c) {
    ConfigureUtil.configure(c, jsInteropExports);
    return this;
  }

  public GwtDevOptions getDev() {
    return dev;
  }

  public GwtPluginExtension dev(Closure c) {
    ConfigureUtil.configure(c, dev);
    return this;
  }

  public GwtSuperDevOptions getSuperDev() {
    return superDev;
  }

  public GwtPluginExtension superDev(Closure c) {
    ConfigureUtil.configure(c, superDev);
    return this;
  }

  public GwtCompileOptions getCompiler() {
    return compiler;
  }

  public GwtPluginExtension compiler(Closure c) {
    ConfigureUtil.configure(c, compiler);
    return this;
  }

  public GwtTestOptions getTest() {
    return test;
  }

  public GwtPluginExtension test(Closure c) {
    ConfigureUtil.configure(c, test);
    return this;
  }

  public FileCollection getSrc() {
    return src;
  }

  public void setSrc(FileCollection src) {
    this.src = src;
  }

  public String getSourceLevel() {
    return sourceLevel;
  }

  public void setSourceLevel(String sourceLevel) {
    this.sourceLevel = sourceLevel;
  }

  public Boolean getIncremental() {
    return incremental;
  }

  public void setIncremental(Boolean incremental) {
    this.incremental = incremental;
  }

  public JsInteropMode getJsInteropMode() {
    return jsInteropMode;
  }

  public void setJsInteropMode(JsInteropMode jsInteropMode) {
    this.jsInteropMode = jsInteropMode;
  }

  public String getModulePathPrefix() {
    return modulePathPrefix;
  }

  public void setModulePathPrefix(String modulePathPrefix) {
    this.modulePathPrefix = modulePathPrefix;
  }

  public MethodNameDisplayMode getMethodNameDisplayMode() {
    return methodNameDisplayMode;
  }

  /**
   * If set, this causes the "-XmethodNameDisplayMode" (added in GWT 2.7/2.8)
   * parameter to be added.
   *
   * @param methodNameDisplayMode The method name display mode.
   */
  public void setMethodNameDisplayMode(
      MethodNameDisplayMode methodNameDisplayMode) {
    this.methodNameDisplayMode = methodNameDisplayMode;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy