Exclude folder in intellij idea using Maven

后端 未结 1 1389
隐瞒了意图╮
隐瞒了意图╮ 2020-12-30 15:26

We are using maven to manage our idea projects but I\'m having a problem excluding a directory from the idea project.

Using idea, I would just go to Project Settings

1条回答
  •  南方客
    南方客 (楼主)
    2020-12-30 16:02

    I just did a small test and, with the following snippet:

    
      org.apache.maven.plugins
      maven-idea-plugin
      
        test-output,.clover,logs
      
    
    

    The generated .iml file contains the following entries:

      
      
      
      
    

    Which is to my knowledge the expected result.

    Do you get something different? Are you expecting somehting else?

    0 讨论(0)
提交回复
热议问题