GithubHelp home page GithubHelp logo

Comments (4)

autonomousapps avatar autonomousapps commented on August 20, 2024

In the particular case of auto-value-annotations, I took a look at the source, as well as the published jar, and see that all of the classes are annotations with either CLASS or SOURCE retention policies. So I think I might be able to automatically detect a case like this and not erroneously suggest that a compileOnly dep be available at runtime. In fact, I can also imagine detecting that such a dep is available at runtime but doesn't need to be (can be compileOnly).

Can you think of any dependencies that are only required at compile-time but which don't only contain CLASS/SOURCE annotations?

from dependency-analysis-gradle-plugin.

ZacSweers avatar ZacSweers commented on August 20, 2024

from dependency-analysis-gradle-plugin.

autonomousapps avatar autonomousapps commented on August 20, 2024

I wrote up some thoughts on what a "for-compilation-only jar" algorithm might look like. Feedback?

Jar must only contain:

  1. Annotation classes with CLASS or SOURCE retention policies (or no policy => CLASS is default).
  2. 1, plus types that only exist to provide a sort of "namespace". For example, @org.jetbrains.annotations.ApiStatus has no members. It only has inner classes which are themselves annotations that comply with 1.
  3. 1 and 2, plus types that are only used by the annotations in the jar that comply with 1. For example, the @org.intellij.lang.annotations.PrintFormat annotation uses a class (in this case defined in the same file), org.intellij.lang.annotations.PrintFormatPattern. The assumption here is that such classes (PrintFormatPattern) are only required during compilation, for their associated compile-only annotations.

from dependency-analysis-gradle-plugin.

autonomousapps avatar autonomousapps commented on August 20, 2024

Going to close this for now, based on compileOnly support provided with https://github.com/autonomousapps/dependency-analysis-android-gradle-plugin/blob/master/CHANGELOG.md#version-0230

from dependency-analysis-gradle-plugin.

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.