Cannot compile WidgetSet

hello everyone. I’M having a problem compiling vaadin widgetset. Below you will find my pom.xml the widgetSet.xml and the error log.

widgetset.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.5.1//EN"
        "http://google-web-toolkit.googlecode.com/svn/tags/2.5.1/distro-source/core/src/gwt-module.dtd">
<module>
    <inherits name="com.vaadin.DefaultWidgetSet"/>

    <inherits name="org.vaadin.peter.contextmenu.ContextmenuWidgetset" />

    


    <inherits name="fi.jasoft.dragdroplayouts.DragDropLayoutsWidgetSet" />

    <inherits name="com.vaadin.pekka.resizablecsslayout.WidgetSet" />

    <inherits name="com.vaadin.addon.charts.Widgetset" />

    <inherits name="org.vaadin.teemu.ratingstars.gwt.RatingStarsWidgetset" />

    <inherits name="org.vaadin.sparklines.SparklinesWidgetset" />

    <inherits name="org.vaadin.grid.cellrenderers.RenderersCollectionWidgetSet" />

    <inherits name="org.vaadin.addon.leaflet.Widgetset" />

    

    <inherits name="com.fullbit.widgets.FullbitWidgetsWidgetset" />
</module>

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <parent>
    <artifactId>airportiq-middleware</artifactId>
    <groupId>com.slot</groupId>
    <version>0.0.1-SNAPSHOT</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>

  <artifactId>airportiq-middleware-widgetset</artifactId>
  <name>airportiq-middleware-widgetset</name>
  <packaging>jar</packaging>

  <dependencies>
    <!-- Versions for these are configured in the parent POM -->
    <dependency>
      <groupId>com.fullbit</groupId>
      <artifactId>widgets</artifactId>
    </dependency>
    <dependency>
      <groupId>org.vaadin.addons</groupId>
      <artifactId>contextmenu</artifactId>
      <version>4.5</version>
    </dependency>
	<dependency>
	   <groupId>org.vaadin.addons</groupId>
	   <artifactId>dragdroplayouts</artifactId>
	   <version>1.3.2</version>
	</dependency>
	<dependency>
	   <groupId>com.vaadin.pekka</groupId>
	   <artifactId>resizablecsslayout</artifactId>
	   <version>1.1.0</version>
	</dependency>
	<dependency>
   		<groupId>com.vaadin.addon</groupId>
   		<artifactId>vaadin-charts</artifactId>
   		<version>3.2.0</version>
	</dependency>	
	<dependency>
	   <groupId>com.vaadin</groupId>
	   <artifactId>grid-renderers-collection-addon</artifactId>
	   <version>1.0.0</version>
	</dependency>
	<dependency>
	   <groupId>org.vaadin.addon</groupId>
	   <artifactId>v-leaflet</artifactId>
	   <version>1.0.4</version>
	</dependency>
	
    <dependency>
      <groupId>com.vaadin</groupId>
      <artifactId>vaadin-client</artifactId>
      <!-- TODO this should have scope provided once http://dev.vaadin.com/ticket/14788 is resolved -->
      <!-- <scope>provided</scope> -->
    </dependency>
    <dependency>
      <groupId>com.vaadin</groupId>
      <artifactId>vaadin-client-compiler</artifactId>
      <!-- TODO this should have scope provided once http://dev.vaadin.com/ticket/14788 is resolved -->
      <!-- <scope>provided</scope> -->
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>com.vaadin</groupId>
        <artifactId>vaadin-maven-plugin</artifactId>
        <configuration>
          <extraJvmArgs>-Xmx1024M -Xss1024k</extraJvmArgs>
          <webappDirectory>${basedir}/target/classes/VAADIN/widgetsets</webappDirectory>
          <draftCompile>true</draftCompile>
          <compileReport>false</compileReport>
          <style>DETAILED</style>
          <strict>true</strict>
        </configuration>
        <executions>
          <execution>
            <goals>
              <goal>update-widgetset</goal>
              <goal>compile</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <archive>
            <manifestEntries>
              <Vaadin-Package-Version>1</Vaadin-Package-Version>
              <Vaadin-Widgetsets>com.slot.lhsm_middleware.LhsmWidgetset</Vaadin-Widgetsets>
            </manifestEntries>
          </archive>
          <!-- Exclude some unnecessary files generated by the GWT compiler. -->
          <excludes>
            <exclude>VAADIN/gwt-unitCache/**</exclude>
            <exclude>VAADIN/widgetsets/WEB-INF/**</exclude>
          </excludes>
        </configuration>
      </plugin>
    </plugins>
  </build>

  <groupId>com.slot</groupId>
</project>

Error Log

[ERROR]
 Failed to execute goal com.vaadin:vaadin-maven-plugin:7.7.0:compile (default) on project airportiq-middleware-widgetset: Command [[
[ERROR]
 C:\Program Files\Java\jdk1.8.0_121\jre\bin\java -Xmx1024M -Xss1024k -classpath C:\Users\slot\workspace\tf\airportiq-lhsm\lhsm-middleware\airportiq-middleware-widgetset\target\classes;C:\Users\slot\workspace\tf\airportiq-lhsm\lhsm-middleware\airportiq-middleware-widgetset\src\main\java;C:\Users\slot\.m2\repository\com\fullbit\widgets\0.0.1-SNAPSHOT\widgets-0.0.1-SNAPSHOT.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-server\7.7.0\vaadin-server-7.7.0.jar;C:\Users\slot\.m2\repository\org\jsoup\jsoup\1.8.3\jsoup-1.8.3.jar;C:\Users\slot\.m2\repository\org\vaadin\addons\contextmenu\4.5\contextmenu-4.5.jar;C:\Users\slot\.m2\repository\org\vaadin\addons\dragdroplayouts\1.3.2\dragdroplayouts-1.3.2.jar;C:\Users\slot\.m2\repository\com\vaadin\pekka\resizablecsslayout\1.1.0\resizablecsslayout-1.1.0.jar;C:\Users\slot\.m2\repository\com\vaadin\addon\vaadin-charts\3.2.0\vaadin-charts-3.2.0.jar;C:\Users\slot\.m2\repository\com\vaadin\addon\vaadin-charts-model\3.2.0\vaadin-charts-model-3.2.0.jar;C:\Users\slot\.m2\repository\com\fasterxml\jackson\core\jackson-annotations\2.5.4\jackson-annotations-2.5.4.jar;C:\Users\slot\.m2\repository\commons-io\commons-io\2.4\commons-io-2.4.jar;C:\Users\slot\.m2\repository\com\vaadin\grid-renderers-collection-addon\1.0.0\grid-renderers-collection-addon-1.0.0.jar;C:\Users\slot\.m2\repository\org\vaadin\addons\sparklines\7.0.2\sparklines-7.0.2.jar;C:\Users\slot\.m2\repository\org\vaadin\addons\gwt-graphics\1.0.0\gwt-graphics-1.0.0.jar;C:\Users\slot\.m2\repository\org\vaadin\addons\ratingstars\2.1\ratingstars-2.1.jar;C:\Users\slot\.m2\repository\commons-codec\commons-codec\1.9\commons-codec-1.9.jar;C:\Users\slot\.m2\repository\org\vaadin\addon\v-leaflet\1.0.4\v-leaflet-1.0.4.jar;C:\Users\slot\.m2\repository\org\peimari\g-leaflet\1.0.5\g-leaflet-1.0.5.jar;C:\Users\slot\.m2\repository\com\vividsolutions\jts\1.13\jts-1.13.jar;C:\Users\slot\.m2\repository\com\fasterxml\jackson\core\jackson-databind\2.5.4\jackson-databind-2.5.4.jar;C:\Users\slot\.m2\repository\com\fasterxml\jackson\core\jackson-core\2.5.4\jackson-core-2.5.4.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-client\7.7.0\vaadin-client-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-shared\7.7.0\vaadin-shared-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-elemental\2.7.0.vaadin3\gwt-elemental-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-user\2.7.0.vaadin3\gwt-user-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA-sources.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-client-compiler\7.7.0\vaadin-client-compiler-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-dev\2.7.0.vaadin3\gwt-dev-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm\5.0.3\asm-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-util\5.0.3\asm-util-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-tree\5.0.3\asm-tree-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-commons\5.0.3\asm-commons-5.0.3.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-sass-compiler\0.9.13\vaadin-sass-compiler-0.9.13.jar;C:\Users\slot\.m2\repository\org\w3c\css\sac\1.3\sac-1.3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\flute\flute\1.3.0.gg2\flute-1.3.0.gg2.jar;C:\Users\slot\.m2\repository\com\yahoo\platform\yui\yuicompressor\2.4.8\yuicompressor-2.4.8.jar;C:\Users\slot\.m2\repository\rhino\js\1.7R2\js-1.7R2.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-client\7.7.0\vaadin-client-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-shared\7.7.0\vaadin-shared-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-server\7.7.0\vaadin-server-7.7.0.jar;C:\Users\slot\.m2\repository\org\jsoup\jsoup\1.8.3\jsoup-1.8.3.jar;C:\Users\slot\.m2\repository\junit\junit\4.11\junit-4.11.jar;C:\Users\slot\.m2\repository\org\hamcrest\hamcrest-core\1.3\hamcrest-core-1.3.jar;C:\Users\slot\.m2\repository\org\easymock\easymock\3.0\easymock-3.0.jar;C:\Users\slot\.m2\repository\cglib\cglib-nodep\2.2\cglib-nodep-2.2.jar;C:\Users\slot\.m2\repository\org\objenesis\objenesis\1.2\objenesis-1.2.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-elemental\2.7.0.vaadin3\gwt-elemental-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-user\2.7.0.vaadin3\gwt-user-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA-sources.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-client-compiler\7.7.0\vaadin-client-compiler-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-client\7.7.0\vaadin-client-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-shared\7.7.0\vaadin-shared-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-server\7.7.0\vaadin-server-7.7.0.jar;C:\Users\slot\.m2\repository\org\jsoup\jsoup\1.8.3\jsoup-1.8.3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-elemental\2.7.0.vaadin3\gwt-elemental-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-user\2.7.0.vaadin3\gwt-user-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA-sources.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-dev\2.7.0.vaadin3\gwt-dev-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm\5.0.3\asm-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-util\5.0.3\asm-util-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-tree\5.0.3\asm-tree-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-commons\5.0.3\asm-commons-5.0.3.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-sass-compiler\0.9.13\vaadin-sass-compiler-0.9.13.jar;C:\Users\slot\.m2\repository\org\w3c\css\sac\1.3\sac-1.3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\flute\flute\1.3.0.gg2\flute-1.3.0.gg2.jar;C:\Users\slot\.m2\repository\com\yahoo\platform\yui\yuicompressor\2.4.8\yuicompressor-2.4.8.jar;C:\Users\slot\.m2\repository\rhino\js\1.7R2\js-1.7R2.jar;C:\Users\slot\.m2\repository\junit\junit\4.11\junit-4.11.jar;C:\Users\slot\.m2\repository\org\hamcrest\hamcrest-core\1.3\hamcrest-core-1.3.jar -Dgwt.persistentunitcache=false com.google.gwt.dev.Compiler -logLevel INFO -style DETAILED -war C:\Users\slot\workspace\tf\airportiq-lhsm\lhsm-middleware\airportiq-middleware-widgetset\target\classes\VAADIN\widgetsets -localWorkers 4 -draftCompile -failOnError -XfragmentCount -1 -sourceLevel auto -gen C:\Users\slot\workspace\tf\airportiq-lhsm\lhsm-middleware\airportiq-middleware-widgetset\target\.generated com.slot.lhsm_middleware.LhsmWidgetset
[ERROR]
 ]] failed with status 1
[ERROR]
 -> [Help 1]

org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal com.vaadin:vaadin-maven-plugin:7.7.0:compile (default) on project airportiq-middleware-widgetset: Command [[
C:\Program Files\Java\jdk1.8.0_121\jre\bin\java -Xmx1024M -Xss1024k -classpath C:\Users\slot\workspace\tf\airportiq-lhsm\lhsm-middleware\airportiq-middleware-widgetset\target\classes;C:\Users\slot\workspace\tf\airportiq-lhsm\lhsm-middleware\airportiq-middleware-widgetset\src\main\java;C:\Users\slot\.m2\repository\com\fullbit\widgets\0.0.1-SNAPSHOT\widgets-0.0.1-SNAPSHOT.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-server\7.7.0\vaadin-server-7.7.0.jar;C:\Users\slot\.m2\repository\org\jsoup\jsoup\1.8.3\jsoup-1.8.3.jar;C:\Users\slot\.m2\repository\org\vaadin\addons\contextmenu\4.5\contextmenu-4.5.jar;C:\Users\slot\.m2\repository\org\vaadin\addons\dragdroplayouts\1.3.2\dragdroplayouts-1.3.2.jar;C:\Users\slot\.m2\repository\com\vaadin\pekka\resizablecsslayout\1.1.0\resizablecsslayout-1.1.0.jar;C:\Users\slot\.m2\repository\com\vaadin\addon\vaadin-charts\3.2.0\vaadin-charts-3.2.0.jar;C:\Users\slot\.m2\repository\com\vaadin\addon\vaadin-charts-model\3.2.0\vaadin-charts-model-3.2.0.jar;C:\Users\slot\.m2\repository\com\fasterxml\jackson\core\jackson-annotations\2.5.4\jackson-annotations-2.5.4.jar;C:\Users\slot\.m2\repository\commons-io\commons-io\2.4\commons-io-2.4.jar;C:\Users\slot\.m2\repository\com\vaadin\grid-renderers-collection-addon\1.0.0\grid-renderers-collection-addon-1.0.0.jar;C:\Users\slot\.m2\repository\org\vaadin\addons\sparklines\7.0.2\sparklines-7.0.2.jar;C:\Users\slot\.m2\repository\org\vaadin\addons\gwt-graphics\1.0.0\gwt-graphics-1.0.0.jar;C:\Users\slot\.m2\repository\org\vaadin\addons\ratingstars\2.1\ratingstars-2.1.jar;C:\Users\slot\.m2\repository\commons-codec\commons-codec\1.9\commons-codec-1.9.jar;C:\Users\slot\.m2\repository\org\vaadin\addon\v-leaflet\1.0.4\v-leaflet-1.0.4.jar;C:\Users\slot\.m2\repository\org\peimari\g-leaflet\1.0.5\g-leaflet-1.0.5.jar;C:\Users\slot\.m2\repository\com\vividsolutions\jts\1.13\jts-1.13.jar;C:\Users\slot\.m2\repository\com\fasterxml\jackson\core\jackson-databind\2.5.4\jackson-databind-2.5.4.jar;C:\Users\slot\.m2\repository\com\fasterxml\jackson\core\jackson-core\2.5.4\jackson-core-2.5.4.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-client\7.7.0\vaadin-client-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-shared\7.7.0\vaadin-shared-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-elemental\2.7.0.vaadin3\gwt-elemental-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-user\2.7.0.vaadin3\gwt-user-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA-sources.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-client-compiler\7.7.0\vaadin-client-compiler-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-dev\2.7.0.vaadin3\gwt-dev-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm\5.0.3\asm-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-util\5.0.3\asm-util-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-tree\5.0.3\asm-tree-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-commons\5.0.3\asm-commons-5.0.3.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-sass-compiler\0.9.13\vaadin-sass-compiler-0.9.13.jar;C:\Users\slot\.m2\repository\org\w3c\css\sac\1.3\sac-1.3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\flute\flute\1.3.0.gg2\flute-1.3.0.gg2.jar;C:\Users\slot\.m2\repository\com\yahoo\platform\yui\yuicompressor\2.4.8\yuicompressor-2.4.8.jar;C:\Users\slot\.m2\repository\rhino\js\1.7R2\js-1.7R2.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-client\7.7.0\vaadin-client-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-shared\7.7.0\vaadin-shared-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-server\7.7.0\vaadin-server-7.7.0.jar;C:\Users\slot\.m2\repository\org\jsoup\jsoup\1.8.3\jsoup-1.8.3.jar;C:\Users\slot\.m2\repository\junit\junit\4.11\junit-4.11.jar;C:\Users\slot\.m2\repository\org\hamcrest\hamcrest-core\1.3\hamcrest-core-1.3.jar;C:\Users\slot\.m2\repository\org\easymock\easymock\3.0\easymock-3.0.jar;C:\Users\slot\.m2\repository\cglib\cglib-nodep\2.2\cglib-nodep-2.2.jar;C:\Users\slot\.m2\repository\org\objenesis\objenesis\1.2\objenesis-1.2.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-elemental\2.7.0.vaadin3\gwt-elemental-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-user\2.7.0.vaadin3\gwt-user-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA-sources.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-client-compiler\7.7.0\vaadin-client-compiler-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-client\7.7.0\vaadin-client-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-shared\7.7.0\vaadin-shared-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-server\7.7.0\vaadin-server-7.7.0.jar;C:\Users\slot\.m2\repository\org\jsoup\jsoup\1.8.3\jsoup-1.8.3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-elemental\2.7.0.vaadin3\gwt-elemental-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-user\2.7.0.vaadin3\gwt-user-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA-sources.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-dev\2.7.0.vaadin3\gwt-dev-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm\5.0.3\asm-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-util\5.0.3\asm-util-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-tree\5.0.3\asm-tree-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-commons\5.0.3\asm-commons-5.0.3.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-sass-compiler\0.9.13\vaadin-sass-compiler-0.9.13.jar;C:\Users\slot\.m2\repository\org\w3c\css\sac\1.3\sac-1.3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\flute\flute\1.3.0.gg2\flute-1.3.0.gg2.jar;C:\Users\slot\.m2\repository\com\yahoo\platform\yui\yuicompressor\2.4.8\yuicompressor-2.4.8.jar;C:\Users\slot\.m2\repository\rhino\js\1.7R2\js-1.7R2.jar;C:\Users\slot\.m2\repository\junit\junit\4.11\junit-4.11.jar;C:\Users\slot\.m2\repository\org\hamcrest\hamcrest-core\1.3\hamcrest-core-1.3.jar -Dgwt.persistentunitcache=false com.google.gwt.dev.Compiler -logLevel INFO -style DETAILED -war C:\Users\slot\workspace\tf\airportiq-lhsm\lhsm-middleware\airportiq-middleware-widgetset\target\classes\VAADIN\widgetsets -localWorkers 4 -draftCompile -failOnError -XfragmentCount -1 -sourceLevel auto -gen C:\Users\slot\workspace\tf\airportiq-lhsm\lhsm-middleware\airportiq-middleware-widgetset\target\.generated com.slot.lhsm_middleware.LhsmWidgetset
]] failed with status 1
	at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:212)
	at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153)
	at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145)
	at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:116)
	at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:80)
	at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51)
	at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128)
	at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:307)
	at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:193)
	at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:106)
	at org.apache.maven.cli.MavenCli.execute(MavenCli.java:863)
	at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:288)
	at org.apache.maven.cli.MavenCli.main(MavenCli.java:199)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289)
	at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229)
	at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415)
	at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356)
Caused by: org.apache.maven.plugin.MojoExecutionException: Command [[
C:\Program Files\Java\jdk1.8.0_121\jre\bin\java -Xmx1024M -Xss1024k -classpath C:\Users\slot\workspace\tf\airportiq-lhsm\lhsm-middleware\airportiq-middleware-widgetset\target\classes;C:\Users\slot\workspace\tf\airportiq-lhsm\lhsm-middleware\airportiq-middleware-widgetset\src\main\java;C:\Users\slot\.m2\repository\com\fullbit\widgets\0.0.1-SNAPSHOT\widgets-0.0.1-SNAPSHOT.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-server\7.7.0\vaadin-server-7.7.0.jar;C:\Users\slot\.m2\repository\org\jsoup\jsoup\1.8.3\jsoup-1.8.3.jar;C:\Users\slot\.m2\repository\org\vaadin\addons\contextmenu\4.5\contextmenu-4.5.jar;C:\Users\slot\.m2\repository\org\vaadin\addons\dragdroplayouts\1.3.2\dragdroplayouts-1.3.2.jar;C:\Users\slot\.m2\repository\com\vaadin\pekka\resizablecsslayout\1.1.0\resizablecsslayout-1.1.0.jar;C:\Users\slot\.m2\repository\com\vaadin\addon\vaadin-charts\3.2.0\vaadin-charts-3.2.0.jar;C:\Users\slot\.m2\repository\com\vaadin\addon\vaadin-charts-model\3.2.0\vaadin-charts-model-3.2.0.jar;C:\Users\slot\.m2\repository\com\fasterxml\jackson\core\jackson-annotations\2.5.4\jackson-annotations-2.5.4.jar;C:\Users\slot\.m2\repository\commons-io\commons-io\2.4\commons-io-2.4.jar;C:\Users\slot\.m2\repository\com\vaadin\grid-renderers-collection-addon\1.0.0\grid-renderers-collection-addon-1.0.0.jar;C:\Users\slot\.m2\repository\org\vaadin\addons\sparklines\7.0.2\sparklines-7.0.2.jar;C:\Users\slot\.m2\repository\org\vaadin\addons\gwt-graphics\1.0.0\gwt-graphics-1.0.0.jar;C:\Users\slot\.m2\repository\org\vaadin\addons\ratingstars\2.1\ratingstars-2.1.jar;C:\Users\slot\.m2\repository\commons-codec\commons-codec\1.9\commons-codec-1.9.jar;C:\Users\slot\.m2\repository\org\vaadin\addon\v-leaflet\1.0.4\v-leaflet-1.0.4.jar;C:\Users\slot\.m2\repository\org\peimari\g-leaflet\1.0.5\g-leaflet-1.0.5.jar;C:\Users\slot\.m2\repository\com\vividsolutions\jts\1.13\jts-1.13.jar;C:\Users\slot\.m2\repository\com\fasterxml\jackson\core\jackson-databind\2.5.4\jackson-databind-2.5.4.jar;C:\Users\slot\.m2\repository\com\fasterxml\jackson\core\jackson-core\2.5.4\jackson-core-2.5.4.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-client\7.7.0\vaadin-client-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-shared\7.7.0\vaadin-shared-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-elemental\2.7.0.vaadin3\gwt-elemental-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-user\2.7.0.vaadin3\gwt-user-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA-sources.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-client-compiler\7.7.0\vaadin-client-compiler-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-dev\2.7.0.vaadin3\gwt-dev-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm\5.0.3\asm-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-util\5.0.3\asm-util-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-tree\5.0.3\asm-tree-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-commons\5.0.3\asm-commons-5.0.3.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-sass-compiler\0.9.13\vaadin-sass-compiler-0.9.13.jar;C:\Users\slot\.m2\repository\org\w3c\css\sac\1.3\sac-1.3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\flute\flute\1.3.0.gg2\flute-1.3.0.gg2.jar;C:\Users\slot\.m2\repository\com\yahoo\platform\yui\yuicompressor\2.4.8\yuicompressor-2.4.8.jar;C:\Users\slot\.m2\repository\rhino\js\1.7R2\js-1.7R2.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-client\7.7.0\vaadin-client-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-shared\7.7.0\vaadin-shared-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-server\7.7.0\vaadin-server-7.7.0.jar;C:\Users\slot\.m2\repository\org\jsoup\jsoup\1.8.3\jsoup-1.8.3.jar;C:\Users\slot\.m2\repository\junit\junit\4.11\junit-4.11.jar;C:\Users\slot\.m2\repository\org\hamcrest\hamcrest-core\1.3\hamcrest-core-1.3.jar;C:\Users\slot\.m2\repository\org\easymock\easymock\3.0\easymock-3.0.jar;C:\Users\slot\.m2\repository\cglib\cglib-nodep\2.2\cglib-nodep-2.2.jar;C:\Users\slot\.m2\repository\org\objenesis\objenesis\1.2\objenesis-1.2.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-elemental\2.7.0.vaadin3\gwt-elemental-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-user\2.7.0.vaadin3\gwt-user-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA-sources.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-client-compiler\7.7.0\vaadin-client-compiler-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-client\7.7.0\vaadin-client-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-shared\7.7.0\vaadin-shared-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-server\7.7.0\vaadin-server-7.7.0.jar;C:\Users\slot\.m2\repository\org\jsoup\jsoup\1.8.3\jsoup-1.8.3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-elemental\2.7.0.vaadin3\gwt-elemental-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-user\2.7.0.vaadin3\gwt-user-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA-sources.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-dev\2.7.0.vaadin3\gwt-dev-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm\5.0.3\asm-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-util\5.0.3\asm-util-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-tree\5.0.3\asm-tree-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-commons\5.0.3\asm-commons-5.0.3.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-sass-compiler\0.9.13\vaadin-sass-compiler-0.9.13.jar;C:\Users\slot\.m2\repository\org\w3c\css\sac\1.3\sac-1.3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\flute\flute\1.3.0.gg2\flute-1.3.0.gg2.jar;C:\Users\slot\.m2\repository\com\yahoo\platform\yui\yuicompressor\2.4.8\yuicompressor-2.4.8.jar;C:\Users\slot\.m2\repository\rhino\js\1.7R2\js-1.7R2.jar;C:\Users\slot\.m2\repository\junit\junit\4.11\junit-4.11.jar;C:\Users\slot\.m2\repository\org\hamcrest\hamcrest-core\1.3\hamcrest-core-1.3.jar -Dgwt.persistentunitcache=false com.google.gwt.dev.Compiler -logLevel INFO -style DETAILED -war C:\Users\slot\workspace\tf\airportiq-lhsm\lhsm-middleware\airportiq-middleware-widgetset\target\classes\VAADIN\widgetsets -localWorkers 4 -draftCompile -failOnError -XfragmentCount -1 -sourceLevel auto -gen C:\Users\slot\workspace\tf\airportiq-lhsm\lhsm-middleware\airportiq-middleware-widgetset\target\.generated com.slot.lhsm_middleware.LhsmWidgetset
]] failed with status 1
	at org.codehaus.mojo.gwt.shell.CompileMojo.compile(CompileMojo.java:582)
	at org.codehaus.mojo.gwt.shell.CompileMojo.doExecute(CompileMojo.java:435)
	at org.codehaus.mojo.gwt.shell.AbstractGwtShellMojo.execute(AbstractGwtShellMojo.java:182)
	at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134)
	at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:207)
	... 20 more
Caused by: org.codehaus.mojo.gwt.shell.JavaCommandException: Command [[
C:\Program Files\Java\jdk1.8.0_121\jre\bin\java -Xmx1024M -Xss1024k -classpath C:\Users\slot\workspace\tf\airportiq-lhsm\lhsm-middleware\airportiq-middleware-widgetset\target\classes;C:\Users\slot\workspace\tf\airportiq-lhsm\lhsm-middleware\airportiq-middleware-widgetset\src\main\java;C:\Users\slot\.m2\repository\com\fullbit\widgets\0.0.1-SNAPSHOT\widgets-0.0.1-SNAPSHOT.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-server\7.7.0\vaadin-server-7.7.0.jar;C:\Users\slot\.m2\repository\org\jsoup\jsoup\1.8.3\jsoup-1.8.3.jar;C:\Users\slot\.m2\repository\org\vaadin\addons\contextmenu\4.5\contextmenu-4.5.jar;C:\Users\slot\.m2\repository\org\vaadin\addons\dragdroplayouts\1.3.2\dragdroplayouts-1.3.2.jar;C:\Users\slot\.m2\repository\com\vaadin\pekka\resizablecsslayout\1.1.0\resizablecsslayout-1.1.0.jar;C:\Users\slot\.m2\repository\com\vaadin\addon\vaadin-charts\3.2.0\vaadin-charts-3.2.0.jar;C:\Users\slot\.m2\repository\com\vaadin\addon\vaadin-charts-model\3.2.0\vaadin-charts-model-3.2.0.jar;C:\Users\slot\.m2\repository\com\fasterxml\jackson\core\jackson-annotations\2.5.4\jackson-annotations-2.5.4.jar;C:\Users\slot\.m2\repository\commons-io\commons-io\2.4\commons-io-2.4.jar;C:\Users\slot\.m2\repository\com\vaadin\grid-renderers-collection-addon\1.0.0\grid-renderers-collection-addon-1.0.0.jar;C:\Users\slot\.m2\repository\org\vaadin\addons\sparklines\7.0.2\sparklines-7.0.2.jar;C:\Users\slot\.m2\repository\org\vaadin\addons\gwt-graphics\1.0.0\gwt-graphics-1.0.0.jar;C:\Users\slot\.m2\repository\org\vaadin\addons\ratingstars\2.1\ratingstars-2.1.jar;C:\Users\slot\.m2\repository\commons-codec\commons-codec\1.9\commons-codec-1.9.jar;C:\Users\slot\.m2\repository\org\vaadin\addon\v-leaflet\1.0.4\v-leaflet-1.0.4.jar;C:\Users\slot\.m2\repository\org\peimari\g-leaflet\1.0.5\g-leaflet-1.0.5.jar;C:\Users\slot\.m2\repository\com\vividsolutions\jts\1.13\jts-1.13.jar;C:\Users\slot\.m2\repository\com\fasterxml\jackson\core\jackson-databind\2.5.4\jackson-databind-2.5.4.jar;C:\Users\slot\.m2\repository\com\fasterxml\jackson\core\jackson-core\2.5.4\jackson-core-2.5.4.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-client\7.7.0\vaadin-client-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-shared\7.7.0\vaadin-shared-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-elemental\2.7.0.vaadin3\gwt-elemental-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-user\2.7.0.vaadin3\gwt-user-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA-sources.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-client-compiler\7.7.0\vaadin-client-compiler-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-dev\2.7.0.vaadin3\gwt-dev-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm\5.0.3\asm-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-util\5.0.3\asm-util-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-tree\5.0.3\asm-tree-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-commons\5.0.3\asm-commons-5.0.3.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-sass-compiler\0.9.13\vaadin-sass-compiler-0.9.13.jar;C:\Users\slot\.m2\repository\org\w3c\css\sac\1.3\sac-1.3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\flute\flute\1.3.0.gg2\flute-1.3.0.gg2.jar;C:\Users\slot\.m2\repository\com\yahoo\platform\yui\yuicompressor\2.4.8\yuicompressor-2.4.8.jar;C:\Users\slot\.m2\repository\rhino\js\1.7R2\js-1.7R2.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-client\7.7.0\vaadin-client-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-shared\7.7.0\vaadin-shared-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-server\7.7.0\vaadin-server-7.7.0.jar;C:\Users\slot\.m2\repository\org\jsoup\jsoup\1.8.3\jsoup-1.8.3.jar;C:\Users\slot\.m2\repository\junit\junit\4.11\junit-4.11.jar;C:\Users\slot\.m2\repository\org\hamcrest\hamcrest-core\1.3\hamcrest-core-1.3.jar;C:\Users\slot\.m2\repository\org\easymock\easymock\3.0\easymock-3.0.jar;C:\Users\slot\.m2\repository\cglib\cglib-nodep\2.2\cglib-nodep-2.2.jar;C:\Users\slot\.m2\repository\org\objenesis\objenesis\1.2\objenesis-1.2.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-elemental\2.7.0.vaadin3\gwt-elemental-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-user\2.7.0.vaadin3\gwt-user-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA-sources.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-client-compiler\7.7.0\vaadin-client-compiler-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-client\7.7.0\vaadin-client-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-shared\7.7.0\vaadin-shared-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-server\7.7.0\vaadin-server-7.7.0.jar;C:\Users\slot\.m2\repository\org\jsoup\jsoup\1.8.3\jsoup-1.8.3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-elemental\2.7.0.vaadin3\gwt-elemental-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-user\2.7.0.vaadin3\gwt-user-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA-sources.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-dev\2.7.0.vaadin3\gwt-dev-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm\5.0.3\asm-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-util\5.0.3\asm-util-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-tree\5.0.3\asm-tree-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-commons\5.0.3\asm-commons-5.0.3.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-sass-compiler\0.9.13\vaadin-sass-compiler-0.9.13.jar;C:\Users\slot\.m2\repository\org\w3c\css\sac\1.3\sac-1.3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\flute\flute\1.3.0.gg2\flute-1.3.0.gg2.jar;C:\Users\slot\.m2\repository\com\yahoo\platform\yui\yuicompressor\2.4.8\yuicompressor-2.4.8.jar;C:\Users\slot\.m2\repository\rhino\js\1.7R2\js-1.7R2.jar;C:\Users\slot\.m2\repository\junit\junit\4.11\junit-4.11.jar;C:\Users\slot\.m2\repository\org\hamcrest\hamcrest-core\1.3\hamcrest-core-1.3.jar -Dgwt.persistentunitcache=false com.google.gwt.dev.Compiler -logLevel INFO -style DETAILED -war C:\Users\slot\workspace\tf\airportiq-lhsm\lhsm-middleware\airportiq-middleware-widgetset\target\classes\VAADIN\widgetsets -localWorkers 4 -draftCompile -failOnError -XfragmentCount -1 -sourceLevel auto -gen C:\Users\slot\workspace\tf\airportiq-lhsm\lhsm-middleware\airportiq-middleware-widgetset\target\.generated com.slot.lhsm_middleware.LhsmWidgetset
]] failed with status 1
	at org.codehaus.mojo.gwt.shell.JavaCommand.execute(JavaCommand.java:327)
	at org.codehaus.mojo.gwt.shell.CompileMojo.compile(CompileMojo.java:578)
	... 24 more
[ERROR]
 
[ERROR]
 
[ERROR]
 For more information about the errors and possible solutions, please read the following articles:
[ERROR]
 [Help 1]
 http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

PS: with the same config it works on my colleague’s computer and it used to work on mine but suddenly it stopped working for me despite that I made no changes.

Tested on: java JDK 1.7.0_80/1.8.0_121/1.8.0_144
win10/win7
eclipse neon/eclipse oxygen
Thanks in advance

Have you tried to run maven with -X option; maybe you will get more details.
You can also try to run the widgetset compilation on a terminal (command line is taken from the log you posted); maybe you will see a stacktrace or some other information

C:\Program Files\Java\jdk1.8.0_121\jre\bin\java -Xmx1024M -Xss1024k -classpath C:\Users\slot\workspace\tf\airportiq-lhsm\lhsm-middleware\airportiq-middleware-widgetset\target\classes;C:\Users\slot\workspace\tf\airportiq-lhsm\lhsm-middleware\airportiq-middleware-widgetset\src\main\java;C:\Users\slot\.m2\repository\com\fullbit\widgets\0.0.1-SNAPSHOT\widgets-0.0.1-SNAPSHOT.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-server\7.7.0\vaadin-server-7.7.0.jar;C:\Users\slot\.m2\repository\org\jsoup\jsoup\1.8.3\jsoup-1.8.3.jar;C:\Users\slot\.m2\repository\org\vaadin\addons\contextmenu\4.5\contextmenu-4.5.jar;C:\Users\slot\.m2\repository\org\vaadin\addons\dragdroplayouts\1.3.2\dragdroplayouts-1.3.2.jar;C:\Users\slot\.m2\repository\com\vaadin\pekka\resizablecsslayout\1.1.0\resizablecsslayout-1.1.0.jar;C:\Users\slot\.m2\repository\com\vaadin\addon\vaadin-charts\3.2.0\vaadin-charts-3.2.0.jar;C:\Users\slot\.m2\repository\com\vaadin\addon\vaadin-charts-model\3.2.0\vaadin-charts-model-3.2.0.jar;C:\Users\slot\.m2\repository\com\fasterxml\jackson\core\jackson-annotations\2.5.4\jackson-annotations-2.5.4.jar;C:\Users\slot\.m2\repository\commons-io\commons-io\2.4\commons-io-2.4.jar;C:\Users\slot\.m2\repository\com\vaadin\grid-renderers-collection-addon\1.0.0\grid-renderers-collection-addon-1.0.0.jar;C:\Users\slot\.m2\repository\org\vaadin\addons\sparklines\7.0.2\sparklines-7.0.2.jar;C:\Users\slot\.m2\repository\org\vaadin\addons\gwt-graphics\1.0.0\gwt-graphics-1.0.0.jar;C:\Users\slot\.m2\repository\org\vaadin\addons\ratingstars\2.1\ratingstars-2.1.jar;C:\Users\slot\.m2\repository\commons-codec\commons-codec\1.9\commons-codec-1.9.jar;C:\Users\slot\.m2\repository\org\vaadin\addon\v-leaflet\1.0.4\v-leaflet-1.0.4.jar;C:\Users\slot\.m2\repository\org\peimari\g-leaflet\1.0.5\g-leaflet-1.0.5.jar;C:\Users\slot\.m2\repository\com\vividsolutions\jts\1.13\jts-1.13.jar;C:\Users\slot\.m2\repository\com\fasterxml\jackson\core\jackson-databind\2.5.4\jackson-databind-2.5.4.jar;C:\Users\slot\.m2\repository\com\fasterxml\jackson\core\jackson-core\2.5.4\jackson-core-2.5.4.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-client\7.7.0\vaadin-client-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-shared\7.7.0\vaadin-shared-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-elemental\2.7.0.vaadin3\gwt-elemental-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-user\2.7.0.vaadin3\gwt-user-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA-sources.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-client-compiler\7.7.0\vaadin-client-compiler-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-dev\2.7.0.vaadin3\gwt-dev-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm\5.0.3\asm-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-util\5.0.3\asm-util-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-tree\5.0.3\asm-tree-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-commons\5.0.3\asm-commons-5.0.3.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-sass-compiler\0.9.13\vaadin-sass-compiler-0.9.13.jar;C:\Users\slot\.m2\repository\org\w3c\css\sac\1.3\sac-1.3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\flute\flute\1.3.0.gg2\flute-1.3.0.gg2.jar;C:\Users\slot\.m2\repository\com\yahoo\platform\yui\yuicompressor\2.4.8\yuicompressor-2.4.8.jar;C:\Users\slot\.m2\repository\rhino\js\1.7R2\js-1.7R2.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-client\7.7.0\vaadin-client-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-shared\7.7.0\vaadin-shared-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-server\7.7.0\vaadin-server-7.7.0.jar;C:\Users\slot\.m2\repository\org\jsoup\jsoup\1.8.3\jsoup-1.8.3.jar;C:\Users\slot\.m2\repository\junit\junit\4.11\junit-4.11.jar;C:\Users\slot\.m2\repository\org\hamcrest\hamcrest-core\1.3\hamcrest-core-1.3.jar;C:\Users\slot\.m2\repository\org\easymock\easymock\3.0\easymock-3.0.jar;C:\Users\slot\.m2\repository\cglib\cglib-nodep\2.2\cglib-nodep-2.2.jar;C:\Users\slot\.m2\repository\org\objenesis\objenesis\1.2\objenesis-1.2.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-elemental\2.7.0.vaadin3\gwt-elemental-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-user\2.7.0.vaadin3\gwt-user-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA-sources.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-client-compiler\7.7.0\vaadin-client-compiler-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-client\7.7.0\vaadin-client-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-shared\7.7.0\vaadin-shared-7.7.0.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-server\7.7.0\vaadin-server-7.7.0.jar;C:\Users\slot\.m2\repository\org\jsoup\jsoup\1.8.3\jsoup-1.8.3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-elemental\2.7.0.vaadin3\gwt-elemental-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-user\2.7.0.vaadin3\gwt-user-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA.jar;C:\Users\slot\.m2\repository\javax\validation\validation-api\1.0.0.GA\validation-api-1.0.0.GA-sources.jar;C:\Users\slot\.m2\repository\com\vaadin\external\gwt\gwt-dev\2.7.0.vaadin3\gwt-dev-2.7.0.vaadin3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm\5.0.3\asm-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-util\5.0.3\asm-util-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-tree\5.0.3\asm-tree-5.0.3.jar;C:\Users\slot\.m2\repository\org\ow2\asm\asm-commons\5.0.3\asm-commons-5.0.3.jar;C:\Users\slot\.m2\repository\com\vaadin\vaadin-sass-compiler\0.9.13\vaadin-sass-compiler-0.9.13.jar;C:\Users\slot\.m2\repository\org\w3c\css\sac\1.3\sac-1.3.jar;C:\Users\slot\.m2\repository\com\vaadin\external\flute\flute\1.3.0.gg2\flute-1.3.0.gg2.jar;C:\Users\slot\.m2\repository\com\yahoo\platform\yui\yuicompressor\2.4.8\yuicompressor-2.4.8.jar;C:\Users\slot\.m2\repository\rhino\js\1.7R2\js-1.7R2.jar;C:\Users\slot\.m2\repository\junit\junit\4.11\junit-4.11.jar;C:\Users\slot\.m2\repository\org\hamcrest\hamcrest-core\1.3\hamcrest-core-1.3.jar -Dgwt.persistentunitcache=false com.google.gwt.dev.Compiler -logLevel INFO -style DETAILED -war C:\Users\slot\workspace\tf\airportiq-lhsm\lhsm-middleware\airportiq-middleware-widgetset\target\classes\VAADIN\widgetsets -localWorkers 4 -draftCompile -failOnError -XfragmentCount -1 -sourceLevel auto -gen C:\Users\slot\workspace\tf\airportiq-lhsm\lhsm-middleware\airportiq-middleware-widgetset\target\.generated com.slot.lhsm_middleware.LhsmWidgetset

HTH
Marco

Actually the above stack trace I got it after running mvn -X and that’s all what it gives me

I noticed you are using vaadin maven plugin 7.7.0; I remember there was an issue on windows with “too long command line”.

thanks for the hint. I tried to compile it on Ubuntu but still I get the same issue. is there anyway to work around this.

I suppose you have already tried to increment -Xmx (eg to -Xmx2048M). I’ve got some memory issue in the past

I’ve tried it and the problem still persist. after which vaadin version this issue was fixed if you have any idea.