maven - 引用本地jar,進行jar包移動

YatHo發表於2017-04-24

背景:

  專案為maven工程,部分jar需要需用專案單獨修改的本地jar包。

  配置好scope後發現構建後引用的jar沒有移動到對應的目錄,百度後發現需要配置以下依賴

 

<plugin>  
	<groupId>org.apache.maven.plugins</groupId>  
	<artifactId>maven-dependency-plugin</artifactId>  
	<version>2.7</version>  
	<executions>  
		<execution>  
		<phase>package</phase>  
		<goals>  
			<goal>copy-dependencies</goal>  
		</goals>  
		</execution>  
	</executions>  
	<configuration>  
		<includeScope>system</includeScope>  
		<outputDirectory>bus/lib</outputDirectory>  
	</configuration>  
</plugin>  

  如報錯:

  使用以下辦法解決

解決maven-dependency-plugin (goals "copy-dependencies","unpack") is not supported

相關文章