Prevent Using Module Library References And Use Local Repository ArtifactsFor some reason, if one do not want to use modular (*.iml) references of IDEA projects, one can choose to do so using: mvn idea:idea -DlinkModules=false or in your pom.xml: <project>
[...]
<build>
[...]
<plugins>
[...]
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-idea-plugin</artifactId>
<configuration>
<linkModules>false</linkModules>
</configuration>
</plugin>
[...]
</plugins>
[...]
</build>
[...]
</project> |
|||