1. 程式人生 > 其它 >maven install 出現was cached in the local repository錯誤解決思路

maven install 出現was cached in the local repository錯誤解決思路

技術標籤:mavenjar

第一

有可能是下載maven依賴時候,某個jar包沒有下載完整,刪除再重新下載一次

第二

可能是在引用jar包地址沒有這個jar包了,maven一直優先使用快取先當作依賴作為打包,可以每次強制重新整理

<repositories>
        <repository>
                <id>central</id>
                <url>http://central</url>
                <releases>
                        <
enabled>
true</enabled> <updatePolicy>always</updatePolicy> </releases> <snapshots> <enabled>true</enabled> <updatePolicy>always</updatePolicy> <
/snapshots> </repository> </repositories>

第三

可以直接跳出檢測直接進行打包

<build>
		<plugins>
			<!--跳過打包測試依賴-->
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<configuration>
<skipTests>true</skipTests> </configuration> </plugin> </plugins> </build>

希望有用,奧裡給!!!