ChatGPT解决这个技术问题 Extra ChatGPT

Unable to use Intellij with a generated sources folder

Related question How to configure IntelliJ IDEA and/or Maven to automatically add directories with Java source code generated using jaxb2-maven-plugin?

I have a custom plugin that generates sources under target/generated-sources (Note no toolname here). So I get sources like target/generated-sources/com/mycompany...etc.

This format cannot be changed at all, so will I be able to configure Intellij into adding it as a source folder. As of now, I can see that Intellij has added target/generated-sources/com as the source folder.

Please note that I do not have the option of configuring the plugin !

UPDATE 1: I do not agree with the fact that I MUST put my generated sources under a tool name folder. It may be a good convention, but if I have only one generator there is no need for me to put it there? Again, in my pom.xml I have a resources section which clearly indicates that target/generated-sources should be treated as a source folder. This works perfectly fine in Eclipse so I have no idea why Intellij would not respect my settings.

TL;DR -> When I put target/generated-sources in the resource section of pom.xml why is Intellij overzealous to add target/generated-sources/com to the classpath?

Try this solution, it may resolve your issue. click here for the solution
Try this solution, it may resolve your issue. click here for the solution

g
gvlasov

You can just change the project structure to add that folder as a "source" directory.

Project Structure → Modules → Click the generated-sources folder and make it a sources folder.

Or:

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>build-helper-maven-plugin</artifactId>
    <version>1.4</version>
    <executions>
        <execution>
            <id>test</id>
            <phase>generate-sources</phase>
            <goals>
                <goal>add-source</goal>
            </goals>
            <configuration>
                <sources>
                    <source>${basedir}/target/generated-sources</source>
                </sources>
            </configuration>
        </execution>
    </executions>
</plugin>

This option sounds interesting. I would lose this setting everytime I run "mvn idea:idea". Is there a way to declare a maven idea plugin with this "workaround"?
You can't add the generated sources folder if it under build because IDEA excludes the build folder.
@NBW you can't manually, yes. But if you delete your module and then reimport it, (with this plugin set up), idea recognizes everything correctly.
You can also right click any folder and use "mark directory as"
Although my pom.xml was contain this snippet, IDEA didn't see the generated sources. Running mvn idea:idea solved the issue in my case. For records.
M
Mehmet Hanoğlu

I'm using Maven (SpringBoot application) solution is:

Right click project folder Select Maven Select Generate Sources And Update Folders

Then, Intellij automatically import generated sources to project.


Works without messing up the folder structure yourself!
This answer deserves to be higher - much more convenient than the accepted answer
Notice that in the latest version of Intellij 2019.1, you can click the second button in the maven menu (on the right, expand the maven sidebar, on the top, second button)
I also had to check my maven settings.xml that was pointing to the wrong not default repo
Works like charm!
z
zhywu

With gradle, the project settings will be cleared whenever you refresh the gradle settings. Instead you need to add the following lines (or similar) in your build.gradle, I'm using kotlin so:

sourceSets {
    main {
        java {
            srcDir "${buildDir.absolutePath}/generated/source/kapt/main"
        }
    }
}

This worked for me for both IntelliJ's project import and gradle idea. Thanks! :)
This only works if I don't use annotationProcessor in my dependencies.
C
Community

The fix

Go to Project Structure - Modules - Source Folders and find the target/generated-sources/antlr4/com/mycompany - click Edit properties and set Package prefix to com.mycompany.

This is exactly the reason why we can set Package prefix on source dirs.

Different but related problem here


This fix is the only one that's worked for me in DAYS of looking. Thanks!
Oh thanks, I just updated intellij and they've changed their icons. I didn't thought that the orange folder would mean that it's not a source.
half a day I have been looking for this. Worked for me with antlr4. Thanks!
For ANTLR >=4.5.3 (maybe earlier, too), as long as my grammar was located in src/main/antlr4/<path-to-package>/, then it would appear in target/generated-sources/antlr4/<path-to-package>. IntelliJ automatically marked the correct directory as a sources root and no package prefix was necessary. I suspect this fix is needed when people place their grammars directly in src/main/antlr4, which is often recommended for some reason.
J
J.P

