Skip to content

Instantly share code, notes, and snippets.

View vegegoku's full-sized avatar
😎
Working on DominoKit

Ahmad K. Bawaneh vegegoku

😎
Working on DominoKit
View GitHub Profile
@vegegoku
vegegoku / maven-output.txt
Created November 3, 2017 21:33
maven-output
[INFO] Scanning for projects...
Downloading: https://oss.sonatype.org/content/repositories/snapshots/com/progressoft/brix/domino/domino-parent/1.0-rc.2-SNAPSHOT/maven-metadata.xml
625/625 B
Downloaded: https://oss.sonatype.org/content/repositories/snapshots/com/progressoft/brix/domino/domino-parent/1.0-rc.2-SNAPSHOT/maven-metadata.xml (625 B at 0.1 KB/sec)
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO]
[INFO] todolist-layout
[INFO] todolist-layout-shared
/usr/lib/jvm/java-8-oracle/bin/java -Dmaven.multiModuleProjectDirectory=/mnt/PROJECTS/GIT/material-layout -Dmaven.home=/mnt/PROJECTS/IDE/idea-IC-171.3780.107/plugins/maven/lib/maven3 -Dclassworlds.conf=/mnt/PROJECTS/IDE/idea-IC-171.3780.107/plugins/maven/lib/maven3/bin/m2.conf -javaagent:/mnt/PROJECTS/IDE/idea-IC-171.3780.107/lib/idea_rt.jar=43884:/mnt/PROJECTS/IDE/idea-IC-171.3780.107/bin -Dfile.encoding=UTF-8 -classpath /mnt/PROJECTS/IDE/idea-IC-171.3780.107/plugins/maven/lib/maven3/boot/plexus-classworlds-2.5.2.jar org.codehaus.classworlds.Launcher -Didea.version=2017.2.5 gwt:codeserver -o -P !pl,*-frontend,!am
[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Build Order:
[INFO]
[INFO] material-layout
[INFO] layout
[INFO] layout-shared
[INFO] layout-frontend
[INFO] layout-frontend-ui
@vegegoku
vegegoku / maven-output
Created January 12, 2018 14:08
Compilation error
This file has been truncated, but you can view the full file.
Apache Maven 3.3.9
Maven home: /usr/share/maven
Java version: 1.8.0_151, vendor: Oracle Corporation
Java home: /usr/lib/jvm/java-8-oracle/jre
Default locale: en_US, platform encoding: UTF-8
OS name: "linux", version: "4.10.0-42-generic", arch: "amd64", family: "unix"
[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
@vegegoku
vegegoku / Base.java
Created January 12, 2018 19:23
Inject context without super sourcing
public class Base {
private static final Logger LOGGER=Logger.getLogger(Base.class.getName());
public void log(){
LOGGER.info("Hello from JS base....");
}
}
@vegegoku
vegegoku / console-out
Created January 22, 2018 21:48
cldr patch out
patching file common/bcp47/timezone.xml
patching file common/main/bn.xml
Hunk #1 FAILED at 1457.
1 out of 1 hunk FAILED -- saving rejects to file common/main/bn.xml.rej
patching file common/main/en_GB.xml
patching file common/main/en.xml
Hunk #1 succeeded at 908 (offset 133 lines).
Hunk #2 succeeded at 911 (offset 133 lines).
Hunk #3 succeeded at 949 (offset 135 lines).
Hunk #4 succeeded at 1025 (offset 135 lines).
Testsuite: com.google.gwt.i18n.I18NSuite
Tests run: 255, Failures: 0, Errors: 147, Skipped: 0, Time elapsed: 27.382 sec
------------- Standard Output ---------------
Logging initialized @701ms
jetty-9.2.z-SNAPSHOT
Started c.g.g.j.@2e005c4b{/,file:/mnt/CODE/GWT_CLDR/gwt/build/out/user/test/web-htmlunit/www/,AVAILABLE}{/mnt/CODE/GWT_CLDR/gwt/build/out/user/test/web-htmlunit/www}
Started ServerConnector@5b915787{HTTP/1.1}{0.0.0.0:39441}
Started @888ms
Compiling module com.google.gwt.i18n.I18NTest_en.JUnit
Computing all possible rebind results for 'com.google.gwt.i18n.client.TestAnnotatedMessages'
org.gradle.api.tasks.TaskExecutionException: Execution failed for task ':compileJava'.
at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.executeActions(ExecuteActionsTaskExecuter.java:100)
at org.gradle.api.internal.tasks.execution.ExecuteActionsTaskExecuter.execute(ExecuteActionsTaskExecuter.java:70)
at org.gradle.api.internal.tasks.execution.OutputDirectoryCreatingTaskExecuter.execute(OutputDirectoryCreatingTaskExecuter.java:51)
at org.gradle.api.internal.tasks.execution.SkipUpToDateTaskExecuter.execute(SkipUpToDateTaskExecuter.java:62)
at org.gradle.api.internal.tasks.execution.ResolveTaskOutputCachingStateExecuter.execute(ResolveTaskOutputCachingStateExecuter.java:54)
at org.gradle.api.internal.tasks.execution.ValidatingTaskExecuter.execute(ValidatingTaskExecuter.java:60)
at org.gradle.api.internal.tasks.execution.SkipEmptySourceFilesTaskExecuter.execute(SkipEmptySourceFilesTaskExecuter.java:97)
at org.gradle.api.internal.
buildscript {
apply from: "$rootDir/gradle/versions.gradle"
}
plugins {
id "java"
id "eclipse"
id "idea"
id "org.springframework.boot" version "1.5.10.RELEASE"
id "net.ltgt.apt" version "0.14"
task compileGwt(dependsOn: classes, type: JavaExec) {
ext.buildDir = "${project.buildDir}/gwt"
ext.extraDir = "${project.buildDir}/extra"
inputs.file sourceSets.main.java.srcDirs
inputs.dir sourceSets.main.output.resourcesDir
outputs.dir buildDir
doFirst {
file(buildDir).mkdirs()

The project has 48 modules and a total of 206 java files. there is 2 java files in the main module , the entry point class and the entry point interface only. this main module adds all other modules as dependencies.

* Fresh j2cl compilation with ADVANCED mode on, file size is 747KB:

Recompile of 2 source classes finished in 35801ms
poll: 48millis
javac: 440millis
j2cl: 1102millis