cincheo / applet-migration-example

How to migrate and modernize a Java applet to HTML5
http://www.cincheo.fr
22 stars 9 forks source link

ERROR: cannot find namespace 'javax' #3

Open RaulMetro opened 5 years ago

RaulMetro commented 5 years ago

I have configured this project using Eclipse.

I can execute your project without problem, but when I try to replicate the changes in my project with my Applet, I get an error.

I see that you use AWT on your Applet and mine uses SWING, even so and according to the specifications of the project, I believe that SWING is supported.

The fact is that when launching maven to migrate the Applet I get errors such as:

BUG: property 'BorderLayout' does not exist on type 'typeof awt' BUG: namespace 'java.awt' has no exported member 'BorderLayout' BUG: cannot find namespace 'javax'

Thank you very much for your consideration!

Details

Building

I did the last build in the commandline and streamed the builder output to a log file:
mvn -e -X clean package generate-sources

Log file

errorMigracionApplet.txt

Environment

Eclipse version: EE IDE for Web Developers Release (4.9.0), Build id: 20180917-1800
JSweet plugin: JSweet 0.9.6.20190422

pom.xml

<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">

4.0.0
<groupId>localfile</groupId>
<artifactId>AppletResonancias</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>

<name>AppletResonancias</name>
<url>http://maven.apache.org</url>

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<build>
    <plugins>
        <plugin>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.1</version>
            <configuration>
                <source>1.8</source>
                <target>1.8</target>
                <fork>true</fork>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.jsweet</groupId>
            <artifactId>jsweet-maven-plugin</artifactId>
            <version>1.1.1</version>
            <configuration>
                <verbose>true</verbose>
                <tsOut>target/ts</tsOut>
                <outDir>target/js</outDir>
                <candiesJsOut>webapp/lib</candiesJsOut>
                <targetVersion>ES3</targetVersion>
            </configuration>
            <executions>
                <execution>
                    <id>generate-js</id>
                    <phase>generate-sources</phase>
                    <goals>
                        <goal>jsweet</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
    <pluginManagement>
        <plugins>
            <!--This plugin's configuration is used to store Eclipse m2e settings 
                only. It has no influence on the Maven build itself. -->
            <plugin>
                <groupId>org.eclipse.m2e</groupId>
                <artifactId>lifecycle-mapping</artifactId>
                <version>1.0.0</version>
                <configuration>
                    <lifecycleMappingMetadata>
                        <pluginExecutions>
                            <pluginExecution>
                                <pluginExecutionFilter>
                                    <groupId>
                                        org.jsweet
                                    </groupId>
                                    <artifactId>
                                        jsweet-maven-plugin
                                    </artifactId>
                                    <versionRange>
                                        [1.0.0,)
                                    </versionRange>
                                    <goals>
                                        <goal>jsweet</goal>
                                    </goals>
                                </pluginExecutionFilter>
                                <action>
                                    <ignore></ignore>
                                </action>
                            </pluginExecution>
                        </pluginExecutions>
                    </lifecycleMappingMetadata>
                </configuration>
            </plugin>
        </plugins>
    </pluginManagement>
</build>

<dependencies>
    <dependency>
        <groupId>org.jsweet.candies</groupId>
        <artifactId>jsweet-core</artifactId>
        <version>1.1.0-SNAPSHOT</version>
    </dependency>
    <dependency>
        <groupId>org.jsweet.candies</groupId>
        <artifactId>j4ts</artifactId>
        <version>0.2.0-SNAPSHOT</version>
    </dependency>
</dependencies>

Log file contents

`Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-10T17:41:47+01:00) Maven home: C:\apache-maven-3.3.9 Java version: 1.8.0_191, vendor: Oracle Corporation Java home: C:\Program Files\Java\jre1.8.0_191 Default locale: es_ES, platform encoding: Cp1252 OS name: "windows 10", version: "10.0", arch: "amd64", family: "dos" [DEBUG] Created new class realm maven.api [DEBUG] Importing foreign packages into class realm maven.api [DEBUG] Imported: javax.enterprise.inject. < plexus.core [DEBUG] Imported: javax.enterprise.util. < plexus.core [DEBUG] Imported: javax.inject. < plexus.core [DEBUG] Imported: org.apache.maven. < plexus.core [DEBUG] Imported: org.apache.maven.artifact < plexus.core [DEBUG] Imported: org.apache.maven.classrealm < plexus.core [DEBUG] Imported: org.apache.maven.cli < plexus.core [DEBUG] Imported: org.apache.maven.configuration < plexus.core [DEBUG] Imported: org.apache.maven.exception < plexus.core [DEBUG] Imported: org.apache.maven.execution < plexus.core [DEBUG] Imported: org.apache.maven.execution.scope < plexus.core [DEBUG] Imported: org.apache.maven.lifecycle < plexus.core [DEBUG] Imported: org.apache.maven.model < plexus.core [DEBUG] Imported: org.apache.maven.monitor < plexus.core [DEBUG] Imported: org.apache.maven.plugin < plexus.core [DEBUG] Imported: org.apache.maven.profiles < plexus.core [DEBUG] Imported: org.apache.maven.project < plexus.core [DEBUG] Imported: org.apache.maven.reporting < plexus.core [DEBUG] Imported: org.apache.maven.repository < plexus.core [DEBUG] Imported: org.apache.maven.rtinfo < plexus.core [DEBUG] Imported: org.apache.maven.settings < plexus.core [DEBUG] Imported: org.apache.maven.toolchain < plexus.core [DEBUG] Imported: org.apache.maven.usability < plexus.core [DEBUG] Imported: org.apache.maven.wagon. < plexus.core [DEBUG] Imported: org.apache.maven.wagon.authentication < plexus.core [DEBUG] Imported: org.apache.maven.wagon.authorization < plexus.core [DEBUG] Imported: org.apache.maven.wagon.events < plexus.core [DEBUG] Imported: org.apache.maven.wagon.observers < plexus.core [DEBUG] Imported: org.apache.maven.wagon.proxy < plexus.core [DEBUG] Imported: org.apache.maven.wagon.repository < plexus.core [DEBUG] Imported: org.apache.maven.wagon.resource < plexus.core [DEBUG] Imported: org.codehaus.classworlds < plexus.core [DEBUG] Imported: org.codehaus.plexus. < plexus.core [DEBUG] Imported: org.codehaus.plexus.classworlds < plexus.core [DEBUG] Imported: org.codehaus.plexus.component < plexus.core [DEBUG] Imported: org.codehaus.plexus.configuration < plexus.core [DEBUG] Imported: org.codehaus.plexus.container < plexus.core [DEBUG] Imported: org.codehaus.plexus.context < plexus.core [DEBUG] Imported: org.codehaus.plexus.lifecycle < plexus.core [DEBUG] Imported: org.codehaus.plexus.logging < plexus.core [DEBUG] Imported: org.codehaus.plexus.personality < plexus.core [DEBUG] Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core [DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < plexus.core [DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < plexus.core [DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < plexus.core [DEBUG] Imported: org.eclipse.aether. < plexus.core [DEBUG] Imported: org.eclipse.aether.artifact < plexus.core [DEBUG] Imported: org.eclipse.aether.collection < plexus.core [DEBUG] Imported: org.eclipse.aether.deployment < plexus.core [DEBUG] Imported: org.eclipse.aether.graph < plexus.core [DEBUG] Imported: org.eclipse.aether.impl < plexus.core [DEBUG] Imported: org.eclipse.aether.installation < plexus.core [DEBUG] Imported: org.eclipse.aether.internal.impl < plexus.core [DEBUG] Imported: org.eclipse.aether.metadata < plexus.core [DEBUG] Imported: org.eclipse.aether.repository < plexus.core [DEBUG] Imported: org.eclipse.aether.resolution < plexus.core [DEBUG] Imported: org.eclipse.aether.spi < plexus.core [DEBUG] Imported: org.eclipse.aether.transfer < plexus.core [DEBUG] Imported: org.eclipse.aether.version < plexus.core [DEBUG] Imported: org.slf4j. < plexus.core [DEBUG] Imported: org.slf4j.helpers. < plexus.core [DEBUG] Imported: org.slf4j.spi. < plexus.core [DEBUG] Populating class realm maven.api [INFO] Error stacktraces are turned on. [DEBUG] Reading global settings from C:\apache-maven-3.3.9\conf\settings.xml [DEBUG] Reading user settings from C:\apache-maven-3.3.9\conf\settings.xml [DEBUG] Reading global toolchains from C:\apache-maven-3.3.9\conf\toolchains.xml [DEBUG] Reading user toolchains from C:\Users\Pe3791.m2\toolchains.xml [DEBUG] Using local repository at C:\Users\Pe3791.m2\repository [DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10.0 for C:\Users\Pe3791.m2\repository [INFO] Scanning for projects... [DEBUG] Using mirror Nexus-snapshots (http://nexus.zzzz.net:8081/nexus/repository/maven-snapshots/) for public-snapshots (http://public-snapshots). [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for central (http://central). [DEBUG] Extension realms for project localfile:AppletResonancias:jar:0.0.1-SNAPSHOT: (none) [DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null] [DEBUG] === REACTOR BUILD PLAN ================================================ [DEBUG] Project: localfile:AppletResonancias:jar:0.0.1-SNAPSHOT [DEBUG] Tasks: [clean, compile] [DEBUG] Style: Regular [DEBUG] ======================================================================= [INFO]
[INFO] ------------------------------------------------------------------------ [INFO] Building AppletResonancias 0.0.1-SNAPSHOT [INFO] ------------------------------------------------------------------------ [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for apache.snapshots (http://repository.apache.org/snapshots). [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for central (https://repo.maven.apache.org/maven2). [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for jsweet-release (http://repository.jsweet.org/artifactory/libs-release-local). [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for jsweet-snapshot (http://repository.jsweet.org/artifactory/libs-snapshot-local). [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [DEBUG] === PROJECT BUILD PLAN ================================================ [DEBUG] Project: localfile:AppletResonancias:0.0.1-SNAPSHOT [DEBUG] Dependencies (collect): [] [DEBUG] Dependencies (resolve): [compile] [DEBUG] Repositories (dependencies): [Nexus-snapshots (http://nexus.zzzz.net:8081/nexus/repository/maven-snapshots/, default, snapshots), Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/, default, releases+snapshots)] [DEBUG] Repositories (plugins) : [Nexus-snapshots (http://nexus.zzzz.net:8081/nexus/repository/maven-snapshots/, default, snapshots), Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/, default, releases+snapshots)] [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>

${clean.excludeDefaultDirectories} ${maven.clean.failOnError} ${clean.followSymLinks} ${maven.clean.retryOnError} ${clean.skip} ${clean.verbose}

[DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.jsweet:jsweet-maven-plugin:1.1.1:jsweet (generate-js) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>

webapp/lib target/js ES3 target/ts true

[DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-resources-plugin:2.6:resources (default-resources) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>

${encoding} ${maven.resources.escapeString} ${maven.resources.escapeWindowsPaths} ${maven.resources.includeEmptyDirs} ${maven.resources.overwrite} ${maven.resources.supportMultiLineFiltering}

[DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>

${maven.compiler.compilerId} ${maven.compiler.compilerReuseStrategy} ${maven.compiler.compilerVersion} ${maven.compiler.debug} ${maven.compiler.debuglevel} ${encoding} ${maven.compiler.executable} ${maven.compiler.failOnError} ${maven.compiler.forceJavacCompilerUse} true ${maven.compiler.maxmem} ${maven.compiler.meminitial} ${mojoExecution} ${maven.compiler.optimize} ${maven.compiler.showDeprecation} ${maven.compiler.showWarnings} ${maven.main.skip} ${maven.compiler.skipMultiThreadWarning} 1.8 ${lastModGranularityMs} 1.8 ${maven.compiler.useIncrementalCompilation} ${maven.compiler.verbose}

[DEBUG] ======================================================================= [DEBUG] Could not find metadata org.jsweet.candies:jsweet-core:1.1.0-SNAPSHOT/maven-metadata.xml in local (C:\Users\Pe3791.m2\repository) [DEBUG] Failure to find org.jsweet.candies:jsweet-core:1.1.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-snapshots/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus-snapshots has elapsed or updates are forced [DEBUG] Failure to find org.jsweet.candies:jsweet-core:1.1.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-public/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus has elapsed or updates are forced [DEBUG] Could not find metadata org.jsweet.candies:jsweet-core:1.1.0-SNAPSHOT/maven-metadata.xml in local (C:\Users\Pe3791.m2\repository) [DEBUG] Failure to find org.jsweet.candies:jsweet-core:1.1.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-snapshots/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus-snapshots has elapsed or updates are forced [DEBUG] Failure to find org.jsweet.candies:jsweet-core:1.1.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-public/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus has elapsed or updates are forced [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for jsweet-central (http://repository.jsweet.org/artifactory/libs-release-local). [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for jsweet-snapshots (http://repository.jsweet.org/artifactory/libs-snapshot-local). [DEBUG] Could not find metadata org.jsweet.candies:j4ts:0.2.0-SNAPSHOT/maven-metadata.xml in local (C:\Users\Pe3791.m2\repository) [DEBUG] Failure to find org.jsweet.candies:j4ts:0.2.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-snapshots/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus-snapshots has elapsed or updates are forced [DEBUG] Failure to find org.jsweet.candies:j4ts:0.2.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-public/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus has elapsed or updates are forced [DEBUG] Could not find metadata org.jsweet.candies:j4ts:0.2.0-SNAPSHOT/maven-metadata.xml in local (C:\Users\Pe3791.m2\repository) [DEBUG] Failure to find org.jsweet.candies:j4ts:0.2.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-snapshots/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus-snapshots has elapsed or updates are forced [DEBUG] Failure to find org.jsweet.candies:j4ts:0.2.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-public/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus has elapsed or updates are forced [DEBUG] Could not find metadata org.jsweet.candies:jsweet-core:1.2.0-SNAPSHOT/maven-metadata.xml in local (C:\Users\Pe3791.m2\repository) [DEBUG] Failure to find org.jsweet.candies:jsweet-core:1.2.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-snapshots/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus-snapshots has elapsed or updates are forced [DEBUG] Failure to find org.jsweet.candies:jsweet-core:1.2.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-public/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus has elapsed or updates are forced [DEBUG] Could not find metadata org.jsweet.candies:jsweet-core:1.2.0-SNAPSHOT/maven-metadata.xml in local (C:\Users\Pe3791.m2\repository) [DEBUG] Failure to find org.jsweet.candies:jsweet-core:1.2.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-snapshots/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus-snapshots has elapsed or updates are forced [DEBUG] Failure to find org.jsweet.candies:jsweet-core:1.2.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-public/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus has elapsed or updates are forced [DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=4, ConflictIdSorter.graphTime=1, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=2, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=2, ConflictResolver.conflictItemCount=3, DefaultDependencyCollector.collectTime=29, DefaultDependencyCollector.transformTime=5} [DEBUG] localfile:AppletResonancias:jar:0.0.1-SNAPSHOT [DEBUG] org.jsweet.candies:jsweet-core:jar:1.1.0-SNAPSHOT:compile [DEBUG] org.jsweet.candies:j4ts:jar:0.2.0-SNAPSHOT:compile [INFO] [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ AppletResonancias --- [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository). [DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=3, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=3, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=0, ConflictResolver.conflictItemCount=3, DefaultDependencyCollector.collectTime=28, DefaultDependencyCollector.transformTime=0} [DEBUG] org.apache.maven.plugins:maven-clean-plugin:jar:2.5: [DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.6:compile [DEBUG] org.codehaus.plexus:plexus-utils:jar:3.0:compile [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.5 [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.5 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.5 [DEBUG] Included: org.apache.maven.plugins:maven-clean-plugin:jar:2.5 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:3.0 [DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: sun.misc.Launcher$AppClassLoader@4e25154f] [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator --> [DEBUG] (f) directory = C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target [DEBUG] (f) excludeDefaultDirectories = false [DEBUG] (f) failOnError = true [DEBUG] (f) followSymLinks = false [DEBUG] (f) outputDirectory = C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes [DEBUG] (f) reportDirectory = C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\site [DEBUG] (f) retryOnError = true [DEBUG] (f) skip = false [DEBUG] (f) testOutputDirectory = C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\test-classes [DEBUG] -- end configuration -- [INFO] Deleting C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target [INFO] Deleting file C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\ts\localfile\Localfile.ts [INFO] Deleting directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\ts\localfile [INFO] Deleting file C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\ts.tsc-rootfile.ts [INFO] Deleting directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\ts [INFO] Deleting file C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\js\localfile\Localfile.js [INFO] Deleting directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\js\localfile [INFO] Deleting file C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\js.tsc-rootfile.js [INFO] Deleting directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\js [INFO] Deleting file C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes\localfile\Localfile.class [INFO] Deleting file C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes\localfile\Localfile$ThreadComprime.class [INFO] Deleting file C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes\localfile\Localfile$ThreadComprime$2.class [INFO] Deleting file C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes\localfile\Localfile$ThreadComprime$1.class [INFO] Deleting file C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes\localfile\Localfile$PrintStream.class [INFO] Deleting file C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes\localfile\Localfile$ExecutableFilenameFilter.class [INFO] Deleting file C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes\localfile\Localfile$Contenedor.class [INFO] Deleting file C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes\localfile\Localfile$Contenedor$2.class [INFO] Deleting file C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes\localfile\Localfile$Contenedor$1.class [INFO] Deleting file C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes\localfile\Localfile$1.class [INFO] Deleting directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes\localfile [INFO] Deleting directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes [INFO] Deleting directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target [DEBUG] Skipping non-existing directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes [DEBUG] Skipping non-existing directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\test-classes [DEBUG] Skipping non-existing directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\site [INFO] [INFO] --- jsweet-maven-plugin:1.1.1:jsweet (generate-js) @ AppletResonancias --- [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots). [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for repository.jboss.org (http://repository.jboss.org/maven2). [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for snapshots.jboss.org (http://snapshots.jboss.org/maven2). [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for oss.sonatype.org/jboss-snapshots (http://oss.sonatype.org/content/repositories/jboss-snapshots). [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for snapshots (http://snapshots.maven.codehaus.org/maven2). [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for central (http://repo1.maven.org/maven2). [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for jsweet-external (http://repository.jsweet.org/artifactory/ext-release-local). [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for maven2-repository.dev.java.net (http://download.java.net/maven/2/). [DEBUG] Could not find metadata org.jsweet.candies:es6-promise:0.0.0-SNAPSHOT/maven-metadata.xml in local (C:\Users\Pe3791.m2\repository) [DEBUG] Failure to find org.jsweet.candies:es6-promise:0.0.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-snapshots/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus-snapshots has elapsed or updates are forced [DEBUG] Failure to find org.jsweet.candies:es6-promise:0.0.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-public/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus has elapsed or updates are forced [DEBUG] Could not find metadata org.jsweet.candies:es6-promise:0.0.0-SNAPSHOT/maven-metadata.xml in local (C:\Users\Pe3791.m2\repository) [DEBUG] Failure to find org.jsweet.candies:es6-promise:0.0.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-snapshots/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus-snapshots has elapsed or updates are forced [DEBUG] Failure to find org.jsweet.candies:es6-promise:0.0.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-public/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus has elapsed or updates are forced [DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=1, ConflictMarker.markTime=0, ConflictMarker.nodeCount=58, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=34, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=1, ConflictResolver.conflictItemCount=55, DefaultDependencyCollector.collectTime=197, DefaultDependencyCollector.transformTime=2} [DEBUG] org.jsweet:jsweet-maven-plugin:jar:1.1.1: [DEBUG] org.apache.maven:maven-plugin-api:jar:3.3.3:compile [DEBUG] org.apache.maven:maven-model:jar:3.3.3:compile [DEBUG] org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.0:compile [DEBUG] javax.enterprise:cdi-api:jar:1.0:compile [DEBUG] javax.annotation:jsr250-api:jar:1.0:compile [DEBUG] javax.inject:javax.inject:jar:1:compile [DEBUG] org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.0:compile [DEBUG] org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile [DEBUG] org.codehaus.plexus:plexus-classworlds:jar:2.5.2:compile [DEBUG] org.apache.maven:maven-project:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-settings:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-profile:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-artifact-manager:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-repository-metadata:jar:2.2.1:compile [DEBUG] backport-util-concurrent:backport-util-concurrent:jar:3.1:compile [DEBUG] org.apache.maven:maven-plugin-registry:jar:2.2.1:compile [DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.11:compile [DEBUG] org.codehaus.plexus:plexus-utils:jar:1.5.15:compile [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile [DEBUG] junit:junit:jar:3.8.1:compile [DEBUG] classworlds:classworlds:jar:1.1-alpha-2:compile [DEBUG] org.apache.maven:maven-artifact:jar:2.0:compile [DEBUG] org.jsweet:jsweet-transpiler:jar:1.1.1:compile [DEBUG] edu.princeton.cup:java-cup:jar:10k:compile [DEBUG] de.jflex:jflex:jar:1.3.5:compile [DEBUG] org.apache.commons:commons-lang3:jar:3.3.2:compile [DEBUG] commons-io:commons-io:jar:2.4:compile [DEBUG] log4j:log4j:jar:1.2.17:compile [DEBUG] com.google.code.gson:gson:jar:2.2.4:compile [DEBUG] com.martiansoftware:jsap:jar:2.1:compile [DEBUG] org.javassist:javassist:jar:3.20.0-GA:compile [DEBUG] org.jsweet.candies:es6-promise:jar:0.0.0-SNAPSHOT:compile [DEBUG] org.jsweet.candies:jsweet-core:jar:1.2.0-SNAPSHOT:compile [DEBUG] Created new class realm plugin>org.jsweet:jsweet-maven-plugin:1.1.1 [DEBUG] Importing foreign packages into class realm plugin>org.jsweet:jsweet-maven-plugin:1.1.1 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.jsweet:jsweet-maven-plugin:1.1.1 [DEBUG] Included: org.jsweet:jsweet-maven-plugin:jar:1.1.1 [DEBUG] Included: javax.enterprise:cdi-api:jar:1.0 [DEBUG] Included: javax.annotation:jsr250-api:jar:1.0 [DEBUG] Included: org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.0 [DEBUG] Included: org.codehaus.plexus:plexus-component-annotations:jar:1.5.5 [DEBUG] Included: backport-util-concurrent:backport-util-concurrent:jar:3.1 [DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.11 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:1.5.15 [DEBUG] Included: junit:junit:jar:3.8.1 [DEBUG] Included: org.jsweet:jsweet-transpiler:jar:1.1.1 [DEBUG] Included: edu.princeton.cup:java-cup:jar:10k [DEBUG] Included: de.jflex:jflex:jar:1.3.5 [DEBUG] Included: org.apache.commons:commons-lang3:jar:3.3.2 [DEBUG] Included: commons-io:commons-io:jar:2.4 [DEBUG] Included: log4j:log4j:jar:1.2.17 [DEBUG] Included: com.google.code.gson:gson:jar:2.2.4 [DEBUG] Included: com.martiansoftware:jsap:jar:2.1 [DEBUG] Included: org.javassist:javassist:jar:3.20.0-GA [DEBUG] Included: org.jsweet.candies:es6-promise:jar:0.0.0-SNAPSHOT [DEBUG] Included: org.jsweet.candies:jsweet-core:jar:1.2.0-SNAPSHOT [DEBUG] Configuring mojo org.jsweet:jsweet-maven-plugin:1.1.1:jsweet from plugin realm ClassRealm[plugin>org.jsweet:jsweet-maven-plugin:1.1.1, parent: sun.misc.Launcher$AppClassLoader@4e25154f] [DEBUG] Configuring mojo 'org.jsweet:jsweet-maven-plugin:1.1.1:jsweet' with basic configurator --> [DEBUG] (f) candiesJsOut = C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\webapp\lib [DEBUG] (f) declaration = false [DEBUG] (f) enableAssertions = false [DEBUG] (f) encoding = UTF-8 [DEBUG] (f) jdkHome = C:\Program Files\Java\jre1.8.0_191 [DEBUG] (f) localRepository = id: local url: file:///C:/Users/Pe3791/.m2/repository/ layout: default snapshots: [enabled => true, update => always] releases: [enabled => true, update => always]

[DEBUG] (f) module = none [DEBUG] (f) noRootDirectories = false [DEBUG] (f) outDir = target/js [DEBUG] (f) remoteRepositories = [ id: Nexus-snapshots url: http://nexus.zzzz.net:8081/nexus/repository/maven-snapshots/ layout: default snapshots: [enabled => true, update => daily] releases: [enabled => false, update => daily] , id: Nexus url: http://nexus.zzzz.net:8081/nexus/repository/maven-public/ layout: default snapshots: [enabled => true, update => daily] releases: [enabled => true, update => daily] ] [DEBUG] (f) sourceMap = false [DEBUG] (f) targetVersion = ES3 [DEBUG] (f) tsOut = target/ts [DEBUG] (f) verbose = true [DEBUG] -- end configuration -- [INFO] JSweet transpiler version 1.1.1 (build date: 2016-06-01 16:12:49) [INFO] dependencies=[Dependency {groupId=org.jsweet.candies, artifactId=jsweet-core, version=1.1.0-SNAPSHOT, type=jar}, Dependency {groupId=org.jsweet.candies, artifactId=j4ts, version=0.2.0-SNAPSHOT, type=jar}] [INFO] add direct candy dependency: Dependency {groupId=org.jsweet.candies, artifactId=jsweet-core, version=1.1.0-SNAPSHOT, type=jar}=org.jsweet.candies:jsweet-core:jar:1.1.0-SNAPSHOT:compile [INFO] add direct candy dependency: Dependency {groupId=org.jsweet.candies, artifactId=j4ts, version=0.2.0-SNAPSHOT, type=jar}=org.jsweet.candies:j4ts:jar:0.2.0-SNAPSHOT:compile [DEBUG] localfile:AppletResonancias:jar:0.0.1-SNAPSHOT (selected for null) [DEBUG] org.jsweet.candies:j4ts:jar:0.2.0-SNAPSHOT:compile (selected for compile) [DEBUG] org.jsweet.candies:jsweet-core:jar:1.2.0-SNAPSHOT:compile (selected for compile) [DEBUG] org.jsweet.candies:jsweet-core:jar:1.2.0-SNAPSHOT:compile (removed - nearer found: 1.1.0-SNAPSHOT) [DEBUG] org.jsweet.candies:jsweet-core:jar:1.1.0-SNAPSHOT:compile (selected for compile) [INFO] all candies artifacts: [org.jsweet.candies:j4ts:jar:0.2.0-SNAPSHOT:compile (1; enabled), org.jsweet.candies:jsweet-core:jar:1.1.0-SNAPSHOT:compile (1; enabled)] [INFO] candies jars: [C:\Users\Pe3791.m2\repository\org\jsweet\candies\j4ts\0.2.0-SNAPSHOT\j4ts-0.2.0-SNAPSHOT.jar, C:\Users\Pe3791.m2\repository\org\jsweet\candies\jsweet-core\1.1.0-SNAPSHOT\jsweet-core-1.1.0-SNAPSHOT.jar] [INFO] classpath from maven: C:\Users\Pe3791.m2\repository\org\jsweet\candies\j4ts\0.2.0-SNAPSHOT\j4ts-0.2.0-SNAPSHOT.jar;C:\Users\Pe3791.m2\repository\org\jsweet\candies\jsweet-core\1.1.0-SNAPSHOT\jsweet-core-1.1.0-SNAPSHOT.jar [INFO] jsOut: C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\js [INFO] bundle: false [INFO] tsOut: C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\ts [INFO] declarations: false [INFO] declarationOutDir: null [INFO] candiesJsOutDir: C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\webapp\lib [INFO] ecmaTargetVersion: ES3 [INFO] moduleKind: none [INFO] sourceMap: false [INFO] verbose: true [INFO] jdkHome: C:\Program Files\Java\jre1.8.0_191 2019-08-01 12:39:47.047 DEBUG JSweetConfig:88 - tools.jar already in classpath 2019-08-01 12:39:47.047 INFO JSweetTranspiler:211 - creating transpiler version 1.1.1 (build date: 2016-06-01 16:12:49) 2019-08-01 12:39:47.047 INFO JSweetTranspiler:212 - curent dir: C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias. 2019-08-01 12:39:47.047 INFO JSweetTranspiler:213 - tsOut: C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\ts - C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\ts 2019-08-01 12:39:47.047 INFO JSweetTranspiler:214 - jsOut: C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\js - C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\js 2019-08-01 12:39:47.047 INFO JSweetTranspiler:215 - candyJsOut: C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\webapp\lib 2019-08-01 12:39:47.047 DEBUG JSweetTranspiler:216 - compile classpath: C:\Users\Pe3791.m2\repository\org\jsweet\candies\j4ts\0.2.0-SNAPSHOT\j4ts-0.2.0-SNAPSHOT.jar;C:\Users\Pe3791.m2\repository\org\jsweet\candies\jsweet-core\1.1.0-SNAPSHOT\jsweet-core-1.1.0-SNAPSHOT.jar 2019-08-01 12:39:47.047 DEBUG JSweetTranspiler:217 - runtime classpath: C:\apache-maven-3.3.9\boot\plexus-classworlds-2.5.2.jar 2019-08-01 12:39:47.047 INFO CandiesProcessor:115 - candies processor classpath: C:\Users\Pe3791.m2\repository\org\jsweet\candies\j4ts\0.2.0-SNAPSHOT\j4ts-0.2.0-SNAPSHOT.jar;C:\Users\Pe3791.m2\repository\org\jsweet\candies\jsweet-core\1.1.0-SNAPSHOT\jsweet-core-1.1.0-SNAPSHOT.jar 2019-08-01 12:39:47.047 DEBUG CandiesProcessor:120 - processed classes dir: .jsweet\candies\processed - C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias.jsweet\candies\processed 2019-08-01 12:39:47.047 INFO CandiesProcessor:131 - extracted candies directory: C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\webapp\lib [INFO] source includes: {} [INFO] source excludes: {} [INFO] sources paths: [C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java] [INFO] sourceFiles=[C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java] 2019-08-01 12:39:47.047 DEBUG JSweetTranspiler:231 - extra path: null WARN: candy jsweet-core:1.1.0-SNAPSHOT was generated for a different version of the transpiler (current:1.1.1, candy:1.1.0) 2019-08-01 12:39:47.047 INFO CandiesProcessor:205 - 2 candies found in classpath 2019-08-01 12:39:47.047 INFO CandiesProcessor:159 - candies are up to date 2019-08-01 12:39:47.047 DEBUG JSweetTranspiler:600 - updated classpath: .jsweet\candies\processed;C:\Users\Pe3791.m2\repository\org\jsweet\candies\j4ts\0.2.0-SNAPSHOT\j4ts-0.2.0-SNAPSHOT.jar;C:\Users\Pe3791.m2\repository\org\jsweet\candies\jsweet-core\1.1.0-SNAPSHOT\jsweet-core-1.1.0-SNAPSHOT.jar 2019-08-01 12:39:47.047 DEBUG JSweetTranspiler:294 - classpath: .jsweet\candies\processed;C:\Users\Pe3791.m2\repository\org\jsweet\candies\j4ts\0.2.0-SNAPSHOT\j4ts-0.2.0-SNAPSHOT.jar;C:\Users\Pe3791.m2\repository\org\jsweet\candies\jsweet-core\1.1.0-SNAPSHOT\jsweet-core-1.1.0-SNAPSHOT.jar 2019-08-01 12:39:47.047 DEBUG JSweetTranspiler:295 - bootclasspath: null 2019-08-01 12:39:47.047 DEBUG JSweetTranspiler:296 - strict mode: false 2019-08-01 12:39:48.048 INFO JSweetTranspiler:657 - parsing: RegularFileObject[C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java] 2019-08-01 12:39:48.048 INFO JSweetTranspiler:662 - attribution phase unchecked call to addItem(E) as a member of the raw type javax.swing.JComboBox at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(528) 2019-08-01 12:39:48.048 INFO JSweetTranspiler:704 - scanning C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java... 2019-08-01 12:39:48.048 INFO JSweetTranspiler:718 - output file: localfile\Localfile.ts 2019-08-01 12:39:48.048 INFO JSweetTranspiler:733 - created C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\ts\localfile\Localfile.ts 2019-08-01 12:39:48.048 DEBUG JSweetTranspiler:1010 - ts2js: [C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java] 2019-08-01 12:39:48.048 INFO JSweetTranspiler:1076 - launching tsc... 2019-08-01 12:39:48.048 DEBUG ProcessUtil:178 - run command: C:\Users\Pe3791.jsweet-node_modules\tsc.cmd --target ES3 --rootDir C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\ts --outDir C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\js .tsc-rootfile.ts localfile\Localfile.ts .....jsweet\candies\typings\src\typings\j4ts\0.2.0-SNAPSHOT.tsc-rootfile.d.ts .....jsweet\candies\typings\src\typings\j4ts\0.2.0-SNAPSHOT\bundle.d.ts 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(5,36): error TS2339: Property 'BorderLayout' does not exist on type 'typeof awt'. ERROR: property 'BorderLayout' does not exist on type 'typeof awt' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(4) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(5,36): error TS2694: Namespace 'java.awt' has no exported member 'BorderLayout'. ERROR: namespace 'java.awt' has no exported member 'BorderLayout' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(4) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(9,33): error TS2694: Namespace 'java.awt' has no exported member 'Container'. ERROR: namespace 'java.awt' has no exported member 'Container' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(6) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(11,30): error TS2339: Property 'Cursor' does not exist on type 'typeof awt'. ERROR: property 'Cursor' does not exist on type 'typeof awt' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(7) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(11,30): error TS2694: Namespace 'java.awt' has no exported member 'Cursor'. ERROR: namespace 'java.awt' has no exported member 'Cursor' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(7) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(13,33): error TS2339: Property 'Dimension' does not exist on type 'typeof awt'. ERROR: property 'Dimension' does not exist on type 'typeof awt' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(8) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(13,33): error TS2694: Namespace 'java.awt' has no exported member 'Dimension'. ERROR: namespace 'java.awt' has no exported member 'Dimension' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(8) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(19,40): error TS2694: Namespace 'java.awt.event' has no exported member 'MouseEvent'. ERROR: namespace 'java.awt.event' has no exported member 'MouseEvent' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(11) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(21,43): error TS2694: Namespace 'java.awt.event' has no exported member 'MouseListener'. ERROR: namespace 'java.awt.event' has no exported member 'MouseListener' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(12) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(31,37): error TS2694: Namespace 'java.io' has no exported member 'FilenameFilter'. ERROR: namespace 'java.io' has no exported member 'FilenameFilter' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(17) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(39,58): error TS2694: Namespace 'java.lang.reflect' has no exported member 'InvocationTargetException'. ERROR: namespace 'java.lang.reflect' has no exported member 'InvocationTargetException' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(21) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(41,31): error TS2694: Namespace 'java.text' has no exported member 'Format'. ERROR: namespace 'java.text' has no exported member 'Format' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(22) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(43,41): error TS2339: Property 'SimpleDateFormat' does not exist on type 'typeof text'. ERROR: property 'SimpleDateFormat' does not exist on type 'typeof text' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(23) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(43,41): error TS2694: Namespace 'java.text' has no exported member 'SimpleDateFormat'. ERROR: namespace 'java.text' has no exported member 'SimpleDateFormat' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(23) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(47,33): error TS2339: Property 'Calendar' does not exist on type 'typeof util'. ERROR: property 'Calendar' does not exist on type 'typeof util' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(25) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(47,33): error TS2694: Namespace 'java.util' has no exported member 'Calendar'. ERROR: namespace 'java.util' has no exported member 'Calendar' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(25) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(55,40): error TS2339: Property 'StringTokenizer' does not exist on type 'typeof util'. ERROR: property 'StringTokenizer' does not exist on type 'typeof util' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(29) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(55,40): error TS2694: Namespace 'java.util' has no exported member 'StringTokenizer'. ERROR: namespace 'java.util' has no exported member 'StringTokenizer' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(29) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(57,33): error TS2339: Property 'zip' does not exist on type 'typeof util'. ERROR: property 'zip' does not exist on type 'typeof util' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(30) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(57,33): error TS2694: Namespace 'java.util' has no exported member 'zip'. ERROR: namespace 'java.util' has no exported member 'zip' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(30) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(59,37): error TS2339: Property 'zip' does not exist on type 'typeof util'. ERROR: property 'zip' does not exist on type 'typeof util' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(31) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(59,37): error TS2694: Namespace 'java.util' has no exported member 'zip'. ERROR: namespace 'java.util' has no exported member 'zip' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(31) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(61,32): error TS2339: Property 'zip' does not exist on type 'typeof util'. ERROR: property 'zip' does not exist on type 'typeof util' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(32) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(61,32): error TS2694: Namespace 'java.util' has no exported member 'zip'. ERROR: namespace 'java.util' has no exported member 'zip' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(32) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(63,40): error TS2339: Property 'zip' does not exist on type 'typeof util'. ERROR: property 'zip' does not exist on type 'typeof util' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(33) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(63,40): error TS2694: Namespace 'java.util' has no exported member 'zip'. ERROR: namespace 'java.util' has no exported member 'zip' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(33) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(65,22): error TS2503: Cannot find namespace 'javax'. ERROR: cannot find namespace 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(35) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(65,22): error TS2552: Cannot find name 'javax'. Did you mean 'java'? ERROR: cannot find name 'javax'. Did you mean 'java'? at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(35) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(67,22): error TS2304: Cannot find name 'javax'. ERROR: cannot find name 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(36) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(67,22): error TS2503: Cannot find namespace 'javax'. ERROR: cannot find namespace 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(36) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(69,27): error TS2304: Cannot find name 'javax'. ERROR: cannot find name 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(37) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(69,27): error TS2503: Cannot find namespace 'javax'. ERROR: cannot find namespace 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(37) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(71,21): error TS2503: Cannot find namespace 'javax'. ERROR: cannot find namespace 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(38) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(71,21): error TS2552: Cannot find name 'javax'. Did you mean 'java'? ERROR: cannot find name 'javax'. Did you mean 'java'? at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(38) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(73,27): error TS2304: Cannot find name 'javax'. ERROR: cannot find name 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(39) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(73,27): error TS2503: Cannot find namespace 'javax'. ERROR: cannot find namespace 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(39) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(75,29): error TS2304: Cannot find name 'javax'. ERROR: cannot find name 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(40) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(75,29): error TS2503: Cannot find namespace 'javax'. ERROR: cannot find namespace 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(40) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(77,27): error TS2304: Cannot find name 'javax'. ERROR: cannot find name 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(41) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(77,27): error TS2503: Cannot find namespace 'javax'. ERROR: cannot find namespace 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(41) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(79,23): error TS2304: Cannot find name 'netscape'. ERROR: cannot find name 'netscape' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(43) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(79,23): error TS2503: Cannot find namespace 'netscape'. ERROR: cannot find namespace 'netscape' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(43) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(110,18): error TS2339: Property 'getContentPane' does not exist on type 'Localfile'. ERROR: property 'getContentPane' does not exist on type 'Localfile' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(61) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(112,18): error TS2339: Property 'getContentPane' does not exist on type 'Localfile'. ERROR: property 'getContentPane' does not exist on type 'Localfile' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(61) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(122,38): error TS2339: Property 'getParameter' does not exist on type 'Localfile'. ERROR: property 'getParameter' does not exist on type 'Localfile' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(61) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(122,80): error TS2339: Property 'getParameter' does not exist on type 'Localfile'. ERROR: property 'getParameter' does not exist on type 'Localfile' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(61) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(124,49): error TS2339: Property 'getParameter' does not exist on type 'Localfile'. ERROR: property 'getParameter' does not exist on type 'Localfile' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(61) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(126,53): error TS2339: Property 'getParameter' does not exist on type 'Localfile'. ERROR: property 'getParameter' does not exist on type 'Localfile' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(61) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(127,48): error TS2339: Property 'getParameter' does not exist on type 'Localfile'. ERROR: property 'getParameter' does not exist on type 'Localfile' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(61) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(133,41): error TS2694: Namespace 'java.lang' has no exported member 'ProcessBuilder'. ERROR: namespace 'java.lang' has no exported member 'ProcessBuilder' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(61) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(133,72): error TS2339: Property 'ProcessBuilder' does not exist on type 'typeof lang'. ERROR: property 'ProcessBuilder' does not exist on type 'typeof lang' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(61) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(137,41): error TS2694: Namespace 'java.lang' has no exported member 'Process'. ERROR: namespace 'java.lang' has no exported member 'Process' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(61) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(150,75): error TS2339: Property 'start' does not exist on type 'PrintStream'. ERROR: property 'start' does not exist on type 'PrintStream' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(61) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(160,47): error TS2694: Namespace 'java.lang' has no exported member 'Runtime'. ERROR: namespace 'java.lang' has no exported member 'Runtime' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(61) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(160,67): error TS2339: Property 'Runtime' does not exist on type 'typeof lang'. ERROR: property 'Runtime' does not exist on type 'typeof lang' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(61) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(161,46): error TS2694: Namespace 'java.lang' has no exported member 'Process'. ERROR: namespace 'java.lang' has no exported member 'Process' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(61) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(173,33): error TS2345: Argument of type 'this' is not assignable to parameter of type 'Applet'. ERROR: argument of type 'this' is not assignable to parameter of type 'Applet' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(61) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - Type 'Localfile' is missing the following properties from type 'Applet': container, backgroundColor, layout, paint, and 3 more. 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(174,18): error TS2339: Property 'setName' does not exist on type 'Localfile'. ERROR: property 'setName' does not exist on type 'Localfile' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(61) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(175,39): error TS2339: Property 'getContentPane' does not exist on type 'Localfile'. ERROR: property 'getContentPane' does not exist on type 'Localfile' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(61) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(176,33): error TS2339: Property 'getParameter' does not exist on type 'Localfile'. ERROR: property 'getParameter' does not exist on type 'Localfile' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(61) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(184,22): error TS2339: Property 'setSize' does not exist on type 'Localfile'. ERROR: property 'setSize' does not exist on type 'Localfile' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(61) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(190,26): error TS2339: Property 'setCursor' does not exist on type 'Localfile'. ERROR: property 'setCursor' does not exist on type 'Localfile' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(61) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(191,56): error TS2339: Property 'start' does not exist on type 'ThreadComprime'. ERROR: property 'start' does not exist on type 'ThreadComprime' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(61) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(192,26): error TS2339: Property 'setCursor' does not exist on type 'Localfile'. ERROR: property 'setCursor' does not exist on type 'Localfile' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(61) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(203,47): error TS2694: Namespace 'java.lang' has no exported member 'Runtime'. ERROR: namespace 'java.lang' has no exported member 'Runtime' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(61) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(203,67): error TS2339: Property 'Runtime' does not exist on type 'typeof lang'. ERROR: property 'Runtime' does not exist on type 'typeof lang' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(61) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(204,46): error TS2694: Namespace 'java.lang' has no exported member 'Process'. ERROR: namespace 'java.lang' has no exported member 'Process' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(61) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(231,41): error TS2339: Property 'replaceAll' does not exist on type 'string'. ERROR: property 'replaceAll' does not exist on type 'string' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(61) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(335,55): error TS2339: Property 'Thread' does not exist on type 'typeof lang'. ERROR: property 'Thread' does not exist on type 'typeof lang' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(64) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(341,44): error TS2341: Property 'pathDstZip' is private and only accessible within class 'Localfile'. ERROR: property 'pathDstZip' is private and only accessible within class 'Localfile' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(70) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(435,81): error TS2341: Property 'applet' is private and only accessible within class 'Localfile'. ERROR: property 'applet' is private and only accessible within class 'Localfile' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(216) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(439,38): error TS2339: Property 'exit' does not exist on type 'typeof System'. ERROR: property 'exit' does not exist on type 'typeof System' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(218) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(473,35): error TS2345: Argument of type 'ThreadComprime$0' is not assignable to parameter of type '() => void'. ERROR: argument of type 'ThreadComprime$0' is not assignable to parameter of type '() => void' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(256) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - Type 'ThreadComprime$0' provides no match for the signature '(): void'. 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(513,39): error TS2345: Argument of type 'ThreadComprime$1' is not assignable to parameter of type '() => void'. ERROR: argument of type 'ThreadComprime$1' is not assignable to parameter of type '() => void' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(256) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - Type 'ThreadComprime$1' provides no match for the signature '(): void'. 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(581,44): error TS2339: Property 'endsWith' does not exist on type 'string'. ERROR: property 'endsWith' does not exist on type 'string' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(590,41): error TS2304: Cannot find name 'javax'. ERROR: cannot find name 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(604,22): error TS2576: Property 'serialVersionUID' is a static member of type 'Contenedor' ERROR: property 'serialVersionUID' is a static member of type 'Contenedor' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(620,22): error TS2339: Property 'setBorder' does not exist on type 'Contenedor'. ERROR: property 'setBorder' does not exist on type 'Contenedor' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(622,36): error TS2304: Cannot find name 'javax'. ERROR: cannot find name 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(623,36): error TS2304: Cannot find name 'javax'. ERROR: cannot find name 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(624,36): error TS2304: Cannot find name 'javax'. ERROR: cannot find name 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(625,37): error TS2304: Cannot find name 'javax'. ERROR: cannot find name 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(626,36): error TS2304: Cannot find name 'javax'. ERROR: cannot find name 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(627,36): error TS2304: Cannot find name 'javax'. ERROR: cannot find name 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(628,36): error TS2304: Cannot find name 'javax'. ERROR: cannot find name 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(629,36): error TS2304: Cannot find name 'javax'. ERROR: cannot find name 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(630,36): error TS2304: Cannot find name 'javax'. ERROR: cannot find name 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(631,36): error TS2304: Cannot find name 'javax'. ERROR: cannot find name 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(632,39): error TS2304: Cannot find name 'javax'. ERROR: cannot find name 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(633,36): error TS2304: Cannot find name 'javax'. ERROR: cannot find name 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(634,36): error TS2304: Cannot find name 'javax'. ERROR: cannot find name 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(635,37): error TS2304: Cannot find name 'javax'. ERROR: cannot find name 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(636,22): error TS2339: Property 'setLayout' does not exist on type 'Contenedor'. ERROR: property 'setLayout' does not exist on type 'Contenedor' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(636,45): error TS2339: Property 'BorderLayout' does not exist on type 'typeof awt'. ERROR: property 'BorderLayout' does not exist on type 'typeof awt' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(637,53): error TS2339: Property 'BorderLayout' does not exist on type 'typeof awt'. ERROR: property 'BorderLayout' does not exist on type 'typeof awt' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(646,57): error TS2339: Property 'BorderLayout' does not exist on type 'typeof awt'. ERROR: property 'BorderLayout' does not exist on type 'typeof awt' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(647,53): error TS2339: Property 'BorderLayout' does not exist on type 'typeof awt'. ERROR: property 'BorderLayout' does not exist on type 'typeof awt' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(653,57): error TS2339: Property 'BorderLayout' does not exist on type 'typeof awt'. ERROR: property 'BorderLayout' does not exist on type 'typeof awt' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(665,57): error TS2339: Property 'BorderLayout' does not exist on type 'typeof awt'. ERROR: property 'BorderLayout' does not exist on type 'typeof awt' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(666,57): error TS2339: Property 'BorderLayout' does not exist on type 'typeof awt'. ERROR: property 'BorderLayout' does not exist on type 'typeof awt' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(667,53): error TS2339: Property 'BorderLayout' does not exist on type 'typeof awt'. ERROR: property 'BorderLayout' does not exist on type 'typeof awt' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(674,57): error TS2339: Property 'BorderLayout' does not exist on type 'typeof awt'. ERROR: property 'BorderLayout' does not exist on type 'typeof awt' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(675,57): error TS2339: Property 'BorderLayout' does not exist on type 'typeof awt'. ERROR: property 'BorderLayout' does not exist on type 'typeof awt' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(676,22): error TS2339: Property 'add' does not exist on type 'Contenedor'. ERROR: property 'add' does not exist on type 'Contenedor' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(676,49): error TS2339: Property 'BorderLayout' does not exist on type 'typeof awt'. ERROR: property 'BorderLayout' does not exist on type 'typeof awt' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(682,41): error TS2339: Property 'endsWith' does not exist on type 'string'. ERROR: property 'endsWith' does not exist on type 'string' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(706,66): error TS2339: Property 'black' does not exist on type 'typeof Color'. ERROR: property 'black' does not exist on type 'typeof Color' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(709,66): error TS2339: Property 'RED' does not exist on type 'typeof Color'. ERROR: property 'RED' does not exist on type 'typeof Color' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(714,48): error TS2339: Property 'endsWith' does not exist on type 'string'. ERROR: property 'endsWith' does not exist on type 'string' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(721,84): error TS2341: Property 'pathDstZip' is private and only accessible within class 'Localfile'. ERROR: property 'pathDstZip' is private and only accessible within class 'Localfile' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(729,58): error TS2341: Property 'pathDstZip' is private and only accessible within class 'Localfile'. ERROR: property 'pathDstZip' is private and only accessible within class 'Localfile' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(734,26): error TS2339: Property 'setCursor' does not exist on type 'Contenedor'. ERROR: property 'setCursor' does not exist on type 'Contenedor' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(736,24): error TS2339: Property 'start' does not exist on type 'ThreadComprime'. ERROR: property 'start' does not exist on type 'ThreadComprime' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(739,52): error TS2341: Property 'pathDstZip' is private and only accessible within class 'Localfile'. ERROR: property 'pathDstZip' is private and only accessible within class 'Localfile' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(745,24): error TS2503: Cannot find namespace 'javax'. ERROR: cannot find namespace 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(747,24): error TS2503: Cannot find namespace 'javax'. ERROR: cannot find namespace 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(749,26): error TS2503: Cannot find namespace 'javax'. ERROR: cannot find namespace 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(751,23): error TS2503: Cannot find namespace 'javax'. ERROR: cannot find namespace 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(753,23): error TS2503: Cannot find namespace 'javax'. ERROR: cannot find namespace 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(755,23): error TS2503: Cannot find namespace 'javax'. ERROR: cannot find namespace 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(757,23): error TS2503: Cannot find namespace 'javax'. ERROR: cannot find namespace 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(759,23): error TS2503: Cannot find namespace 'javax'. ERROR: cannot find namespace 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(761,23): error TS2503: Cannot find namespace 'javax'. ERROR: cannot find namespace 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(763,23): error TS2503: Cannot find namespace 'javax'. ERROR: cannot find namespace 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(765,23): error TS2503: Cannot find namespace 'javax'. ERROR: cannot find namespace 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(767,23): error TS2503: Cannot find namespace 'javax'. ERROR: cannot find namespace 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(769,23): error TS2503: Cannot find namespace 'javax'. ERROR: cannot find namespace 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(771,23): error TS2503: Cannot find namespace 'javax'. ERROR: cannot find namespace 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(821,52): error TS2339: Property 'Thread' does not exist on type 'typeof lang'. ERROR: property 'Thread' does not exist on type 'typeof lang' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(361) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(860,22): error TS2576: Property 'serialVersionUID' is a static member of type 'Localfile$0' ERROR: property 'serialVersionUID' is a static member of type 'Localfile$0' at localfile\Localfile.ts(860) 2019-08-01 12:39:50.050 INFO JSweetTranspiler:616 - transpilation process finished in 3067 ms [ERROR] transpilation failed org.apache.maven.plugin.MojoFailureException: transpilation failed with 130 error(s) and 1 warning(s) at org.jsweet.AbstractJSweetMojo.transpile(AbstractJSweetMojo.java:304) at org.jsweet.JSweetMojo.execute(JSweetMojo.java:41) at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134) at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:207) 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(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) 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) [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 3.783 s [INFO] Finished at: 2019-08-01T12:39:50+02:00 [INFO] Final Memory: 14M/157M [INFO] ------------------------------------------------------------------------ [ERROR] Failed to execute goal org.jsweet:jsweet-maven-plugin:1.1.1:jsweet (generate-js) on project AppletResonancias: transpilation failed: transpilation failed with 130 error(s) and 1 warning(s) -> [Help 1] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.jsweet:jsweet-maven-plugin:1.1.1:jsweet (generate-js) on project AppletResonancias: transpilation failed 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(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) 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: transpilation failed at org.jsweet.AbstractJSweetMojo.transpile(AbstractJSweetMojo.java:318) at org.jsweet.JSweetMojo.execute(JSweetMojo.java:41) 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.apache.maven.plugin.MojoFailureException: transpilation failed with 130 error(s) and 1 warning(s) at org.jsweet.AbstractJSweetMojo.transpile(AbstractJSweetMojo.java:304) ... 23 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 `

