Giter VIP home page Giter VIP logo

Comments (2)

elucash avatar elucash commented on September 25, 2024 1

(duplicate #1380)
It is a problem with not-yet-generated type ImmutableFirstObject. I would suggest, at some point to switch to using only abstract value type in signatures and only use references to generated types in code (inside methods) to instantiate / build instances. All that worked relatively well in Java6–8 and Maven, after that compilers changed a lot and also build tools (like Gradle) introduce more sophisticated ways to isolate annotation processors so this (specifically: using not-yet-generated type in signatures, as attribute types of other values, as params or return types etc) is no longer works reliably in the face of Java / tools upgrades. Need to update documentation to reflect this, but anyway. Currently this is a territory of undefined behavior on part of compiler: should it retain information about not found symbol and keep it as was specified in the source code (just having and error flag/type) or turn it into obscure <any>

I would suggest to try newly released 2.10.0 it has some fixes, possibly related. Also, for build tools it helps to try

  1. Switch off incremental compilation or any cool isolation mode for the annotation processor
  2. In Gradle, use options.sourcepath on Javac configuration to point to the sources root, this might help Immutables to peek into sources (during compilation) and see un-mangled type (instead of <any>)

from immutables.

tolgaakkoca avatar tolgaakkoca commented on September 25, 2024 1

Hi @elucash , thanks for suggestion. The problem has been resolved when using options.sourcepath to point to the sources root.

options.sourcepath = files(sourceSets.main.java.srcDirs)

from immutables.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.