Problems idea in iml file

Problems idea in iml file


iml file is the idea of ​​tissue engineering, which records the various recording modules, folders, and information dependent, are shown below:

<?xml version="1.0" encoding="UTF-8"?>
<module org.jetbrains.idea.maven.project.MavenProjectsManager.isMavenModule="true" type="JAVA_MODULE" version="4">
  <component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_5">
    <output url="file://$MODULE_DIR$/target/classes" />
    <output-test url="file://$MODULE_DIR$/target/test-classes" />
    <content url="file://$MODULE_DIR$">
      <sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
      <sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" />
      <sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
      <excludeFolder url="file://$MODULE_DIR$/target" />
    </content>
    <orderEntry type="inheritedJdk" />
    <orderEntry type="sourceFolder" forTests="false" />
  </component>
</module>

In general, the project will have to create this file, it is the essence of a project organization file, and Maven's pom.xml, gradle of build.gradle, such as tissue engineering and document processing dependencies and there is no difference, therefore, when we create Maven and gradle such as tissue engineering that comes with the project, you can delete this file, and, when we submit to the git repository, this file will often ignored, and that needs attention.

ref:
1. The relationship between iml files and pom.xml file

Guess you like

Origin www.cnblogs.com/prayjourney/p/11776075.html