RaulMetro commented 5 years ago

I tried to create a very simple Applet and I get the same errors apparently

Details

Applet

package localfile;

import java.awt.GridLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener;

import javax.swing.JApplet; import javax.swing.JButton;

public class Localfile extends JApplet {

private static final long serialVersionUID = 1L;

public void init() {

    GridLayout gl = new GridLayout(4, 5);
    setLayout(gl);

    // creating instance of JButton
    JButton b = new JButton("Click me!");

    // x axis, y axis, width, height
    b.setBounds(80, 100, 250, 40);

    // add event listener
    b.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        System.out.println("Hello world!");
      }
    });
}

}

LOG

Apache Maven 3.3.9 (bb52d8502b132ec0a5a3f4c09453c07478323dc5; 2015-11-10T17:41:47+01:00) Maven home: C:\apache-maven-3.3.9 Java version: 1.8.0_191, vendor: Oracle Corporation Java home: C:\Program Files\Java\jre1.8.0_191 Default locale: es_ES, platform encoding: Cp1252 OS name: "windows 10", version: "10.0", arch: "amd64", family: "dos" [DEBUG] Created new class realm maven.api [DEBUG] Importing foreign packages into class realm maven.api [DEBUG] Imported: javax.enterprise.inject. < plexus.core [DEBUG] Imported: javax.enterprise.util. < plexus.core [DEBUG] Imported: javax.inject. < plexus.core [DEBUG] Imported: org.apache.maven. < plexus.core [DEBUG] Imported: org.apache.maven.artifact < plexus.core [DEBUG] Imported: org.apache.maven.classrealm < plexus.core [DEBUG] Imported: org.apache.maven.cli < plexus.core [DEBUG] Imported: org.apache.maven.configuration < plexus.core [DEBUG] Imported: org.apache.maven.exception < plexus.core [DEBUG] Imported: org.apache.maven.execution < plexus.core [DEBUG] Imported: org.apache.maven.execution.scope < plexus.core [DEBUG] Imported: org.apache.maven.lifecycle < plexus.core [DEBUG] Imported: org.apache.maven.model < plexus.core [DEBUG] Imported: org.apache.maven.monitor < plexus.core [DEBUG] Imported: org.apache.maven.plugin < plexus.core [DEBUG] Imported: org.apache.maven.profiles < plexus.core [DEBUG] Imported: org.apache.maven.project < plexus.core [DEBUG] Imported: org.apache.maven.reporting < plexus.core [DEBUG] Imported: org.apache.maven.repository < plexus.core [DEBUG] Imported: org.apache.maven.rtinfo < plexus.core [DEBUG] Imported: org.apache.maven.settings < plexus.core [DEBUG] Imported: org.apache.maven.toolchain < plexus.core [DEBUG] Imported: org.apache.maven.usability < plexus.core [DEBUG] Imported: org.apache.maven.wagon. < plexus.core [DEBUG] Imported: org.apache.maven.wagon.authentication < plexus.core [DEBUG] Imported: org.apache.maven.wagon.authorization < plexus.core [DEBUG] Imported: org.apache.maven.wagon.events < plexus.core [DEBUG] Imported: org.apache.maven.wagon.observers < plexus.core [DEBUG] Imported: org.apache.maven.wagon.proxy < plexus.core [DEBUG] Imported: org.apache.maven.wagon.repository < plexus.core [DEBUG] Imported: org.apache.maven.wagon.resource < plexus.core [DEBUG] Imported: org.codehaus.classworlds < plexus.core [DEBUG] Imported: org.codehaus.plexus. < plexus.core [DEBUG] Imported: org.codehaus.plexus.classworlds < plexus.core [DEBUG] Imported: org.codehaus.plexus.component < plexus.core [DEBUG] Imported: org.codehaus.plexus.configuration < plexus.core [DEBUG] Imported: org.codehaus.plexus.container < plexus.core [DEBUG] Imported: org.codehaus.plexus.context < plexus.core [DEBUG] Imported: org.codehaus.plexus.lifecycle < plexus.core [DEBUG] Imported: org.codehaus.plexus.logging < plexus.core [DEBUG] Imported: org.codehaus.plexus.personality < plexus.core [DEBUG] Imported: org.codehaus.plexus.util.xml.Xpp3Dom < plexus.core [DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParser < plexus.core [DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlPullParserException < plexus.core [DEBUG] Imported: org.codehaus.plexus.util.xml.pull.XmlSerializer < plexus.core [DEBUG] Imported: org.eclipse.aether. < plexus.core [DEBUG] Imported: org.eclipse.aether.artifact < plexus.core [DEBUG] Imported: org.eclipse.aether.collection < plexus.core [DEBUG] Imported: org.eclipse.aether.deployment < plexus.core [DEBUG] Imported: org.eclipse.aether.graph < plexus.core [DEBUG] Imported: org.eclipse.aether.impl < plexus.core [DEBUG] Imported: org.eclipse.aether.installation < plexus.core [DEBUG] Imported: org.eclipse.aether.internal.impl < plexus.core [DEBUG] Imported: org.eclipse.aether.metadata < plexus.core [DEBUG] Imported: org.eclipse.aether.repository < plexus.core [DEBUG] Imported: org.eclipse.aether.resolution < plexus.core [DEBUG] Imported: org.eclipse.aether.spi < plexus.core [DEBUG] Imported: org.eclipse.aether.transfer < plexus.core [DEBUG] Imported: org.eclipse.aether.version < plexus.core [DEBUG] Imported: org.slf4j. < plexus.core [DEBUG] Imported: org.slf4j.helpers. < plexus.core [DEBUG] Imported: org.slf4j.spi. < plexus.core [DEBUG] Populating class realm maven.api [INFO] Error stacktraces are turned on. [DEBUG] Reading global settings from C:\apache-maven-3.3.9\conf\settings.xml [DEBUG] Reading user settings from C:\apache-maven-3.3.9\conf\settings.xml [DEBUG] Reading global toolchains from C:\apache-maven-3.3.9\conf\toolchains.xml [DEBUG] Reading user toolchains from C:\Users\Pe3791.m2\toolchains.xml [DEBUG] Using local repository at C:\Users\Pe3791.m2\repository [DEBUG] Using manager EnhancedLocalRepositoryManager with priority 10.0 for C:\Users\Pe3791.m2\repository [INFO] Scanning for projects... [DEBUG] Using mirror Nexus-snapshots (http://nexus.zzzz.net:8081/nexus/repository/maven-snapshots/) for public-snapshots (http://public-snapshots). [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for central (http://central). [DEBUG] Extension realms for project localfile:AppletResonancias:jar:0.0.1-SNAPSHOT: (none) [DEBUG] Looking up lifecyle mappings for packaging jar from ClassRealm[plexus.core, parent: null] [DEBUG] === REACTOR BUILD PLAN ================================================ [DEBUG] Project: localfile:AppletResonancias:jar:0.0.1-SNAPSHOT [DEBUG] Tasks: [clean, compile] [DEBUG] Style: Regular [DEBUG] ======================================================================= [INFO]
[INFO] ------------------------------------------------------------------------ [INFO] Building AppletResonancias 0.0.1-SNAPSHOT [INFO] ------------------------------------------------------------------------ [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for apache.snapshots (http://repository.apache.org/snapshots). [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for central (https://repo.maven.apache.org/maven2). [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for jsweet-release (http://repository.jsweet.org/artifactory/libs-release-local). [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for jsweet-snapshot (http://repository.jsweet.org/artifactory/libs-snapshot-local). [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [DEBUG] Lifecycle default -> [validate, initialize, generate-sources, process-sources, generate-resources, process-resources, compile, process-classes, generate-test-sources, process-test-sources, generate-test-resources, process-test-resources, test-compile, process-test-classes, test, prepare-package, package, pre-integration-test, integration-test, post-integration-test, verify, install, deploy] [DEBUG] Lifecycle clean -> [pre-clean, clean, post-clean] [DEBUG] Lifecycle site -> [pre-site, site, post-site, site-deploy] [DEBUG] === PROJECT BUILD PLAN ================================================ [DEBUG] Project: localfile:AppletResonancias:0.0.1-SNAPSHOT [DEBUG] Dependencies (collect): [] [DEBUG] Dependencies (resolve): [compile] [DEBUG] Repositories (dependencies): [Nexus-snapshots (http://nexus.zzzz.net:8081/nexus/repository/maven-snapshots/, default, snapshots), Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/, default, releases+snapshots)] [DEBUG] Repositories (plugins) : [Nexus-snapshots (http://nexus.zzzz.net:8081/nexus/repository/maven-snapshots/, default, snapshots), Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/, default, releases+snapshots)] [DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-clean-plugin:2.5:clean (default-clean) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>

${clean.excludeDefaultDirectories} ${maven.clean.failOnError} ${clean.followSymLinks} ${maven.clean.retryOnError} ${clean.skip} ${clean.verbose}

[DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.jsweet:jsweet-maven-plugin:1.1.1:jsweet (generate-js) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>

webapp/lib target/js ES3 target/ts true

[DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-resources-plugin:2.6:resources (default-resources) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>

${encoding} ${maven.resources.escapeString} ${maven.resources.escapeWindowsPaths} ${maven.resources.includeEmptyDirs} ${maven.resources.overwrite} ${maven.resources.supportMultiLineFiltering}

[DEBUG] ----------------------------------------------------------------------- [DEBUG] Goal: org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) [DEBUG] Style: Regular [DEBUG] Configuration: <?xml version="1.0" encoding="UTF-8"?>

${maven.compiler.compilerId} ${maven.compiler.compilerReuseStrategy} ${maven.compiler.compilerVersion} ${maven.compiler.debug} ${maven.compiler.debuglevel} ${encoding} ${maven.compiler.executable} ${maven.compiler.failOnError} ${maven.compiler.forceJavacCompilerUse} true ${maven.compiler.maxmem} ${maven.compiler.meminitial} ${mojoExecution} ${maven.compiler.optimize} ${maven.compiler.showDeprecation} ${maven.compiler.showWarnings} ${maven.main.skip} ${maven.compiler.skipMultiThreadWarning} 1.8 ${lastModGranularityMs} 1.8 ${maven.compiler.useIncrementalCompilation} ${maven.compiler.verbose}

[DEBUG] ======================================================================= [DEBUG] Could not find metadata org.jsweet.candies:jsweet-core:1.1.0-SNAPSHOT/maven-metadata.xml in local (C:\Users\Pe3791.m2\repository) [DEBUG] Failure to find org.jsweet.candies:jsweet-core:1.1.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-snapshots/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus-snapshots has elapsed or updates are forced [DEBUG] Failure to find org.jsweet.candies:jsweet-core:1.1.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-public/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus has elapsed or updates are forced [DEBUG] Could not find metadata org.jsweet.candies:jsweet-core:1.1.0-SNAPSHOT/maven-metadata.xml in local (C:\Users\Pe3791.m2\repository) [DEBUG] Failure to find org.jsweet.candies:jsweet-core:1.1.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-snapshots/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus-snapshots has elapsed or updates are forced [DEBUG] Failure to find org.jsweet.candies:jsweet-core:1.1.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-public/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus has elapsed or updates are forced [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for jsweet-central (http://repository.jsweet.org/artifactory/libs-release-local). [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for jsweet-snapshots (http://repository.jsweet.org/artifactory/libs-snapshot-local). [DEBUG] Could not find metadata org.jsweet.candies:j4ts:0.2.0-SNAPSHOT/maven-metadata.xml in local (C:\Users\Pe3791.m2\repository) [DEBUG] Failure to find org.jsweet.candies:j4ts:0.2.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-snapshots/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus-snapshots has elapsed or updates are forced [DEBUG] Failure to find org.jsweet.candies:j4ts:0.2.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-public/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus has elapsed or updates are forced [DEBUG] Could not find metadata org.jsweet.candies:j4ts:0.2.0-SNAPSHOT/maven-metadata.xml in local (C:\Users\Pe3791.m2\repository) [DEBUG] Failure to find org.jsweet.candies:j4ts:0.2.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-snapshots/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus-snapshots has elapsed or updates are forced [DEBUG] Failure to find org.jsweet.candies:j4ts:0.2.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-public/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus has elapsed or updates are forced [DEBUG] Could not find metadata org.jsweet.candies:jsweet-core:1.2.0-SNAPSHOT/maven-metadata.xml in local (C:\Users\Pe3791.m2\repository) [DEBUG] Failure to find org.jsweet.candies:jsweet-core:1.2.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-snapshots/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus-snapshots has elapsed or updates are forced [DEBUG] Failure to find org.jsweet.candies:jsweet-core:1.2.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-public/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus has elapsed or updates are forced [DEBUG] Could not find metadata org.jsweet.candies:jsweet-core:1.2.0-SNAPSHOT/maven-metadata.xml in local (C:\Users\Pe3791.m2\repository) [DEBUG] Failure to find org.jsweet.candies:jsweet-core:1.2.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-snapshots/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus-snapshots has elapsed or updates are forced [DEBUG] Failure to find org.jsweet.candies:jsweet-core:1.2.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-public/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus has elapsed or updates are forced [DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=4, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=2, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=0, ConflictResolver.conflictItemCount=3, DefaultDependencyCollector.collectTime=32, DefaultDependencyCollector.transformTime=0} [DEBUG] localfile:AppletResonancias:jar:0.0.1-SNAPSHOT [DEBUG] org.jsweet.candies:jsweet-core:jar:1.1.0-SNAPSHOT:compile [DEBUG] org.jsweet.candies:j4ts:jar:0.2.0-SNAPSHOT:compile [INFO] [INFO] --- maven-clean-plugin:2.5:clean (default-clean) @ AppletResonancias --- [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository). [DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=3, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=3, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=0, ConflictResolver.conflictItemCount=3, DefaultDependencyCollector.collectTime=15, DefaultDependencyCollector.transformTime=0} [DEBUG] org.apache.maven.plugins:maven-clean-plugin:jar:2.5: [DEBUG] org.apache.maven:maven-plugin-api:jar:2.0.6:compile [DEBUG] org.codehaus.plexus:plexus-utils:jar:3.0:compile [DEBUG] Created new class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.5 [DEBUG] Importing foreign packages into class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.5 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.apache.maven.plugins:maven-clean-plugin:2.5 [DEBUG] Included: org.apache.maven.plugins:maven-clean-plugin:jar:2.5 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:3.0 [DEBUG] Configuring mojo org.apache.maven.plugins:maven-clean-plugin:2.5:clean from plugin realm ClassRealm[plugin>org.apache.maven.plugins:maven-clean-plugin:2.5, parent: sun.misc.Launcher$AppClassLoader@4e25154f] [DEBUG] Configuring mojo 'org.apache.maven.plugins:maven-clean-plugin:2.5:clean' with basic configurator --> [DEBUG] (f) directory = C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target [DEBUG] (f) excludeDefaultDirectories = false [DEBUG] (f) failOnError = true [DEBUG] (f) followSymLinks = false [DEBUG] (f) outputDirectory = C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes [DEBUG] (f) reportDirectory = C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\site [DEBUG] (f) retryOnError = true [DEBUG] (f) skip = false [DEBUG] (f) testOutputDirectory = C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\test-classes [DEBUG] -- end configuration -- [INFO] Deleting C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target [INFO] Deleting file C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\ts\applet\AppletExample.ts [INFO] Deleting directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\ts\applet [INFO] Deleting file C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\ts.tsc-rootfile.ts [INFO] Deleting directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\ts [INFO] Deleting directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\test-classes [INFO] Deleting file C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\maven-status\maven-compiler-plugin\compile\default-compile\inputFiles.lst [INFO] Deleting file C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\maven-status\maven-compiler-plugin\compile\default-compile\createdFiles.lst [INFO] Deleting directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\maven-status\maven-compiler-plugin\compile\default-compile [INFO] Deleting directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\maven-status\maven-compiler-plugin\compile [INFO] Deleting directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\maven-status\maven-compiler-plugin [INFO] Deleting directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\maven-status [INFO] Deleting file C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\js\applet\AppletExample.js [INFO] Deleting directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\js\applet [INFO] Deleting file C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\js.tsc-rootfile.js [INFO] Deleting directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\js [INFO] Deleting directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\generated-sources\annotations [INFO] Deleting directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\generated-sources [INFO] Deleting file C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes\org.codehaus.plexus.compiler.javac.JavacCompiler4735215772239012414arguments [INFO] Deleting file C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes\META-INF\maven\localfile\AppletResonancias\pom.xml [INFO] Deleting file C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes\META-INF\maven\localfile\AppletResonancias\pom.properties [INFO] Deleting directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes\META-INF\maven\localfile\AppletResonancias [INFO] Deleting directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes\META-INF\maven\localfile [INFO] Deleting directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes\META-INF\maven [INFO] Deleting file C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes\META-INF\MANIFEST.MF [INFO] Deleting directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes\META-INF [INFO] Deleting file C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes\localfile\Localfile.class [INFO] Deleting file C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes\localfile\Localfile$1.class [INFO] Deleting directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes\localfile [INFO] Deleting file C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes\javac.bat [INFO] Deleting file C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes\applet\AppletExample.class [INFO] Deleting directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes\applet [INFO] Deleting directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes [INFO] Deleting directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target [DEBUG] Skipping non-existing directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\classes [DEBUG] Skipping non-existing directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\test-classes [DEBUG] Skipping non-existing directory C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\site [INFO] [INFO] --- jsweet-maven-plugin:1.1.1:jsweet (generate-js) @ AppletResonancias --- [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots). [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for repository.jboss.org (http://repository.jboss.org/maven2). [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for snapshots.jboss.org (http://snapshots.jboss.org/maven2). [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for oss.sonatype.org/jboss-snapshots (http://oss.sonatype.org/content/repositories/jboss-snapshots). [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for snapshots (http://snapshots.maven.codehaus.org/maven2). [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for central (http://repo1.maven.org/maven2). [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for jsweet-external (http://repository.jsweet.org/artifactory/ext-release-local). [DEBUG] Using mirror Nexus (http://nexus.zzzz.net:8081/nexus/repository/maven-public/) for maven2-repository.dev.java.net (http://download.java.net/maven/2/). [DEBUG] Could not find metadata org.jsweet.candies:es6-promise:0.0.0-SNAPSHOT/maven-metadata.xml in local (C:\Users\Pe3791.m2\repository) [DEBUG] Failure to find org.jsweet.candies:es6-promise:0.0.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-snapshots/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus-snapshots has elapsed or updates are forced [DEBUG] Failure to find org.jsweet.candies:es6-promise:0.0.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-public/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus has elapsed or updates are forced [DEBUG] Could not find metadata org.jsweet.candies:es6-promise:0.0.0-SNAPSHOT/maven-metadata.xml in local (C:\Users\Pe3791.m2\repository) [DEBUG] Failure to find org.jsweet.candies:es6-promise:0.0.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-snapshots/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus-snapshots has elapsed or updates are forced [DEBUG] Failure to find org.jsweet.candies:es6-promise:0.0.0-SNAPSHOT/maven-metadata.xml in http://nexus.zzzz.net:8081/nexus/repository/maven-public/ was cached in the local repository, resolution will not be reattempted until the update interval of Nexus has elapsed or updates are forced [DEBUG] Dependency collection stats: {ConflictMarker.analyzeTime=0, ConflictMarker.markTime=0, ConflictMarker.nodeCount=58, ConflictIdSorter.graphTime=0, ConflictIdSorter.topsortTime=0, ConflictIdSorter.conflictIdCount=34, ConflictIdSorter.conflictIdCycleCount=0, ConflictResolver.totalTime=0, ConflictResolver.conflictItemCount=55, DefaultDependencyCollector.collectTime=219, DefaultDependencyCollector.transformTime=0} [DEBUG] org.jsweet:jsweet-maven-plugin:jar:1.1.1: [DEBUG] org.apache.maven:maven-plugin-api:jar:3.3.3:compile [DEBUG] org.apache.maven:maven-model:jar:3.3.3:compile [DEBUG] org.eclipse.sisu:org.eclipse.sisu.plexus:jar:0.3.0:compile [DEBUG] javax.enterprise:cdi-api:jar:1.0:compile [DEBUG] javax.annotation:jsr250-api:jar:1.0:compile [DEBUG] javax.inject:javax.inject:jar:1:compile [DEBUG] org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.0:compile [DEBUG] org.codehaus.plexus:plexus-component-annotations:jar:1.5.5:compile [DEBUG] org.codehaus.plexus:plexus-classworlds:jar:2.5.2:compile [DEBUG] org.apache.maven:maven-project:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-settings:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-profile:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-artifact-manager:jar:2.2.1:compile [DEBUG] org.apache.maven:maven-repository-metadata:jar:2.2.1:compile [DEBUG] backport-util-concurrent:backport-util-concurrent:jar:3.1:compile [DEBUG] org.apache.maven:maven-plugin-registry:jar:2.2.1:compile [DEBUG] org.codehaus.plexus:plexus-interpolation:jar:1.11:compile [DEBUG] org.codehaus.plexus:plexus-utils:jar:1.5.15:compile [DEBUG] org.codehaus.plexus:plexus-container-default:jar:1.0-alpha-9-stable-1:compile [DEBUG] junit:junit:jar:3.8.1:compile [DEBUG] classworlds:classworlds:jar:1.1-alpha-2:compile [DEBUG] org.apache.maven:maven-artifact:jar:2.0:compile [DEBUG] org.jsweet:jsweet-transpiler:jar:1.1.1:compile [DEBUG] edu.princeton.cup:java-cup:jar:10k:compile [DEBUG] de.jflex:jflex:jar:1.3.5:compile [DEBUG] org.apache.commons:commons-lang3:jar:3.3.2:compile [DEBUG] commons-io:commons-io:jar:2.4:compile [DEBUG] log4j:log4j:jar:1.2.17:compile [DEBUG] com.google.code.gson:gson:jar:2.2.4:compile [DEBUG] com.martiansoftware:jsap:jar:2.1:compile [DEBUG] org.javassist:javassist:jar:3.20.0-GA:compile [DEBUG] org.jsweet.candies:es6-promise:jar:0.0.0-SNAPSHOT:compile [DEBUG] org.jsweet.candies:jsweet-core:jar:1.2.0-SNAPSHOT:compile [DEBUG] Created new class realm plugin>org.jsweet:jsweet-maven-plugin:1.1.1 [DEBUG] Importing foreign packages into class realm plugin>org.jsweet:jsweet-maven-plugin:1.1.1 [DEBUG] Imported: < maven.api [DEBUG] Populating class realm plugin>org.jsweet:jsweet-maven-plugin:1.1.1 [DEBUG] Included: org.jsweet:jsweet-maven-plugin:jar:1.1.1 [DEBUG] Included: javax.enterprise:cdi-api:jar:1.0 [DEBUG] Included: javax.annotation:jsr250-api:jar:1.0 [DEBUG] Included: org.eclipse.sisu:org.eclipse.sisu.inject:jar:0.3.0 [DEBUG] Included: org.codehaus.plexus:plexus-component-annotations:jar:1.5.5 [DEBUG] Included: backport-util-concurrent:backport-util-concurrent:jar:3.1 [DEBUG] Included: org.codehaus.plexus:plexus-interpolation:jar:1.11 [DEBUG] Included: org.codehaus.plexus:plexus-utils:jar:1.5.15 [DEBUG] Included: junit:junit:jar:3.8.1 [DEBUG] Included: org.jsweet:jsweet-transpiler:jar:1.1.1 [DEBUG] Included: edu.princeton.cup:java-cup:jar:10k [DEBUG] Included: de.jflex:jflex:jar:1.3.5 [DEBUG] Included: org.apache.commons:commons-lang3:jar:3.3.2 [DEBUG] Included: commons-io:commons-io:jar:2.4 [DEBUG] Included: log4j:log4j:jar:1.2.17 [DEBUG] Included: com.google.code.gson:gson:jar:2.2.4 [DEBUG] Included: com.martiansoftware:jsap:jar:2.1 [DEBUG] Included: org.javassist:javassist:jar:3.20.0-GA [DEBUG] Included: org.jsweet.candies:es6-promise:jar:0.0.0-SNAPSHOT [DEBUG] Included: org.jsweet.candies:jsweet-core:jar:1.2.0-SNAPSHOT [DEBUG] Configuring mojo org.jsweet:jsweet-maven-plugin:1.1.1:jsweet from plugin realm ClassRealm[plugin>org.jsweet:jsweet-maven-plugin:1.1.1, parent: sun.misc.Launcher$AppClassLoader@4e25154f] [DEBUG] Configuring mojo 'org.jsweet:jsweet-maven-plugin:1.1.1:jsweet' with basic configurator --> [DEBUG] (f) candiesJsOut = C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\webapp\lib [DEBUG] (f) declaration = false [DEBUG] (f) enableAssertions = false [DEBUG] (f) encoding = UTF-8 [DEBUG] (f) jdkHome = C:\Program Files\Java\jre1.8.0_191 [DEBUG] (f) localRepository = id: local url: file:///C:/Users/Pe3791/.m2/repository/ layout: default snapshots: [enabled => true, update => always] releases: [enabled => true, update => always]

[DEBUG] (f) module = none [DEBUG] (f) noRootDirectories = false [DEBUG] (f) outDir = target/js [DEBUG] (f) remoteRepositories = [ id: Nexus-snapshots url: http://nexus.zzzz.net:8081/nexus/repository/maven-snapshots/ layout: default snapshots: [enabled => true, update => daily] releases: [enabled => false, update => daily] , id: Nexus url: http://nexus.zzzz.net:8081/nexus/repository/maven-public/ layout: default snapshots: [enabled => true, update => daily] releases: [enabled => true, update => daily] ] [DEBUG] (f) sourceMap = false [DEBUG] (f) targetVersion = ES3 [DEBUG] (f) tsOut = target/ts [DEBUG] (f) verbose = true [DEBUG] -- end configuration -- [INFO] JSweet transpiler version 1.1.1 (build date: 2016-06-01 16:12:49) [INFO] dependencies=[Dependency {groupId=org.jsweet.candies, artifactId=jsweet-core, version=1.1.0-SNAPSHOT, type=jar}, Dependency {groupId=org.jsweet.candies, artifactId=j4ts, version=0.2.0-SNAPSHOT, type=jar}] [INFO] add direct candy dependency: Dependency {groupId=org.jsweet.candies, artifactId=jsweet-core, version=1.1.0-SNAPSHOT, type=jar}=org.jsweet.candies:jsweet-core:jar:1.1.0-SNAPSHOT:compile [INFO] add direct candy dependency: Dependency {groupId=org.jsweet.candies, artifactId=j4ts, version=0.2.0-SNAPSHOT, type=jar}=org.jsweet.candies:j4ts:jar:0.2.0-SNAPSHOT:compile [DEBUG] localfile:AppletResonancias:jar:0.0.1-SNAPSHOT (selected for null) [DEBUG] org.jsweet.candies:j4ts:jar:0.2.0-SNAPSHOT:compile (selected for compile) [DEBUG] org.jsweet.candies:jsweet-core:jar:1.2.0-SNAPSHOT:compile (selected for compile) [DEBUG] org.jsweet.candies:jsweet-core:jar:1.2.0-SNAPSHOT:compile (removed - nearer found: 1.1.0-SNAPSHOT) [DEBUG] org.jsweet.candies:jsweet-core:jar:1.1.0-SNAPSHOT:compile (selected for compile) [INFO] all candies artifacts: [org.jsweet.candies:j4ts:jar:0.2.0-SNAPSHOT:compile (1; enabled), org.jsweet.candies:jsweet-core:jar:1.1.0-SNAPSHOT:compile (1; enabled)] [INFO] candies jars: [C:\Users\Pe3791.m2\repository\org\jsweet\candies\j4ts\0.2.0-SNAPSHOT\j4ts-0.2.0-SNAPSHOT.jar, C:\Users\Pe3791.m2\repository\org\jsweet\candies\jsweet-core\1.1.0-SNAPSHOT\jsweet-core-1.1.0-SNAPSHOT.jar] [INFO] classpath from maven: C:\Users\Pe3791.m2\repository\org\jsweet\candies\j4ts\0.2.0-SNAPSHOT\j4ts-0.2.0-SNAPSHOT.jar;C:\Users\Pe3791.m2\repository\org\jsweet\candies\jsweet-core\1.1.0-SNAPSHOT\jsweet-core-1.1.0-SNAPSHOT.jar [INFO] jsOut: C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\js [INFO] bundle: false [INFO] tsOut: C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\ts [INFO] declarations: false [INFO] declarationOutDir: null [INFO] candiesJsOutDir: C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\webapp\lib [INFO] ecmaTargetVersion: ES3 [INFO] moduleKind: none [INFO] sourceMap: false [INFO] verbose: true [INFO] jdkHome: C:\Program Files\Java\jre1.8.0_191 2019-08-01 13:30:56.056 DEBUG JSweetConfig:88 - tools.jar already in classpath 2019-08-01 13:30:57.057 INFO JSweetTranspiler:211 - creating transpiler version 1.1.1 (build date: 2016-06-01 16:12:49) 2019-08-01 13:30:57.057 INFO JSweetTranspiler:212 - curent dir: C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias. 2019-08-01 13:30:57.057 INFO JSweetTranspiler:213 - tsOut: C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\ts - C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\ts 2019-08-01 13:30:57.057 INFO JSweetTranspiler:214 - jsOut: C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\js - C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\js 2019-08-01 13:30:57.057 INFO JSweetTranspiler:215 - candyJsOut: C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\webapp\lib 2019-08-01 13:30:57.057 DEBUG JSweetTranspiler:216 - compile classpath: C:\Users\Pe3791.m2\repository\org\jsweet\candies\j4ts\0.2.0-SNAPSHOT\j4ts-0.2.0-SNAPSHOT.jar;C:\Users\Pe3791.m2\repository\org\jsweet\candies\jsweet-core\1.1.0-SNAPSHOT\jsweet-core-1.1.0-SNAPSHOT.jar 2019-08-01 13:30:57.057 DEBUG JSweetTranspiler:217 - runtime classpath: C:\apache-maven-3.3.9\boot\plexus-classworlds-2.5.2.jar 2019-08-01 13:30:57.057 INFO CandiesProcessor:115 - candies processor classpath: C:\Users\Pe3791.m2\repository\org\jsweet\candies\j4ts\0.2.0-SNAPSHOT\j4ts-0.2.0-SNAPSHOT.jar;C:\Users\Pe3791.m2\repository\org\jsweet\candies\jsweet-core\1.1.0-SNAPSHOT\jsweet-core-1.1.0-SNAPSHOT.jar 2019-08-01 13:30:57.057 DEBUG CandiesProcessor:120 - processed classes dir: .jsweet\candies\processed - C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias.jsweet\candies\processed 2019-08-01 13:30:57.057 INFO CandiesProcessor:131 - extracted candies directory: C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\webapp\lib [INFO] source includes: {} [INFO] source excludes: {} [INFO] sources paths: [C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java] [INFO] sourceFiles=[C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\applet\AppletExample.java, C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java] 2019-08-01 13:30:57.057 DEBUG JSweetTranspiler:231 - extra path: null WARN: candy jsweet-core:1.1.0-SNAPSHOT was generated for a different version of the transpiler (current:1.1.1, candy:1.1.0) 2019-08-01 13:30:57.057 INFO CandiesProcessor:205 - 2 candies found in classpath 2019-08-01 13:30:57.057 INFO CandiesProcessor:159 - candies are up to date 2019-08-01 13:30:57.057 DEBUG JSweetTranspiler:600 - updated classpath: .jsweet\candies\processed;C:\Users\Pe3791.m2\repository\org\jsweet\candies\j4ts\0.2.0-SNAPSHOT\j4ts-0.2.0-SNAPSHOT.jar;C:\Users\Pe3791.m2\repository\org\jsweet\candies\jsweet-core\1.1.0-SNAPSHOT\jsweet-core-1.1.0-SNAPSHOT.jar 2019-08-01 13:30:57.057 DEBUG JSweetTranspiler:294 - classpath: .jsweet\candies\processed;C:\Users\Pe3791.m2\repository\org\jsweet\candies\j4ts\0.2.0-SNAPSHOT\j4ts-0.2.0-SNAPSHOT.jar;C:\Users\Pe3791.m2\repository\org\jsweet\candies\jsweet-core\1.1.0-SNAPSHOT\jsweet-core-1.1.0-SNAPSHOT.jar 2019-08-01 13:30:57.057 DEBUG JSweetTranspiler:295 - bootclasspath: null 2019-08-01 13:30:57.057 DEBUG JSweetTranspiler:296 - strict mode: false 2019-08-01 13:30:57.057 INFO JSweetTranspiler:657 - parsing: RegularFileObject[C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\applet\AppletExample.java],RegularFileObject[C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java] 2019-08-01 13:30:57.057 INFO JSweetTranspiler:662 - attribution phase 2019-08-01 13:30:57.057 INFO JSweetTranspiler:704 - scanning C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\applet\AppletExample.java... 2019-08-01 13:30:57.057 INFO JSweetTranspiler:718 - output file: applet\AppletExample.ts 2019-08-01 13:30:57.057 INFO JSweetTranspiler:733 - created C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\ts\applet\AppletExample.ts 2019-08-01 13:30:57.057 INFO JSweetTranspiler:704 - scanning C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java... 2019-08-01 13:30:57.057 INFO JSweetTranspiler:718 - output file: localfile\Localfile.ts 2019-08-01 13:30:57.057 INFO JSweetTranspiler:733 - created C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\ts\localfile\Localfile.ts 2019-08-01 13:30:57.057 DEBUG JSweetTranspiler:1010 - ts2js: [C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\applet\AppletExample.java, C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java] 2019-08-01 13:30:57.057 INFO JSweetTranspiler:1076 - launching tsc... 2019-08-01 13:30:57.057 DEBUG ProcessUtil:178 - run command: C:\Users\Pe3791.jsweet-node_modules\tsc.cmd --target ES3 --rootDir C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\ts --outDir C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\target\js .tsc-rootfile.ts applet\AppletExample.ts localfile\Localfile.ts .....jsweet\candies\typings\src\typings\j4ts\0.2.0-SNAPSHOT.tsc-rootfile.d.ts .....jsweet\candies\typings\src\typings\j4ts\0.2.0-SNAPSHOT\bundle.d.ts 2019-08-01 13:30:59.059 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(9,22): error TS2503: Cannot find namespace 'javax'. ERROR: cannot find namespace 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(7) 2019-08-01 13:30:59.059 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(9,22): error TS2552: Cannot find name 'javax'. Did you mean 'java'? ERROR: cannot find name 'javax'. Did you mean 'java'? at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(7) 2019-08-01 13:30:59.059 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(11,22): error TS2503: Cannot find namespace 'javax'. ERROR: cannot find namespace 'javax' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(8) 2019-08-01 13:30:59.059 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(11,22): error TS2552: Cannot find name 'javax'. Did you mean 'java'? ERROR: cannot find name 'javax'. Did you mean 'java'? at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(8) 2019-08-01 13:30:59.059 INFO JSweetTranspiler:1081 - localfile/Localfile.ts(18,18): error TS2339: Property 'setLayout' does not exist on type 'Localfile'. ERROR: property 'setLayout' does not exist on type 'Localfile' at C:\Desarrollo\Proyectos\Documentum\workspace\AppletResonancias\src\main\java\localfile\Localfile.java(17) 2019-08-01 13:30:59.059 INFO JSweetTranspiler:616 - transpilation process finished in 2908 ms [ERROR] transpilation failed org.apache.maven.plugin.MojoFailureException: transpilation failed with 5 error(s) and 1 warning(s) at org.jsweet.AbstractJSweetMojo.transpile(AbstractJSweetMojo.java:304) at org.jsweet.JSweetMojo.execute(JSweetMojo.java:41) at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134) at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:207) 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(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) 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) [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 3.627 s [INFO] Finished at: 2019-08-01T13:30:59+02:00 [INFO] Final Memory: 15M/158M [INFO] ------------------------------------------------------------------------ [ERROR] Failed to execute goal org.jsweet:jsweet-maven-plugin:1.1.1:jsweet (generate-js) on project AppletResonancias: transpilation failed: transpilation failed with 5 error(s) and 1 warning(s) -> [Help 1] org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.jsweet:jsweet-maven-plugin:1.1.1:jsweet (generate-js) on project AppletResonancias: transpilation failed 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(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) 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: transpilation failed at org.jsweet.AbstractJSweetMojo.transpile(AbstractJSweetMojo.java:318) at org.jsweet.JSweetMojo.execute(JSweetMojo.java:41) 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.apache.maven.plugin.MojoFailureException: transpilation failed with 5 error(s) and 1 warning(s) at org.jsweet.AbstractJSweetMojo.transpile(AbstractJSweetMojo.java:304) ... 23 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