Friday, May 30, 2025

Re: Calling methods on Uint8Array is causing a ReferenceError in Super Dev Mode...

Aaaand
After clean SuperDevMode restart (after deletion of GWT temp files in gradle build and in Windows TEMP folder) everything works as expected.
(I'm posting it as advice instead of removing my post so people with similar problems will have an option)

On Friday, May 30, 2025 at 7:34:17 PM UTC+2 tekkyru wrote:
I face similar problem, trying to use ArrayBuffer and Uint8Array. JDK 17, GWT 2.12.1, Windows workstation

My original intent was to return bytes of user-selected file from JSNI to GWT code. But now I see even simplest pure GWT java code doesn't work. 
I create ArrayBuffer, then create Uint8Array from it.
Any Uint8Array methods except toString() fail with ReferenceError. I see "devirtual" there, may it give a clue...

I probably do something wrong but I cannot find any example in the internet.

ArrayBuffer arrayBuffer = TypedArrays.createArrayBuffer(20);

GWT.log("ab.length = " + arrayBuffer.byteLength());

Uint8Array uintArray = TypedArrays.createUint8Array(arrayBuffer);

GWT.log("uintArray = " + uintArray);

// ---------- THE CALL BELOW FAILS ---------

GWT.log("uintArray[0] " + uintArray.get(0));


ab.length = 20
uintArray = 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
SEVERE ****MYAPP**** Exception: com.google.gwt.core.client.JavaScriptException: (ReferenceError) : com_google_gwt_typedarrays_client_Uint8ArrayNative_get_1I_1S_1_1devirtual$__Lcom_google_gwt_typedarrays_shared_Uint8Array_2IS is not defined
at Unknown. ***MYAPP*** _testArrayBuffer__V(***MYAPP***-0.js@3:260605)
at ....

--------------
JDK 17
GWT 2.12.1
Code server Command line:

Run GWT Code Server: [-launcherDir, C:\home\ws\MYAPP\.metadata\.plugins\org.eclipse.wst.server.core\tmp0/wtpwebapps/MYAPP, -workDir, MYTMPDIR, -logLevel, INFO, -style, DETAILED, -sourceLevel, 17, -port, 9876, -generateJsInteropExports, MYAPPNAME]


On Saturday, November 11, 2017 at 8:11:08 PM UTC+1 Colin Alworth wrote:
Can you run super dev mode with `-style PRETTY`? The line you are pointing at should only error out like that if createUint8Array returned null, but it would be good to confirm that in PRETTY you see the name of the local variable.

.byteLength() in the native code is just defined as access on the .byteLength field of the view, so that seems sane enough - should only error out of there is no Uint8Array. But createUint8Array should just delegate to Uint8ArrayNative.create(buffer, 0, buffer.byteLength()) anyway, which just calls the JS constructor, so that doesn't make a ton of sense either...

Try PRETTY, and maybe turn off sourcemaps so you can see what is generated - perhaps there is a bug and SDM is making a mistake, or maybe something else will be clear to you once you see the sources (probably in your own JSNI).

Finally, which version of GWT are you using?


On Wednesday, November 8, 2017 at 7:58:09 PM UTC-6, TimOnGmail wrote:
Hmmm, nope - even if I make a copy of the buffer, I still get the above error in Super Dev mode.

Any ideas, anyone?

- Tim


--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/google-web-toolkit/7b953dd4-e268-4abe-964a-bc23ce085535n%40googlegroups.com.

Re: Calling methods on Uint8Array is causing a ReferenceError in Super Dev Mode...

I face similar problem, trying to use ArrayBuffer and Uint8Array. JDK 17, GWT 2.12.1, Windows workstation

My original intent was to return bytes of user-selected file from JSNI to GWT code. But now I see even simplest pure GWT java code doesn't work. 
I create ArrayBuffer, then create Uint8Array from it.
Any Uint8Array methods except toString() fail with ReferenceError. I see "devirtual" there, may it give a clue...

I probably do something wrong but I cannot find any example in the internet.

ArrayBuffer arrayBuffer = TypedArrays.createArrayBuffer(20);

GWT.log("ab.length = " + arrayBuffer.byteLength());

Uint8Array uintArray = TypedArrays.createUint8Array(arrayBuffer);

GWT.log("uintArray = " + uintArray);

// ---------- THE CALL BELOW FAILS ---------

GWT.log("uintArray[0] " + uintArray.get(0));


ab.length = 20
uintArray = 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
SEVERE ****MYAPP**** Exception: com.google.gwt.core.client.JavaScriptException: (ReferenceError) : com_google_gwt_typedarrays_client_Uint8ArrayNative_get_1I_1S_1_1devirtual$__Lcom_google_gwt_typedarrays_shared_Uint8Array_2IS is not defined
at Unknown. ***MYAPP*** _testArrayBuffer__V(***MYAPP***-0.js@3:260605)
at ....

--------------
JDK 17
GWT 2.12.1
Code server Command line:

Run GWT Code Server: [-launcherDir, C:\home\ws\MYAPP\.metadata\.plugins\org.eclipse.wst.server.core\tmp0/wtpwebapps/MYAPP, -workDir, MYTMPDIR, -logLevel, INFO, -style, DETAILED, -sourceLevel, 17, -port, 9876, -generateJsInteropExports, MYAPPNAME]


On Saturday, November 11, 2017 at 8:11:08 PM UTC+1 Colin Alworth wrote:
Can you run super dev mode with `-style PRETTY`? The line you are pointing at should only error out like that if createUint8Array returned null, but it would be good to confirm that in PRETTY you see the name of the local variable.

.byteLength() in the native code is just defined as access on the .byteLength field of the view, so that seems sane enough - should only error out of there is no Uint8Array. But createUint8Array should just delegate to Uint8ArrayNative.create(buffer, 0, buffer.byteLength()) anyway, which just calls the JS constructor, so that doesn't make a ton of sense either...

Try PRETTY, and maybe turn off sourcemaps so you can see what is generated - perhaps there is a bug and SDM is making a mistake, or maybe something else will be clear to you once you see the sources (probably in your own JSNI).

Finally, which version of GWT are you using?


On Wednesday, November 8, 2017 at 7:58:09 PM UTC-6, TimOnGmail wrote:
Hmmm, nope - even if I make a copy of the buffer, I still get the above error in Super Dev mode.

Any ideas, anyone?

- Tim


--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/google-web-toolkit/834cbe43-1d08-47b4-b36e-2575b6b149bdn%40googlegroups.com.

Thursday, May 29, 2025

GWT at JCON 2025!

Hi All,

Ingo and I had a chance in JCON 2025 doing this session...

"History of Java UI Development: Live. Die. Repeat."

We really enjoyed talking about the evolution of #Java UI development—from the early days of desktop UIs to modern web browser interfaces. I demonstrated a "Hello World" example using a simple #GWT-style Java-to-JavaScript transpiler. Interestingly, many developers still aren't aware of the key differences between GWT-based UI frameworks like DominoUI and server-side browser UI frameworks like #Vaadin Flow. GWT-based frameworks don't require a backend at all. They transpile Java source code into JavaScript, allowing the resulting web app to run entirely in the browser—just like any other JavaScript application.

Unfortunately, we didn't have enough time to dive deeper into what we see as the most exciting development: "The Third Wave" – Everything is a Chat. In our view, UI development is undergoing a major shift. In an #AI-first world, the UI becomes just a simple chat—based on text, voice, video, or images—while an AI agent (#LLM == The Brain) decides what UI elements to display to the user. This changes everything. There will be far less need for complex UI frameworks, goodbye#Vue#React, and the era of rigid, form-based interfaces may soon be over.

Here are our slides—enjoy!

https://bit.ly/ai-llm-ui

By the way, we also included some nice photos of Cologne and Münster for Java developers looking for travel inspiration in Germany. Both cities are definitely worth a visit!

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/google-web-toolkit/1124095e-0516-4f8a-bce2-e53749c0db92n%40googlegroups.com.

Wednesday, May 21, 2025

Re: GWTTestCase - split module testsuite compile problems

I disagree that the gwttestcase should be running on the verify step too. It's not an e2e test.

I've tested some more using the maven archetype. If I add a dependency to shared, it fails with a similar result.
```
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava</artifactId>
      <version>29.0-jre</version>
      <scope>compile</scope>
    </dependency>
```
```
[INFO] --- gwt:1.1.0:test (default-test) @ example-gwt-test-client ---
[INFO] Using auto detected provider org.apache.maven.surefire.junit4.JUnit4Provider
[INFO]
[INFO] -------------------------------------------------------
[INFO]  T E S T S
[INFO] -------------------------------------------------------
[INFO] Running com.example.AppTestSuite
Compiling module com.example.App.JUnit
   [ERROR] Errors in 'jar:file:/home/devlooj/example-gwt-test/example-gwt-test-shared/target/example-gwt-test-shared-1.0-SNAPSHOT-sources.jar!/com/example/TestEnum.java'
      [ERROR] Line 9: No source code is available for type com.google.common.base.Strings; did you forget to inherit a required module?
   Tracing compile failure path for type 'com.example.TestEnum'
      [ERROR] Errors in 'jar:file:/home/devlooj/example-gwt-test/example-gwt-test-shared/target/example-gwt-test-shared-1.0-SNAPSHOT-sources.jar!/com/example/TestEnum.java'
         [ERROR] Line 9: No source code is available for type com.google.common.base.Strings; did you forget to inherit a required module?
   [ERROR] Hint: Your source appears not to live underneath a subpackage called 'client'; no problem, but you'll need to use the <source> directive in your module to make it accessible
   [ERROR] An internal compiler exception occurred
com.google.gwt.dev.jjs.InternalCompilerException: Unexpected error during visit.
```

Op woensdag 21 mei 2025 om 11:57:06 UTC+2 schreef Thomas Broyer:
My personal opinion is that for multi-module projects, one should stick to "package" as the earliest phase to call in the lifecycle (IOW, only every use "clean", "package" and "verify")

That being said, if you insist calling the "test" phase without going up to "package", to troubleshoot this, run Maven with debug logs and look for the classpath being used to run the tests, then read it carefully looking for missing things. If entries are missing, then it's probably Maven's fault (a bug? an unsupported edge case?) rather than the gwt-maven-plugin, as dependency resolution is entirely delegated to Maven here.
As a workaround, you could move maven-source-plugin back to the "package" phase and instead try adding the shared source directories as additionalClasspathElements to gwt:test (e.g. ${baseDir}/../robaws-shared/src/main/java)

On Tuesday, May 20, 2025 at 7:06:25 PM UTC+2 jef...@robaws.be wrote:
Here is the complete step output:

```
[INFO] -------------------------------------------------------
[INFO] Running be.eforge.robaws.client.RobawsGwtTestSuite
Loading inherited module 'be.eforge.robaws.SpringBootGwt'
   Loading inherited module 'gwt.material.design.GwtMaterialWithJQuery'
      Loading inherited module 'gwt.material.design.GwtMaterialDesignBase'
         [WARN] Line 29: Setting configuration property named 'CssResource.conversionMode' in module 'gwt.material.design.GwtMaterialDesignBase' that has not been previously defined
         Loading inherited module 'com.google.gwt.user.User'
            Loading inherited module 'com.google.gwt.media.Media'
               Loading inherited module 'com.google.gwt.user.UI'
                  Loading inherited module 'com.google.gwt.resources.Resources'
                     [WARN] Definition of already set configuration property named CssResource.conversionMode in com.google.gwt.resources.Resources (set in gwt.material.design.GwtMaterialDesignBase).  This may be disallowed in the future.
Compiling module be.eforge.robaws.SpringBootGwt.JUnit
   [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/util/GwtUtil.java'

      [ERROR] Line 133: No source code is available for type com.google.inject.Provider<T>; did you forget to inherit a required module?
      [ERROR] Line 279: No source code is available for type com.gwtplatform.mvp.shared.proxy.PlaceRequest; did you forget to inherit a required module?
      [ERROR] Line 282: No source code is available for type com.google.common.base.Strings; did you forget to inherit a required module?
      [ERROR] Line 480: No source code is available for type com.google.common.base.Joiner; did you forget to inherit a required module?
      [ERROR] Line 738: No source code is available for type com.gwtplatform.mvp.client.proxy.PlaceManager; did you forget to inherit a required module?
      [ERROR] Line 761: No source code is available for type com.gwtplatform.mvp.shared.proxy.PlaceRequest.Builder; did you forget to inherit a required module?
      [ERROR] Line 1090: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
      [ERROR] Line 1200: No source code is available for type com.google.common.base.Splitter; did you forget to inherit a required module?
      [ERROR] Line 1421: No source code is available for type com.google.web.bindery.requestfactory.shared.EntityProxy; did you forget to inherit a required module?
      [ERROR] Line 1422: No source code is available for type com.google.web.bindery.autobean.shared.AutoBeanCodex; did you forget to inherit a required module?
      [ERROR] Line 1422: No source code is available for type com.google.web.bindery.autobean.shared.AutoBeanUtils; did you forget to inherit a required module?
   Tracing compile failure path for type 'be.eforge.robaws.client.util.GwtUtil'
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/util/GwtUtil.java'

         [ERROR] Line 761: No source code is available for type com.gwtplatform.mvp.shared.proxy.PlaceRequest.Builder; did you forget to inherit a required module?
         [ERROR] Line 1090: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 133: No source code is available for type com.google.inject.Provider<T>; did you forget to inherit a required module?
         [ERROR] Line 480: No source code is available for type com.google.common.base.Joiner; did you forget to inherit a required module?
         [ERROR] Line 1421: No source code is available for type com.google.web.bindery.requestfactory.shared.EntityProxy; did you forget to inherit a required module?
         [ERROR] Line 1422: No source code is available for type com.google.web.bindery.autobean.shared.AutoBeanCodex; did you forget to inherit a required module?
         [ERROR] Line 279: No source code is available for type com.gwtplatform.mvp.shared.proxy.PlaceRequest; did you forget to inherit a required module?
         [ERROR] Line 738: No source code is available for type com.gwtplatform.mvp.client.proxy.PlaceManager; did you forget to inherit a required module?
         [ERROR] Line 1200: No source code is available for type com.google.common.base.Splitter; did you forget to inherit a required module?
         [ERROR] Line 282: No source code is available for type com.google.common.base.Strings; did you forget to inherit a required module?
         [ERROR] Line 1422: No source code is available for type com.google.web.bindery.autobean.shared.AutoBeanUtils; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/TranslatedTextProxy.java'
         [ERROR] be.eforge.robaws.shared.Language cannot be resolved to a type
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/util/CurrentUser.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.OtherFeaturesProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/ObjectType.java'
         [ERROR] Line 41: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ObjectRefProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/DocumentProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.ObjectRefProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/GeneralRequestFactory.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/editor/CopyLineItemDTO.java'
         [ERROR] be.eforge.robaws.shared.CalculationType cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/RobawsEntityProxy.java'
         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.EntityProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/LoginResultProxy.java'
         [ERROR] Line 40: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/Language.java'
         [ERROR] Line 13: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/editor/CopyEmployeeHour2DTO.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.VatTariffProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ArticleProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.StringValueWrapperProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/OverviewColumnProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/editor/LineItemOptions.java'
         [ERROR] Line 113: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AdjustedArticleResultProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/CmsMultilingualStringProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/LineItemProxy.java'
         [ERROR] be.eforge.robaws.shared.CalculationType cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/VatTariffProxy.java'
         [ERROR] be.eforge.robaws.shared.FontSize cannot be resolved to a type
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/editor/CopyMaterialRegistrationDTO.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.VatTariffProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/CompanyProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.AddressProxy cannot be resolved to a type
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/widget/ArticleSearchDialog.java'
         [ERROR] Line 39: No source code is available for type com.google.inject.Provider<T>; did you forget to inherit a required module?
         [ERROR] Line 41: No source code is available for type com.gwtplatform.mvp.client.proxy.PlaceManager; did you forget to inherit a required module?
         [ERROR] Line 110: No source code is available for type com.gwtplatform.mvp.shared.proxy.PlaceRequest; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/InvoiceConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/PriceRequestConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.PriceRequestTemplateProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/VanMarckeConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/MaterialInstallationConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.OverviewConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/SupplyOrderConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/PontoConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AccountancyFeaturesProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/TimeRegistrationConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/OfferConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/ProjectPlanningConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/PermissionScopeType.java'
         [ERROR] Line 9: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/ClaimStateConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/ProjectConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.ProjectTemplateProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/TimeTicketConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/MaterialConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.OverviewConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/ArchisnapperConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/ClientConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/DeliveryNoteConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ThirdPartyTrackAndTraceFeaturesProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/TransportConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/ArticleConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.OverviewConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/CompanyConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/CompanyJournalProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/SubscriptionConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/IncomingInvoiceConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/SupplierConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/DayPlanningConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.OverviewConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/UnitTypeProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/StockChangeConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/EmployeeConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/OrderConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/FeatureTogglesProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/MaintenanceConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/OtherFeaturesProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/Role.java'
         [ERROR] be.eforge.robaws.shared.ObjectType cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/CashRegisterConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.OverviewConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/TaskConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.OverviewConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AppUserProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.EmailAccountProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/GeneralConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.OverviewConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/PermissionType.java'
         [ERROR] Line 13: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/ViewRequest.java'
         [ERROR] Line 12: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/PdfSettingsRequestPriceRequest.java'
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/TaskRequest.java'
         [ERROR] Line 20: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/MetadataRequest.java'
         [ERROR] Line 12: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/PdfSettingsRequestOffer.java'
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/CodaboxRequest.java'
         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/PdfSettingsRequestOrder.java'
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/AmountFormulaRequest.java'
         [ERROR] Line 13: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 15: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/ObjectRefRequest.java'
         [ERROR] Line 16: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/BankAccountRequest.java'
         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/PdfSettingsRequestSupplyOrder.java'
         [ERROR] Line 15: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/MicrosoftOnlineRequest.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 11: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/ExactOnlineRequest.java'
         [ERROR] Line 12: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/MaintenanceTypeRequest.java'
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/PdfSettingsRequestInvoice.java'
         [ERROR] Line 16: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/ContactPersonRequest.java'
         [ERROR] Line 13: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 15: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/LogRequest.java'
         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/BankPaymentRequest.java'
         [ERROR] Line 17: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/PdfSettingsRequestTimeTicket.java'
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/DocumentRequest.java'
         [ERROR] Line 13: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 15: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/ActivityRequest.java'
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/DicoEndpointRequest.java'
         [ERROR] Line 18: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/OpenMasterDataRequest.java'
         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/TotalCalculationRequest.java'
         [ERROR] Line 12: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/DynamicWebshopConfigRequest.java'
         [ERROR] Line 16: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/IdsConnectRequest.java'
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 15: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/UserSpecificLoginRequest.java'
         [ERROR] Line 13: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/YukiRequest.java'
         [ERROR] Line 13: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
         [ERROR] Line 11: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/TeamRequest.java'
         [ERROR] Line 12: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/WageTypeRequest.java'
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/PaymentConditionRequest.java'
         [ERROR] Line 16: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/WeeklyScheduleRequest.java'
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/JobRequest.java'
         [ERROR] Line 12: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/EmployeeRequest.java'
         [ERROR] Line 17: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/BulkEntitiesRequest.java'
         [ERROR] Line 28: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 30: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/JournalRequest.java'
         [ERROR] Line 18: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/GoogleAuthRequest.java'
         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/LetterRequest.java'
         [ERROR] Line 13: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/PontoRequest.java'
         [ERROR] Line 13: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
         [ERROR] Line 11: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/ProjectRequest.java'
         [ERROR] Line 25: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/NpsRequest.java'
         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/InvoiceAnalyticsRequest.java'
         [ERROR] Line 18: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 20: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PermissionRequest.java'
         [ERROR] Line 12: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/VatRequest.java'
         [ERROR] Line 12: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/CopyRequest.java'
         [ERROR] Line 12: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/RecurrenceTypeRequest.java'
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/SnelstartRequest.java'
         [ERROR] Line 12: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/AllowanceChargeRequest.java'
         [ERROR] Line 15: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/DicoRequest.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 11: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/FormAnswerRequest.java'
         [ERROR] Line 13: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 15: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/ConfigRequest.java'
         [ERROR] Line 53: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 55: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/VatTariffRequest.java'
         [ERROR] Line 16: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/ForecastChangeRequest.java'
         [ERROR] Line 13: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/ImportRequest.java'
         [ERROR] Line 13: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
         [ERROR] Line 11: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/EmployeeRoleRequest.java'
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/LegalFormRequest.java'
         [ERROR] Line 13: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
         [ERROR] Line 11: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/AttachmentRequest.java'
         [ERROR] Line 13: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
         [ERROR] Line 11: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/CashEntryRequest.java'
         [ERROR] Line 13: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 15: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/MobilityTypeRequest.java'
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/ScabRequest.java'
         [ERROR] Line 16: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
         [ERROR] Line 15: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/TwobaRequest.java'
         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/UserRequest.java'
         [ERROR] Line 16: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/ProjectSupplyRouteRequest.java'
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/BillitRequest.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 11: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/AmountFormulaTemplateRequest.java'
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/CredentialRequest.java'
         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/AppInfoRequest.java'
         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/DicoOrderStatusRequest.java'
         [ERROR] Line 12: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/CalculationRequest.java'
         [ERROR] Line 17: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
         [ERROR] Line 15: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/UserRoleRequest.java'
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/AgreementTypeRequest.java'
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/AuditLogRequest.java'
         [ERROR] Line 12: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/CurrencyRequest.java'
         [ERROR] Line 15: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/DynamicFeatureRequest.java'
         [ERROR] Line 13: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 15: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/AccountancyCodeRequest.java'
         [ERROR] Line 15: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/BankPaymentAssignRequest.java'
         [ERROR] Line 12: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/NumberSequenceRequest.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 11: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/DeductionOrAllowanceRequest.java'
         [ERROR] Line 15: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/InvoicePaymentRequest.java'
         [ERROR] Line 13: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 15: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/CalendarLinkRequest.java'
         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/CommentRequest.java'
         [ERROR] Line 13: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/AbsenceHourRequest.java'
         [ERROR] Line 16: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/BookPeriodRequest.java'
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/MessageRequest.java'
         [ERROR] Line 13: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
         [ERROR] Line 11: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/EmployeeDeductionOrAllowanceRequest.java'
         [ERROR] Line 16: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/UnitTypeRequest.java'
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/UserFeedRequest.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 11: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/HoldbackRequest.java'
         [ERROR] Line 18: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/CmsRequest.java'
         [ERROR] Line 12: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/ObjectSharingRequest.java'
         [ERROR] Line 13: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 15: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/EmailRequest.java'
         [ERROR] Line 20: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/AuditedRevisionRequest.java'
         [ERROR] Line 13: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
         [ERROR] Line 11: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/BrandingRequest.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 11: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/HourTypeRequest.java'
         [ERROR] Line 15: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/MaintenanceScheduleRequest.java'
         [ERROR] Line 16: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/QuickbooksRequest.java'
         [ERROR] Line 13: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 15: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/HtmlRequest.java'
         [ERROR] Line 12: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/ScheduledMaintenanceRequest.java'
         [ERROR] Line 15: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/CompanyRequest.java'
         [ERROR] Line 16: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/RobawsMailRequest.java'
         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/ChiftRequest.java'
         [ERROR] Line 16: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/NotificationRequest.java'
         [ERROR] Line 12: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/CalculationType.java'
         [ERROR] Line 11: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/PostPricingStrategy.java'
         [ERROR] Line 12: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/LineType.java'
         [ERROR] Line 22: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/RobawsEntityInfo.java'
         [ERROR] be.eforge.robaws.shared.ObjectType cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ProjectSupplyRouteProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ActivityProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/StringValueWrapperProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/ArticleSalePriceStrategy.java'
         [ERROR] Line 18: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/ArticleCostPriceStrategy.java'
         [ERROR] Line 9: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ExtraFieldProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/TierPriceProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ArticleRawMaterialProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/LibraryType.java'
         [ERROR] Line 13: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ArticleSupplierProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ArticleSalesUnitProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ArticleGroupProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AccountancyCodeProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ArticleStockValuationProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/FormulaProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/HourTypeProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/MaintenanceScheduleProxy.java'
         [ERROR] be.eforge.robaws.shared.MaintenanceTemplateCombiningStrategy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/RobawsColumnType.java'
         [ERROR] Line 10: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/StockLocationProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/CalculateTotalsRequestProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SupplyOrderProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.TextEmbedProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ClientProxy.java'
         [ERROR] be.eforge.robaws.shared.ContactMedium cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SubscriptionProxy.java'
         [ERROR] be.eforge.robaws.shared.SubscriptionType cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/OrderProxy.java'
         [ERROR] be.eforge.robaws.shared.OrderType cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ProjectProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.GeofenceProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/TimeTicketProxy.java'
         [ERROR] be.eforge.robaws.shared.TimeTicketOrigin cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SupplierProxy.java'
         [ERROR] be.eforge.robaws.shared.Language cannot be resolved to a type
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/editor/FormulasEditor.java'
         [ERROR] Line 69: No source code is available for type javax.inject.Provider<T>; did you forget to inherit a required module?
         [ERROR] Line 87: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 130: No source code is available for type com.allen_sauer.gwt.dnd.client.drop.VerticalPanelDropController; did you forget to inherit a required module?
         [ERROR] Line 132: No source code is available for type com.allen_sauer.gwt.dnd.client.DragContext; did you forget to inherit a required module?
         [ERROR] Line 132: No source code is available for type com.allen_sauer.gwt.dnd.client.VetoDragException; did you forget to inherit a required module?
         [ERROR] Line 66: No source code is available for type com.google.web.bindery.requestfactory.gwt.client.HasRequestContext<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PaymentConditionProxy.java'
         [ERROR] be.eforge.robaws.shared.VatCalculationBase cannot be resolved to a type
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/util/GwtObjectRef.java'
         [ERROR] Line 25: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/editor/FancyLineItemEditor.java'
         [ERROR] Line 628: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 158: No source code is available for type com.google.inject.Provider<T>; did you forget to inherit a required module?
         [ERROR] Line 1887: No source code is available for type com.google.common.base.MoreObjects; did you forget to inherit a required module?
         [ERROR] Line 1329: No source code is available for type com.google.common.base.Strings; did you forget to inherit a required module?
         [ERROR] Line 170: No source code is available for type com.gwtplatform.mvp.client.proxy.PlaceManager; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/editor/FormulaEditor.java'
         [ERROR] Line 267: No source code is available for type com.google.common.base.Strings; did you forget to inherit a required module?
         [ERROR] Line 362: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ArticleDeviationProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/RecalculationCategory.java'
         [ERROR] Line 9: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/AllocationKeyProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.ObjectRefProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/CalculationSummaryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/InvoiceProxy.java'
         [ERROR] be.eforge.robaws.shared.RechnungType cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/TransportProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.AddressProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/MaterialProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.AddressProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/InvoicingStatus.java'
         [ERROR] Line 11: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PhaseProxy.java'
         [ERROR] be.eforge.robaws.shared.PhaseInvoiceStrategy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/FontSize.java'
         [ERROR] Line 16: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/VatTariffCategory.java'
         [ERROR] Line 18: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/BankAccountProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AddressProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/BackgroundPageProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/application/articlegroup/ArticleGroupsView.java'
         [ERROR] Line 33: No source code is available for type com.gwtplatform.mvp.client.ViewImpl; did you forget to inherit a required module?
         [ERROR] Line 50: No source code is available for type com.gwtplatform.mvp.client.proxy.PlaceManager; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/ArticleRequestFactory.java'
         [ERROR] Line 5: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/application/articlecalc/ArticlesCalcOverviewView.java'
         [ERROR] Line 33: No source code is available for type com.gwtplatform.mvp.client.ViewImpl; did you forget to inherit a required module?
         [ERROR] Line 39: No source code is available for type com.gwtplatform.mvp.client.proxy.PlaceManager; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/application/article/ArticlesOverviewView.java'
         [ERROR] Line 65: No source code is available for type com.gwtplatform.mvp.client.proxy.PlaceManager; did you forget to inherit a required module?
         [ERROR] Line 253: No source code is available for type com.google.common.base.Strings; did you forget to inherit a required module?
         [ERROR] Line 257: No source code is available for type com.google.common.base.Joiner; did you forget to inherit a required module?
         [ERROR] Line 48: No source code is available for type com.gwtplatform.mvp.client.ViewImpl; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/BaseConfigProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/EmailAccountProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/GAccountSettingsProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/InvoiceDiaryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PdfTemplateProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/StatusProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ExtraFieldTemplateProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/EmailTemplateProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/DefaultTextProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PriceRequestTemplateProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/MaterialTemplateProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/OverviewConfigProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/SupplyOrderRecalculationStrategy.java'
         [ERROR] Line 11: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SupplyOrderTemplateProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AcceptanceFlowRuleProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/OfferTemplateProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/PhaseInvoiceCumulativeStrategyOption.java'
         [ERROR] Line 16: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/OfferStatusProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/ClaimStateInvoiceType.java'
         [ERROR] Line 13: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ProjectTemplateProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/PostCalculationType.java'
         [ERROR] Line 11: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/PostCalculationSumType.java'
         [ERROR] Line 10: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/KilometerInvoiceCostProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/CalendarViewConfigProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/TimeTicketInvoicingAggregationStrategy.java'
         [ERROR] Line 13: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/ArticleStockValuationStrategy.java'
         [ERROR] Line 13: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/JournalProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.StringValueWrapperProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/JournalType.java'
         [ERROR] Line 10: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SubscriptionTemplateProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/InboxConfigProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/DayPlanningTemplateProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PlanningItemTemplateProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/DayPlanningStatusProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/PlanningMode.java'
         [ERROR] Line 11: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/WeeklyScheduleProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/OrderTemplateProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/MaintenanceStatusProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/TaskStatusProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/EmployeeProxy.java'
         [ERROR] be.eforge.robaws.shared.EmployeeSubType cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/UserRoleProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.SpecialGrantsProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/LineTypeConfigProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/ClientInfoOnPdf.java'
         [ERROR] Line 10: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/BarcodeType.java'
         [ERROR] Line 11: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AmountFormulaTemplateProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/HeaderLevelConfigProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/ProjectFinancialsAttribute.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.ProjectOverviewSumProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/DeleteArchiveLockRequestContext.java'
         [ERROR] Line 5: No source code is available for type com.google.web.bindery.requestfactory.shared.EntityProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/PdfSettingsPriceRequestPagingLoadResultProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PdfHeaderBaseTemplateProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PdfSettingsPriceRequestProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.PdfGeneratorLanguageSettingsPriceRequestProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/RobawsRequestContext.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.EntityProxy; did you forget to inherit a required module?
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/PdfSettingsGenerationOptionsProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/TaskQueryProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ObjectRefWithDescriptionProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PagingAndSortingProxy.java'
         [ERROR] Line 12: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/TaskIndexUpdateProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/TaskProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.ObjectRefProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/TaskPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/PdfSettingsOfferPagingLoadResultProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PdfSettingsOfferProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.PdfGeneratorLineItemColumnOfferProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/PdfSettingsOrderPagingLoadResultProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PdfSettingsOrderProxy.java'
         [ERROR] be.eforge.robaws.shared.OrderExecutionInvoicingAggregationStrategy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AmountFormulaSaveDtoProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AmountFormulaCopyEntryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AmountFormulaDtoProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/PdfSettingsSupplyOrderPagingLoadResultProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PdfSettingsSupplyOrderProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.PdfGeneratorLanguageSettingsSupplyOrderProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/SupplyOrderType.java'
         [ERROR] Line 19: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ExternalObjectRefProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ScopeWithSpObjectRefProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/MaintenanceTypeProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PdfSettingsQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PdfSettingsInvoiceProxy.java'
         [ERROR] be.eforge.robaws.shared.PdfTotalsTable cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/PdfSettingsInvoicePagingLoadResultProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/Attachment.java'
         [ERROR] Line 96: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ContactPersonQueryProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/ContactPersonPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ContactPersonProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/BankPaymentPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/BankPaymentProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/BankPaymentQueryProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PdfSettingsTimeTicketProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.PdfGeneratorLineItemColumnTimeTicketProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/PdfSettingsTimeTicketPagingLoadResultProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PresignedDocumentUrlProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/ActivityPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ActivityQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/DicoEndpointPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/EndpointOrigin.java'
         [ERROR] Line 9: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/DicoEndpointQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/DicoEndpointProxy.java'
         [ERROR] be.eforge.robaws.shared.EndpointOrigin cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/CalculateTotalsResponseProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/DynamicWebshopConfigQueryProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/DynamicWebshopConfigProxy.java'
         [ERROR] be.eforge.robaws.shared.DynamicWebshopConfigCategory cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/DynamicWebshopConfigPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/DynamicWebshopConfigCategory.java'
         [ERROR] Line 10: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/IdsConnectSupplierDtoProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/UserSpecificLoginProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/TeamProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/TeamPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/WageTypeProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/WageTypePagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/WageTypeQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PaymentConditionQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/PaymentConditionPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/WeeklyScheduleQueryProxy.java'
         [ERROR] Line 6: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/WeeklySchedulePagingLoadResultProxy.java'
         [ERROR] Line 11: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ErrorResultProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/EmployeeQueryProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/RelatedObjectsProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/EmployeePagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/BulkEntitiesProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/JournalPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/JournalQueryProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/LetterQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/LetterProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.ObjectRefProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/LetterPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PontoAccountProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/ProjectPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ReservedStockForProjectRequestProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PostCalculationTableDataRecordProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ProjectQueryProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PostCalculationBarDataProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PostCalculationQueryProxy.java'
         [ERROR] Line 12: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ProjectIndirectCostMarginResultProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ProjectOverviewSumProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SimpleFilterProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/IncomingInvoiceQueryProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/InvoiceQueryProxy.java'
         [ERROR] Line 11: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/IncomingInvoiceType.java'
         [ERROR] Line 11: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/BarDataProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/InvoiceAggregationType.java'
         [ERROR] Line 10: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/DateType.java'
         [ERROR] Line 9: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/InvoiceType.java'
         [ERROR] Line 11: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/HasPermissionRequestProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/VatResultProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/BulkCopyResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/BulkCopyRequestProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/RecurrenceTypePagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/RecurrenceTypeQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/RecurrenceTypeProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/AllowanceChargeType.java'
         [ERROR] Line 10: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/AllowanceChargeBase.java'
         [ERROR] Line 10: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AllowanceChargeQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/AllowanceChargePagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AllowanceChargeProxy.java'
         [ERROR] be.eforge.robaws.shared.AllowanceChargeBase cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/DicoMessageType.java'
         [ERROR] Line 13: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/FormAnswerDTOProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/StgConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/DupontConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/TechnischeUnieConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/FacqConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/DescoConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/VanMarckeConfigProxyV2.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/DatevConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/CebeoConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/DefrancqConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/BillitConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/DeschachtConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/EmailConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/RexelConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/TwobaConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/VanoirschotConfigProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.config.BaseConfigProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/VatTariffPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/VatTariffQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ForecastChangeProxy.java'
         [ERROR] be.eforge.robaws.shared.CalculationType cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ForecastChangeQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/ForecastChangePagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ImportJobProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.EntityProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/EmployeeRoleProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/EmployeeRoleQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/EmployeeRolePagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/LegalFormProxy.java'
         [ERROR] be.eforge.robaws.shared.VatLiability cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AvailableAttachmentsProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/CashEntryType.java'
         [ERROR] Line 15: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/CashEntryProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.EntityProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/MobilityTypeQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/MobilityTypePagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/MobilityTypeProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SendHoursCheckResponseProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SendHoursRequestProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SendHoursResponseProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SpObjectRefProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.ObjectRefProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/LinkArticleSuppliersToTwobaJobResultProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/UserPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/EnableMfaResultProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AppUserQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/GenerateSecretResultProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/ProjectSupplyRoutePagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ProjectSupplyRouteQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/BillitAccountInformationProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AmountFormulaTemplateQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/AmountFormulaTemplatePagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/DicoOrderStatusEntryProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/OrderStatusDicoCode.java'
         [ERROR] Line 20: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/CopyCalculationsRequestProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/CopyCalculationsResponseProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/CalculationReadModelProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/CalculationProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/CreateCalculationFromArticleCommandProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/UserRoleQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/UserRolePagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AgreementTypeProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AgreementQueryProxy.java'
         [ERROR] Line 6: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/AgreementTypePagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AuditLogProxy.java'
         [ERROR] be.eforge.robaws.shared.AuditLogAction cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/CurrencyPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/CurrencyInfoProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/CurrencyProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/CurrencyQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AvailableFeatureProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/DynamicFeatureConfigProxy.java'
         [ERROR] Line 11: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AccountancyCodeQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/AccountancyCodePagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/BankPaymentAssignableQueryProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/BankPaymentAssignDTOPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/DeductionOrAllowancePagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/DeductionOrAllowanceProxy.java'
         [ERROR] be.eforge.robaws.shared.DeductionOrAllowanceType cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/DeductionOrAllowanceQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/MiscPaymentType.java'
         [ERROR] Line 21: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PaymentSummaryProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/CommentProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.ObjectRefProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AddBulkPresenceAbsencePropertiesProxy.java'
         [ERROR] Line 12: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AbsenceHourProxy.java'
         [ERROR] be.eforge.robaws.shared.ControlStatus cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AbsenceHourQueryProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/CreateBookPeriodJobResultProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/RevertBookPeriodJobResultProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/BookPeriodProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.FinancialBookingProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/MessageDtoProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/EmployeeDeductionOrAllowanceQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/EmployeeDeductionOrAllowanceProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/EmployeeDeductionOrAllowancePagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/UnitTypePagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/UnitTypeQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/UserFeedProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/HoldbackType.java'
         [ERROR] Line 9: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/HoldbackItemProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/HoldbackQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/HoldbackProxy.java'
         [ERROR] be.eforge.robaws.shared.HoldbackType cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/HoldbackPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/CmsNotificationProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/CmsArticleProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SharedObjectProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/EmailProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.DefaultAttachmentProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/EmailAddressProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/EmailQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/LinkableEmailAccountProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/EmailPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/RevisionCompareDtoProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/LabeledObjectProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/BrandingProfileProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/HourTypePagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/HourTypeQueryProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/MaintenanceScheduleQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/MaintenanceSchedulePagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ScheduledMaintenanceProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/ScheduledMaintenancePagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ScheduledMaintenanceQueryProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/EInvoicingStatusProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/CompanyPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/EInvoicingActivationRequestProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/CompanyQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/NotificationProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.ObjectRefProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/NotificationPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PriceGroupProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/RawMaterialProxy.java'
         [ERROR] be.eforge.robaws.shared.RawMaterialType cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/HourTypeType.java'
         [ERROR] Line 10: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/MaintenanceTemplateCombiningStrategy.java'
         [ERROR] Line 9: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/CalculateTotalsRequestAllowanceChargeItemProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/CalculateTotalsRequestItemProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/TextEmbedProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PriceRequestProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.TextEmbedProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/OfferProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.TextEmbedProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/CreditStatus.java'
         [ERROR] Line 19: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/VatProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AllowanceChargeItemProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/ContactMedium.java'
         [ERROR] Line 12: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/PeppolSchemeType.java'
         [ERROR] Line 13: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/SubscriptionType.java'
         [ERROR] Line 9: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/InvoicingStrategy.java'
         [ERROR] Line 13: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/OrderType.java'
         [ERROR] Line 11: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/GeofenceProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/YesNoPending.java'
         [ERROR] Line 9: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ProjectConstructionPartnerProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/EmployeeHour2Proxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.LatLngProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/MaterialRegistrationProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/EmployeeDistanceProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/TimeTicketOrigin.java'
         [ERROR] Line 13: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/EmployeeHourProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PlanningItemProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.AddressProxy cannot be resolved to a type
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/widget/dnd/RobawsPickupDragController.java'
         [ERROR] Line 10: No source code is available for type com.allen_sauer.gwt.dnd.client.PickupDragController; did you forget to inherit a required module?
         [ERROR] Line 17: No source code is available for type com.allen_sauer.gwt.dnd.client.DragContext; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/formula/Formula.java'
         [ERROR] be.eforge.robaws.shared.formula.session.ParameterScript cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/formula/session/FormulaProvider.java'
         [ERROR] be.eforge.robaws.shared.formula.Formula cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/formula/FormulaSession.java'
         [ERROR] Line 370: No source code is available for type com.google.common.base.Strings; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/VatCalculationBase.java'
         [ERROR] Line 9: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/FinancialDiscountCalculationBase.java'
         [ERROR] Line 9: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/combobox/MaterialCombo.java'
         [ERROR] Line 33: No source code is available for type com.google.inject.Provider<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/editor/LineItemTotals.java'
         [ERROR] Line 117: No source code is available for type com.google.common.base.Strings; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/editor/LineItemEditor.java'
         [ERROR] be.eforge.robaws.client.combobox.LineTypeComboBox cannot be resolved to a type
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/combobox/OrderCombo.java'
         [ERROR] Line 26: No source code is available for type com.google.inject.Provider<T>; did you forget to inherit a required module?
         [ERROR] Line 61: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/combobox/ArticleSupplierCombo.java'
         [ERROR] Line 23: No source code is available for type com.google.inject.Provider<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/PurchaseRequestFactory.java'
         [ERROR] Line 5: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/combobox/AccountancyCodeCombo.java'
         [ERROR] Line 14: No source code is available for type com.google.inject.Provider<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/combobox/PostPricingStrategyCombo.java'
         [ERROR] be.eforge.robaws.shared.PostPricingStrategy cannot be resolved to a type
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/combobox/SupplyOrderCombo.java'
         [ERROR] Line 32: No source code is available for type com.google.inject.Provider<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/CopyResultProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/combobox/TransportCombo.java'
         [ERROR] Line 21: No source code is available for type com.google.inject.Provider<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/combobox/InvoiceCombo.java'
         [ERROR] Line 27: No source code is available for type com.google.inject.Provider<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/combobox/HeaderLevelComboBox.java'
         [ERROR] be.eforge.robaws.client.widget.combobox.EforgeComboBox cannot be resolved to a type
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/combobox/TimeTicketCombo.java'
         [ERROR] Line 62: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
         [ERROR] Line 28: No source code is available for type com.google.inject.Provider<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/combobox/LineTypeComboBox.java'
         [ERROR] Line 16: No source code is available for type com.google.inject.Provider<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/combobox/ProjectCombo.java'
         [ERROR] Line 25: No source code is available for type com.google.inject.Provider<T>; did you forget to inherit a required module?
         [ERROR] Line 70: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/combobox/RecalculationCategoryComboBox.java'
         [ERROR] be.eforge.robaws.shared.RecalculationCategory cannot be resolved to a type
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/combobox/CalculationTypeComboBox.java'
         [ERROR] be.eforge.robaws.shared.CalculationType cannot be resolved to a type
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/combobox/UnitTypeCombo.java'
         [ERROR] Line 34: No source code is available for type com.google.inject.Provider<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/editor/PostArticleLineItemEditor.java'
         [ERROR] be.eforge.robaws.client.combobox.ArticleCombo cannot be resolved to a type
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/widget/ArticleLineItemExtraDetailWidget.java'
         [ERROR] Line 29: No source code is available for type com.google.inject.Provider<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ArticleCreateCommandProxy.java'
         [ERROR] Line 11: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/combobox/VatTariffCombo.java'
         [ERROR] Line 14: No source code is available for type com.google.inject.Provider<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/combobox/AgreementTypeComboBox.java'
         [ERROR] Line 13: No source code is available for type com.google.inject.Provider<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/combobox/ActivityCombo.java'
         [ERROR] Line 17: No source code is available for type com.google.inject.Provider<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/combobox/ArticleCombo.java'
         [ERROR] Line 34: No source code is available for type com.google.inject.Provider<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/combobox/InvoicingStatusCombo.java'
         [ERROR] be.eforge.robaws.shared.InvoicingStatus cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/formula/session/ParameterScript.java'
         [ERROR] be.eforge.robaws.shared.formula.session.DAG.DAGException cannot be resolved to a type
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/editor/BadgesEditor.java'
         [ERROR] Line 54: No source code is available for type com.google.common.base.Strings; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/combobox/FormulaCombo.java'
         [ERROR] be.eforge.robaws.client.widget.combobox.EforgeComboBox cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/AllocationKeyLineProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/AccountancyStatus.java'
         [ERROR] Line 14: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/InvoicePeppolDataProxy.java'
         [ERROR] Line 11: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/RechnungType.java'
         [ERROR] Line 12: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PlaceTransportProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.AddressProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/CertificateProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/PhaseInvoiceStrategy.java'
         [ERROR] Line 11: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/IsInvoiceContext.java'
         [ERROR] be.eforge.robaws.shared.JournalType cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/LatLngProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/application/articlegroup/RobawsTreeItem.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.ArticleGroupProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/DatanormRequest.java'
         [ERROR] Line 13: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
         [ERROR] Line 12: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/StockReservationRequest.java'
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/ArticleDeviationRequest.java'
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/RawMaterialRequest.java'
         [ERROR] Line 15: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/StockLocationRequest.java'
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/VanMarckeRequestV2.java'
         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/ArticleRequest.java'
         [ERROR] Line 25: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/StockValuationRequest.java'
         [ERROR] Line 13: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 15: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/MaterialRequest.java'
         [ERROR] Line 17: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/StockChangeRequest.java'
         [ERROR] Line 32: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/ArticleGroupRequest.java'
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/WebshopRequest.java'
         [ERROR] Line 16: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/ArticleSupplierRequest.java'
         [ERROR] Line 17: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/ArticleStockLocationRequest.java'
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/widget/table/TableSearchWidget.java'
         [ERROR] Line 386: The method clearAllHandlerRegistrations() is undefined for the type DataTableAccessibilityControls
         [ERROR] Line 418: The method clearAllHandlerRegistrations() is undefined for the type DataTableAccessibilityControls
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ArticleQueryProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/widget/table/RobawsDataTable.java'
         [ERROR] Line 99: No source code is available for type com.google.common.base.Objects; did you forget to inherit a required module?
         [ERROR] Line 66: No source code is available for type com.google.common.base.Strings; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/ArticleColumn.java'
         [ERROR] Line 43: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/GAccountStrategy.java'
         [ERROR] Line 9: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/ExtraFieldType.java'
         [ERROR] Line 9: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/DefaultAttachmentProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/OverviewDefaultSortProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AcceptanceFlowRuleAccepterGroupProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/PhaseInvoiceCumulativeStrategy.java'
         [ERROR] Line 21: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/DurationProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/OcrScanType.java'
         [ERROR] Line 11: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/WeeklyScheduleBlockProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/MaintenanceStatusCategory.java'
         [ERROR] Line 9: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/TaskStatusCategory.java'
         [ERROR] Line 9: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/EmployeeType.java'
         [ERROR] Line 12: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/CivilStatus.java'
         [ERROR] Line 11: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/EmployeeSubType.java'
         [ERROR] Line 12: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/EmployeeStatute.java'
         [ERROR] Line 13: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SpecialGrantsProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PermissionProxy.java'
         [ERROR] be.eforge.robaws.shared.PermissionType cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/HasArchiveRequest.java'
         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.EntityProxy; did you forget to inherit a required module?
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/HasDeleteRequest.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.EntityProxy; did you forget to inherit a required module?
         [ERROR] Line 11: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/HasLockRequest.java'
         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.EntityProxy; did you forget to inherit a required module?
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PdfSettingsProxy.java'
         [ERROR] be.eforge.robaws.shared.PageOrientation cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PdfGeneratorLineItemColumnPriceRequestProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.EntityProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PdfGeneratorLanguageSettingsPriceRequestProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.EntityProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/PdfSettingsGenerationOptionProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SortByProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/FormTemplateProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PdfGeneratorLineItemColumnOfferProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.EntityProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PdfGeneratorLanguageSettingsOfferProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.EntityProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/PdfTotalsTable.java'
         [ERROR] Line 9: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/OrderExecutionInvoicingAggregationStrategy.java'
         [ERROR] Line 14: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PdfGeneratorLineItemColumnOrderProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.EntityProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PdfGeneratorLanguageSettingsOrderProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.EntityProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AmountFormulaLineDtoProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PdfGeneratorLanguageSettingsSupplyOrderProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.EntityProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PdfGeneratorLineItemColumnSupplyOrderProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.EntityProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PdfGeneratorLineItemColumnInvoiceProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.EntityProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PdfGeneratorLanguageSettingsInvoiceProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.EntityProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/BankPaymentLinkProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.ObjectRefProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PdfGeneratorLineItemColumnTimeTicketProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.EntityProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PdfGeneratorLanguageSettingsTimeTicketProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.EntityProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/DicoEndpointType.java'
         [ERROR] Line 18: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SiteSurveyProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PontoAccountAttributesProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ObjectRefValueProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/AllowanceChargeAmountType.java'
         [ERROR] Line 10: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/ImportJobStatus.java'
         [ERROR] Line 20: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/VatLiability.java'
         [ERROR] Line 21: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/MobilityTypeCalculationTierProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/EmployeeHoursLineDtoProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/BillitCompanyProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/AuditLogAction.java'
         [ERROR] Line 66: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/DynamicFeatureStatusProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/DynamicConfigActionProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/DynamicFeatureScopeProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ConfigAttributeProxy.java'
         [ERROR] Line 12: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/BankPaymentAssignableProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/DeductionOrAllowanceType.java'
         [ERROR] Line 11: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PaymentSummaryItemProxy.java'
         [ERROR] Line 11: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/ControlStatus.java'
         [ERROR] Line 11: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/FinancialBookingProxy.java'
         [ERROR] Line 11: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/UserFeedEntryProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/LabeledPropertyProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/EInvoicingStatusType.java'
         [ERROR] Line 11: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/NotificationAttachmentProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PriceGroupItemProxy.java'
         [ERROR] be.eforge.robaws.shared.CalculationType cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/RawMaterialType.java'
         [ERROR] Line 23: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/EmployeeHourDetailProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ExecutionPhaseProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PlanningTypeProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PlanningResourceProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PlanningItemFormTemplateProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/formula/session/DAG.java'
         [ERROR] Line 144: No source code is available for type com.google.common.base.Strings; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/formula/session/AdHocFormulaCompilationResult.java'
         [ERROR] be.eforge.robaws.shared.formula.session.DAGNode cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/formula/session/FormulaResult.java'
         [ERROR] be.eforge.robaws.shared.formula.session.DAG.DAGException cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/formula/session/DAGNode.java'
         [ERROR] be.eforge.robaws.shared.formula.FormulaSession cannot be resolved to a type
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/widget/combobox/EforgeComboBox.java'
         [ERROR] Line 83: No source code is available for type com.google.inject.Provider<T>; did you forget to inherit a required module?
         [ERROR] Line 214: No source code is available for type com.google.common.base.Strings; did you forget to inherit a required module?
         [ERROR] Line 586: No source code is available for type com.google.common.base.MoreObjects; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/widget/combobox/ContextualDataSource.java'
         [ERROR] Line 44: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/SalesRequestFactory.java'
         [ERROR] Line 5: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/SupplyOrderAnalyticsRequest.java'
         [ERROR] Line 16: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/PendingScansRequest.java'
         [ERROR] Line 13: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
         [ERROR] Line 11: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/SupplierRequest.java'
         [ERROR] Line 16: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/SupplierPriceRequestRequest.java'
         [ERROR] Line 20: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/AcceptanceFlowRuleRequest.java'
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/PriceRequestRequest.java'
         [ERROR] Line 15: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/SupplierPriceRequestSetRequest.java'
         [ERROR] Line 13: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/IncomingInvoiceRequest.java'
         [ERROR] Line 40: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/SupplyOrderRequest.java'
         [ERROR] Line 49: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/AcceptanceFlowRequest.java'
         [ERROR] Line 35: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/widget/combobox/StaticRequestFactoryDataSource.java'
         [ERROR] Line 52: No source code is available for type com.google.web.bindery.requestfactory.shared.Receiver<V>; did you forget to inherit a required module?
         [ERROR] Line 66: No source code is available for type com.google.web.bindery.requestfactory.shared.ServerFailure; did you forget to inherit a required module?
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SupplyOrderLineItemWithBackOrderProjectionProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/widget/SupplyOrderLineItemDetailsWidget.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.SupplyOrderLineItemWithBackOrderProjectionProxy cannot be resolved to a type
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/combobox/GenericEnumCombo.java'
         [ERROR] be.eforge.robaws.client.widget.combobox.EforgeComboBox cannot be resolved to a type
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/editor/BadgeEditor.java'
         [ERROR] Line 28: No source code is available for type com.google.common.base.Strings; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/widget/combobox/StaticDataSource.java'
         [ERROR] be.eforge.robaws.client.widget.combobox.SearchableDataSource cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/PeppolStatus.java'
         [ERROR] Line 16: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/CreateDatanormArticlesJobResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ImportDatanormPropertiesProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/DatanormImportProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/CheckDatanormDocumentsJobResultProxy.java'
         [ERROR] Line 11: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/StockReservationProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/StockReservationPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/StockReservationQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/ArticleDeviationPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ArticleDeviationQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/RawMaterialPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/RawMaterialQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/StockLocationQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/StockLocationPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/FindOneAdjustedPricesRequestProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/StockInfoForStockLocationResponseProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/ArticlePagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ArticleStockRequestProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ArticleStockResponseProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ArticleStockLocationProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/MaterialQueryProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/MaterialPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/StockChangePagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/StockChangeQueryProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/StockChangeProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/ArticleGroupPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ArticleGroupQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ImportWebshopArticlePropertiesProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/ImportWebshopBasketArticlesJobResultProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/ImportWebshopBasketArticlesSubJobResultProxy.java'
         [ERROR] Line 11: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/WebshopInfoProxy.java'
         [ERROR] Line 11: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/WebshopArticleProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/FetchWebshopBasketJobResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/ArticleSupplierPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ArticleSupplierQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ArticleStockLocationQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/ArticleStockLocationPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/SortDirection.java'
         [ERROR] Line 10: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/widget/table/TableFilterComponent.java'
         [ERROR] Line 17: No source code is available for type com.google.common.base.Supplier<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AttachmentRefProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/calendar/DurationType.java'
         [ERROR] Line 9: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/TimeProxy.java'
         [ERROR] Line 6: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/Day.java'
         [ERROR] Line 16: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/DeleteResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PdfGeneratorLanguageSettingsProxy.java'
         [ERROR] be.eforge.robaws.shared.Language cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/PageOrientation.java'
         [ERROR] Line 10: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PdfGeneratorLineItemColumnProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/FormTemplateSectionProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/IncomingInvoiceInvoicingAggregationStrategy.java'
         [ERROR] Line 12: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AmountFormulaLineParameterDtoProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/IncomingInvoiceProxy.java'
         [ERROR] be.eforge.robaws.shared.IncomingInvoiceType cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/DynamicConfigActionInputProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PossibleValueProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/PaymentSummaryItemType.java'
         [ERROR] Line 14: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/FinancialBookingType.java'
         [ERROR] Line 11: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/widget/RobawsField.java'
         [ERROR] Line 66: No source code is available for type com.google.common.base.Strings; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/widget/combobox/EforgeComboOptions.java'
         [ERROR] be.eforge.robaws.client.widget.combobox.behavior.ComboBehaviorProvider cannot be resolved to a type
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/widget/combobox/RequestFactoryDataSource.java'
         [ERROR] Line 101: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
         [ERROR] Line 65: No source code is available for type com.google.web.bindery.requestfactory.shared.Receiver<V>; did you forget to inherit a required module?
         [ERROR] Line 85: No source code is available for type com.google.web.bindery.requestfactory.shared.ServerFailure; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/AllocationKeyRequest.java'
         [ERROR] Line 13: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
         [ERROR] Line 15: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/DeliveryNoteRequest.java'
         [ERROR] Line 16: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/PlaceTransportRequest.java'
         [ERROR] Line 15: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/ThirdPartyTrackAndTraceRequest.java'
         [ERROR] Line 17: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
         [ERROR] Line 15: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/ClientRequest.java'
         [ERROR] Line 17: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/TransportRequest.java'
         [ERROR] Line 13: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/ClaimStateRequest.java'
         [ERROR] Line 18: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/OrderRequest.java'
         [ERROR] Line 21: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/SubscriptionRequest.java'
         [ERROR] Line 16: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/ClaimStateAbsenceRequest.java'
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/OrderAnalyticsRequest.java'
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/TimeRegistrationRequest.java'
         [ERROR] Line 19: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/InvoiceRequest.java'
         [ERROR] Line 24: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/ClaimStateFormulaRequest.java'
         [ERROR] Line 15: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/OfferRequest.java'
         [ERROR] Line 21: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/PriceGroupRequest.java'
         [ERROR] Line 14: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/ONormRequest.java'
         [ERROR] Line 13: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
         [ERROR] Line 11: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/TimeTicketRequest.java'
         [ERROR] Line 31: No source code is available for type com.google.web.bindery.requestfactory.shared.Request<T>; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SupplyOrderStatsAggregateProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ViewSearchParametersProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ScanDTOProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/SupplierPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SupplierQueryProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SupplierPriceRequestProxy.java'
         [ERROR] be.eforge.robaws.shared.SupplierPriceRequestStatus cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SupplierPriceRequestActionLogProxy.java'
         [ERROR] be.eforge.robaws.shared.SupplierPriceRequestAction cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/SupplierPriceRequestPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SupplierPriceRequestLineItemProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/SupplierPriceRequestStatus.java'
         [ERROR] Line 17: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SupplierPriceRequestQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SupplierPriceComparisonDTOProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AcceptanceFlowRuleQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/AcceptanceFlowRulePagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PriceRequestQueryProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/PriceRequestPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SupplierPriceRequestSetQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/SupplierPriceRequestSetPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SupplierPriceRequestSetProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ValidationErrorProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PaymentFileBankAccountProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/IncomingInvoiceTotalsProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/ProcessInboxByUploadJobResultProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PaymentFileItemProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/IncomingInvoicePagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/LineItemWebshopValidationResultProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/RobawsEntityAggregateProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SupplyOrderLineItemWithBackOrderBulkRequestProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SupplyOrderIncomingInvoicedProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SupplyOrderLineItemsForArticleWithBackOrderRequestProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SupplyOrderLineItemsForArticleWithBackOrderResponseProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/WebshopOrderOptionProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SupplyOrderQueryProxy.java'
         [ERROR] Line 11: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/SupplyOrderPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/WebshopDeliveryAddressProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/CreateSupplyOrderBulkResultProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SupplyOrderLineItemSelectionProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/RentalPlanningItemProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SupplyOrderLineItemWithBackOrderBulkProjectionProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/CreateSupplyOrderBulkProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/AcceptanceFlowStatus.java'
         [ERROR] Line 14: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/AcceptanceFlowPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AcceptanceFlowProxy.java'
         [ERROR] be.eforge.robaws.shared.AcceptanceFlowStatus cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AcceptanceFlowQueryProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/widget/combobox/SearchableDataSource.java'
         [ERROR] Line 33: No source code is available for type com.google.common.base.Strings; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/DatanormImportStatus.java'
         [ERROR] Line 19: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/DatanormArticleGroupProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/DeliveryNoteProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.AddressProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ImportedArticleSupplierProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/WebshopArticlePricesProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/WebshopBasketItemProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/LineItemColumnReferenceProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/FormTemplateElementProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/helpcenter/HelpCenterArticle.java'
         [ERROR] be.eforge.robaws.shared.Language cannot be resolved to a type
      [ERROR] Errors in 'file:/home/devlooj/IdeaProjects/eforge-boot/robaws-frontend/src/main/java/be/eforge/robaws/client/widget/combobox/behavior/ComboBehaviorProvider.java'
         [ERROR] be.eforge.robaws.client.widget.combobox.EforgeComboBox cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/AllocationKeySaveResultProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AllocationKeyQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/AllocationKeySaveRequestProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/AllocationKeyPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/AllocationKeyDtoProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/DeliveryNoteQueryProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/DeliveryNotePagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PlaceTransportQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/PlaceTransportPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ThirdPartyPostCalculationProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/ClientPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ClientQueryProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/TransportQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/TransportPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ClaimStateProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/ClaimStatePagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ClaimStateQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/OrderQueryProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/OrderAggregateProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/OrderPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/OrderExecutionDTOProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/SubscriptionPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SubscriptionQueryProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ClaimStateAbsenceProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ClaimStateAbsenceQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/ClaimStateAbsencePagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/TimeRegistrationPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/TimeRegistrationProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/TimeRegistrationType.java'
         [ERROR] Line 9: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/TimeRegistrationQueryProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/TimeRegistrationAggregateProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/InvoicesSendResponsesProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/InvoiceTotalsProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/InvoicePagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ClaimStateFormulaQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ClaimStateFormulaProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/FormulaParameterProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/ClaimStateFormulaPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/OfferAggregateProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/OfferFileImportJobResultProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/MeasurementExcelTransformationJobResultProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/OfferPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/UpdateOfferArticlesJobResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/PriceUpdateStrategy.java'
         [ERROR] Line 10: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/OfferQueryProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/PriceGroupPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PriceGroupQueryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ONormHtmlLineProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/TimeTicketTotalsProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ObjectDocumentIdsProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/CalendarEventDTOProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/paging/TimeTicketPagingLoadResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/TimeTicketQueryProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/TimeTicketAggregateProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/EmployeeWorkingTimeValidationResultProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/EmployeeHourTimeCheckProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/SupplierPriceRequestAction.java'
         [ERROR] Line 11: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SupplierPriceDTOProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SupplierContactPersonPriceRequestProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/SendOrderViaWebshopError.java'
         [ERROR] Line 12: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/WebshopOrderOptionChoiceProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/RentalPlanningDayItemProxy.java'
         [ERROR] Line 10: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/RentalSupplyOrderProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.NoRentalPeriodProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/SupplyOrderBulkEntryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/AcceptanceFlowUserStateProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/LineItemColumnReferenceType.java'
         [ERROR] be.eforge.robaws.shared.ObjectType cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/AllocationKeyLineDtoProxy.java'

         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/TimeTicketCandidateProxy.java'
         [ERROR] Line 11: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ClaimStateLineItemProxy.java'
         [ERROR] be.eforge.robaws.shared.LineType cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/ClaimStateAbsenceDayProxy.java'
         [ERROR] be.eforge.robaws.client.request.rf.proxy.RobawsEntityProxy cannot be resolved to a type
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/shared/ExecutionTimeType.java'
         [ERROR] Line 10: No source code is available for type net.lightoze.gwt.i18n.client.LocaleFactory; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/OrderExecutionItemDTOProxy.java'
         [ERROR] Line 21: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PeppolSendResponseProxy.java'
         [ERROR] Line 11: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/MeasurementExcelRowProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/UpdateOfferArticlesUnitTypeMismatchProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/NoRentalPeriodProxy.java'
         [ERROR] Line 9: No source code is available for type com.google.web.bindery.requestfactory.shared.EntityProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/config/TimeEntryProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/home/devlooj/IdeaProjects/eforge-boot/robaws-shared/target/robaws-shared-1.0.0-sources.jar!/be/eforge/robaws/client/request/rf/proxy/PeppolValidationErrorProxy.java'
         [ERROR] Line 7: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?
[ERROR] Tests run: 16, Failures: 14, Errors: 2, Skipped: 0, Time elapsed: 39.765 s <<< FAILURE! - in be.eforge.robaws.client.RobawsGwtTestSuite
[ERROR] testGetHourMinuteNotationMoreThan24Hours(be.eforge.robaws.client.util.GwtUtilTest)  Time elapsed: 39.711 s  <<< ERROR!
com.google.gwt.core.ext.UnableToCompleteException: (see previous log entries)

[ERROR] testGetHourMinuteNotationLessThan24Hours(be.eforge.robaws.client.util.GwtUtilTest)  Time elapsed: 0 s  <<< ERROR!
com.google.gwt.core.ext.UnableToCompleteException: (see previous log entries)
```

Op dinsdag 20 mei 2025 om 19:00:36 UTC+2 schreef Jeffrey Devloo:
The fullmodule is
```
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.5//EN"
        "http://google-web-toolkit.googlecode.com/svn/releases/2.5/distro-source/core/src/gwt-module.dtd">
<module rename-to="springbootgwt">

    <inherits name='com.google.gwt.user.User'/>
    <inherits name="com.google.gwt.i18n.I18N"/>
    <inherits name='com.google.gwt.maps.Maps'/>
    <inherits name="gwt.material.design.GwtMaterialWithJQuery"/>
    <inherits name="gwt.material.design.addins.GwtMaterialAddins"/>
    <inherits name="gwt.material.design.GwtMaterialTable"/>
    <inherits name="gwt.material.design.amcharts.GwtMaterialAmCharts"/>
    <inherits name="com.google.web.bindery.requestfactory.RequestFactory"/>

    <inherits name="com.google.common.base.Base"/>
    <inherits name="com.google.common.collect.Collect" />
    <inherits name="com.google.gwt.logging.Logging"/>
    <inherits name="de.benediktmeurer.gwt.slf4j.api.API"/>
    <inherits name="de.benediktmeurer.gwt.slf4j.jul.JUL"/>
    <inherits name="com.google.gwt.inject.Inject"/>
    <inherits name="com.allen_sauer.gwt.dnd.gwt-dnd"/>
    <inherits name="com.google.common.io.Io"/>
    <inherits name='com.gwtplatform.mvp.MvpWithEntryPoint'/>
    <inherits name="net.lightoze.gwt.i18n.GwtI18nServer"/>

    <inherits name="com.github.nmorel.gwtjackson.GwtJackson" />
    <inherits name="com.github.nmorel.gwtjackson.rest.GwtJacksonRest" />

    <set-configuration-property name="gin.ginjector.modules" value="be.eforge.robaws.client.gin.RobawsModule"/>
    <set-configuration-property name="gwtp.bootstrapper" value="be.eforge.robaws.client.gin.RobawsBootstrapper"/>

    <set-configuration-property name="gin.classloading.exceptedPackages" value="com.google.gwt.core.client"/>
    <set-configuration-property name="gin.classloading.exceptedPackages" value="com.google.gwt.core.client.impl"/>
    <set-configuration-property name="devModeUrlWhitelistRegexp" value=".*"/>

    <source path="client"/>
    <source path="shared"/>
    <public path="public"/>

    <extend-property name="locale" values="nl_BE,fr,en,de"/>
    <set-property-fallback name="locale" value="nl_BE"/>

    <collapse-property name="locale" values="*"/>
    <collapse-property name="user.agent" values="gecko1_8,safari"/>

    <!-- readable stacktraces -->
    <set-property name="compiler.useSourceMaps" value="true"/>
    <!-- end readable stacktraces -->

    <set-configuration-property name="CssResource.style" value="pretty"/>
    <set-property name="gwt.logging.logLevel" value="INFO"/>
    <set-property name="gwt.logging.enabled" value="TRUE"/>
    <set-property name="gwt.logging.simpleRemoteHandler" value="ENABLED"/>
    <set-property name="gwt.logging.consoleHandler" value="ENABLED"/>

    <replace-with class="be.eforge.robaws.client.util.RemoteLogging">
        <when-type-is class="com.google.gwt.logging.client.SimpleRemoteLogHandler"/>
        <any>
            <when-property-is name="gwt.logging.enabled" value="TRUE"/>
            <when-property-is name="gwt.logging.simpleRemoteHandler" value="ENABLED"/>
        </any>
    </replace-with>

    <replace-with class="be.eforge.robaws.client.rest.RestRequestFactoryImpl">
        <when-type-is class="be.eforge.robaws.client.request.rest.RestRequestFactory"/>
    </replace-with>

    <generate-with class="be.eforge.robaws.remapping.RestRequestGenerator">
        <when-type-assignable class="be.eforge.robaws.client.request.rest.requests.RestRequest" />
    </generate-with>

    <generate-with class="be.eforge.robaws.remapping.RestRequestFactoryGenerator">
        <when-type-assignable class="be.eforge.robaws.client.request.rest.RestRequestFactory" />
    </generate-with>

    <extend-configuration-property name="gwtjackson.configuration.extension" value="be.eforge.robaws.client.request.rest.jackson.DefaultJacksonConfiguration" />

    <stylesheet src="css/robaws_style.css"/>
    <stylesheet src="css/general_style_fixes.css"/>
    <stylesheet src="css/froala_style.css"/>
    <stylesheet src="css/gwt_material_style_fixes.css"/>
    <stylesheet src="css/custom_styles.css"/>
    <stylesheet src="css/utility.css"/>
</module>

```

My test looks like

```
public class RobawsGWTTest extends GWTTestCase {

    @GwtIncompatible
    @Override
    protected void runTest() throws Throwable {
        setCompilerArgs();
        super.runTest();
    }

    @Override
    public String getModuleName() {
        return "be.eforge.robaws.SpringBootGwt";
    }

    @GwtIncompatible
    void setCompilerArgs() {
        String gwtArgs = System.getProperty("gwt.args", "");
        gwtArgs += " -sourceLevel 17";
        gwtArgs += " -optimize 0";
        gwtArgs += " -style PRETTY";
        System.setProperty("gwt.args", gwtArgs);
    }
}
```

(setcompilerArgs is required when launching them through Intellij, where it does work without any issue)

Op dinsdag 20 mei 2025 om 18:52:32 UTC+2 schreef Colin Alworth:
I don't see a Gin inherits statement, which I think is how Guice imports end up working, but maybe GWTP picks that up. Given how many "...did you forget to inherit a required module" errors that are that seem to match classes that should be already in your inherits, I'm guessing you shared your "main" module, and that your test is using something different.

Can you confirm this is the module file that your test is using, and not just for production? Also, can you share the full log, to help confirm that what you think is getting used is actually being used?

On Tuesday, May 20, 2025 at 11:44:29 AM UTC-5 jef...@robaws.be wrote:
Hello

Coming from https://github.com/tbroyer/gwt-maven-archetypes/issues/76 I'd still like to fix the error that I am currently having.
The fix to change the source plugin from package to process-classes is causing the testsuite to not compile using mvn clean test.

Packaging the application has no issues.

These are my inherits:
```
    <inherits name='com.google.gwt.user.User'/>
    <inherits name="com.google.gwt.i18n.I18N"/>
    <inherits name='com.google.gwt.maps.Maps'/>
    <inherits name="gwt.material.design.GwtMaterialWithJQuery"/>
    <inherits name="gwt.material.design.addins.GwtMaterialAddins"/>
    <inherits name="gwt.material.design.GwtMaterialTable"/>
    <inherits name="gwt.material.design.amcharts.GwtMaterialAmCharts"/>
    <inherits name="com.google.web.bindery.requestfactory.RequestFactory"/>

    <inherits name="com.google.common.base.Base"/>
    <inherits name="com.google.common.collect.Collect" />
    <inherits name="com.google.gwt.logging.Logging"/>
    <inherits name="de.benediktmeurer.gwt.slf4j.api.API"/>
    <inherits name="de.benediktmeurer.gwt.slf4j.jul.JUL"/>
    <inherits name="com.google.gwt.inject.Inject"/>
    <inherits name="com.allen_sauer.gwt.dnd.gwt-dnd"/>
    <inherits name="com.google.common.io.Io"/>
    <inherits name='com.gwtplatform.mvp.MvpWithEntryPoint'/>
    <inherits name="net.lightoze.gwt.i18n.GwtI18nServer"/>

    <inherits name="com.github.nmorel.gwtjackson.GwtJackson" />
    <inherits name="com.github.nmorel.gwtjackson.rest.GwtJacksonRest" />
```

Here is an overview of my errors. I am omitting the source of the files.
```
   [ERROR] Errors in 'file:/...'
      [ERROR] Line 133: No source code is available for type com.google.inject.Provider<T>; did you forget to inherit a required module?
      [ERROR] Line 279: No source code is available for type com.gwtplatform.mvp.shared.proxy.PlaceRequest; did you forget to inherit a required module?
      [ERROR] Line 282: No source code is available for type com.google.common.base.Strings; did you forget to inherit a required module?
      [ERROR] Line 480: No source code is available for type com.google.common.base.Joiner; did you forget to inherit a required module?
      [ERROR] Line 738: No source code is available for type com.gwtplatform.mvp.client.proxy.PlaceManager; did you forget to inherit a required module?
      [ERROR] Line 761: No source code is available for type com.gwtplatform.mvp.shared.proxy.PlaceRequest.Builder; did you forget to inherit a required module?
      [ERROR] Line 1090: No source code is available for type com.google.web.bindery.requestfactory.shared.RequestContext; did you forget to inherit a required module?
      [ERROR] Line 1200: No source code is available for type com.google.common.base.Splitter; did you forget to inherit a required module?
      [ERROR] Line 1421: No source code is available for type com.google.web.bindery.requestfactory.shared.EntityProxy; did you forget to inherit a required module?
      [ERROR] Line 1422: No source code is available for type com.google.web.bindery.autobean.shared.AutoBeanCodex; did you forget to inherit a required module?
      [ERROR] Line 1422: No source code is available for type com.google.web.bindery.autobean.shared.AutoBeanUtils; did you forget to inherit a required module?
      [ERROR] Errors in 'jar:file:/.../MyProxy.java'
         [ERROR] Line 8: No source code is available for type com.google.web.bindery.requestfactory.shared.ValueProxy; did you forget to inherit a required module?

```

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/google-web-toolkit/518b5dc3-fc15-48bb-9ff5-30401e467ca9n%40googlegroups.com.