maven 編譯報錯集錦

1 maven 編譯 報找不到到 com.sun.image.codec.jpeg.JPEGCodec

在maven的pom文件中的plugins加入

<plugin>
  <artifactId>maven-compiler-plugin</artifactId>
      <configuration>
         <encoding>UTF-8</encoding>
         <compilerArguments>
                  <verbose />
                  <bootclasspath>${java.home}\lib\rt.jar</bootclasspath>
           </compilerArguments>
     </configuration>
</plugin>
2 maven編譯報錯 duplicated in the reactor

原因是父pom.xml 中 模塊重複導致

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章