https://i.stack.imgur.com/VPNmP.png


S
Sean Patrick Floyd

Whoever wrote that plugin screwed up big time. That's not the way to do it!

Any workaround would be a huge hack, make the plugin developer aware of his bug.

Sorry, that's the only thing to do.

OK here's a hack, directly after your plugin's execution, use the antrun plugin to move the directory somewhere else:

<plugin>
    <artifactId>maven-antrun-plugin</artifactId>
    <version>1.6</version>
    <executions>
      <execution>
        <phase>process-sources</phase>
        <configuration>
          <target>
            <move todir="${project.build.directory}/generated-sources/toolname/com"
                  overwrite="true">
                <fileset dir="${project.build.directory}/generated-sources/com"/>
            </move>
          </target>
        </configuration>
        <goals>
          <goal>run</goal>
        </goals>
      </execution>
    </executions>
</plugin>

In this example, toolname should be replaced by anything that uniquely identifies the plugin that created the code and com stands for the root of the created packages. If you have multiple package roots, you probably need multiple <move> tasks.

But if the plugin adds the folder as source folder, then you're screwed.


Thanks Sean. I actually observed that Intellij adds both target/generated-sources/com as well as target/generated-sources (this is added as a source directory explicitly in "resource" section). Is there any other way to prevent the first thing from happening. If No, then I will try your workaround.
Yes, the author should have use target/generated-sources/my-tool.
S
SebastianX

For someone still struggle to fix the generated source not picking up by IntelliJ,

One reason could be the generated file size too big for it to load, then you need to put following line into your "custom IntelliJ IDEA properties" (under menu help)

idea.max.intellisense.filesize=7500

P
Preeti Joshi

i ran mvn generate-resources and then marked the /target/generated-resources folder as "sources" (Project Structure -> Project Settings -> Modules -> Select /target/generated-resources -> Click on blue "Sources" icon.


that is not a very persistent way of doing it.
C
Christoffer Hammarström

Maybe you can add a step to the generate-sources phase that moves the folder?


佚名

I had the same issue with Eclipse a couple of months ago when importing my project. Now I had the same with intelliJ. Here is how someone helped me to solve this in IntelliJ:

https://i.stack.imgur.com/enQqf.png


D
Devender Goyal

Its very simple:

Just right click on the directory and mark it as generated sources root. See the below sceenshot.

https://i.stack.imgur.com/8DZob.png


J
Jonathan

The only working condition, after several attempts, was to remove the hidden .idea folder from the root project folder and re-import it from Intellij


a
anupam

I wanted to update at the comment earlier made by DaShaun, but as it is my first time commenting, application didn't allow me.

Nonetheless, I am using eclipse and after I added the below mention code snippet to my pom.xml as suggested by Dashun and I ran the mvn clean package to generate the avro source files, but I was still getting compilation error in the workspace.

I right clicked on project_name -> maven -> update project and updated the project, which added the target/generated-sources as a source folder to my eclipse project.

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>build-helper-maven-plugin</artifactId>
    <version>1.4</version>
    <executions>
        <execution>
            <id>test</id>
            <phase>generate-sources</phase>
            <goals>
                <goal>add-source</goal>
            </goals>
            <configuration>
                <sources>
                    <source>${basedir}/target/generated-sources</source>
                </sources>
            </configuration>
        </execution>
    </executions>
</plugin>

R
Rudy Vissers

I wanted to ask that sometimes even if the pom is correct, Intellij does not see the directory. One way to solve this problem is to close the project, remove the .idea directory and reopen the project. The 'generated-sources' is added to the classpath (the directory is in blue (it was in red) and we see a star ('*') on the left).


a
ahmetyavuzoruc

https://i.stack.imgur.com/axrOc.png