Code Monkey home page Code Monkey logo

Comments (3)

hantsy avatar hantsy commented on August 19, 2024

I hope to add a subfolder for the generated codes by this codegen.

For example, for Java , add build/generated/java.

And for Kotlin, add build/generated/kotlin instead.

from dgs-codegen.

convcha avatar convcha commented on August 19, 2024

@mlewe You save my life!
Thank you.

I have same problem.

https://netflix.github.io/dgs/generating-code-from-schema/#configuring-code-generation
I tried generatedSourcesDir and outputDir, but neither worked.

outputDir

generateJava {
    // Error: Cannot set the value of read-only property 'outputDir' for task ':generateJava' of type com.netflix.graphql.dgs.codegen.gradle.GenerateJavaTask.
    outputDir = file('generated/sources/annotationProcessor/java/main')
    ...
}

generatedSourcesDir

generateJava {
    // I don't know why, but the source was not generated.
    generatedSourcesDir = 'build/dgs'
    ...
}

Eventually I was able to get DGS to coexist with other libraries that use the annotation processor with the following configuration.
Originally, gradle build was successful, but I was suffering from compilation errors in Visual Studio Code.

tasks.withType(com.netflix.graphql.dgs.codegen.gradle.GenerateJavaTask) {
    generatedSourcesDir = "${project.buildDir.absolutePath}/dgs-codegen"
}

sourceSets {
    main {
        java {
            def dirs = srcDirs
            dirs.remove(file("${project.buildDir.absolutePath}/generated"))
            dirs.add(file("${project.buildDir.absolutePath}/generated/sources/annotationProcessor/java/main"))
            srcDirs = dirs
            srcDir "${project.buildDir.absolutePath}/dgs-codegen/generated"
        }
    }
}

from dgs-codegen.

BerniBurnsen avatar BerniBurnsen commented on August 19, 2024

I've tried the workaround.

In our project the "build/generated" folder is still a source set. Which versions are you using?

from dgs-codegen.

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.