天天看點

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 中 子產品重複導緻

繼續閱讀