2021. 7. 6. 17:37ㆍjava
https://stackoverflow.com/questions/11361331/how-to-download-sources-for-a-jar-with-maven
org.apache.maven.plugins maven-dependency-plugin 3.1.1 download-sources sources
How to download sources for a jar with Maven?
In my project I am using a JAR file provided via Maven. But what Maven gives me is only this jar - no javadocs and no sources. Pressing "Download Sources" has no effect: Eclipse still does not find...
stackoverflow.com
](https://stackoverflow.com/questions/11361331/how-to-download-sources-for-a-jar-with-maven)
Themaven dependency pluginshould be used whit thedependency:sourcesgoal:
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>3.1.1</version> <executions> <execution> <id>download-sources</id> <goals> <goal>sources</goal> </goals> <configuration> </configuration> </execution> </executions> </plugin>
org.apache.maven.plugins maven-dependency-plugin 3.1.1 download-sources sources This can also be run from the command line as:
mvn dependency:sources -Dsilent=true
'java' 카테고리의 다른 글
xwiki -간단하게 request uri로 인증 및 sso 구현하기 (0) | 2021.07.13 |
---|---|
PDFBox로 PDF 파일 (특히 표 사용) 구문 분석 (0) | 2021.07.12 |
[긁어다 쓰는 소스]] 공통코드 메모리에 올려서 사용하기 (0) | 2021.05.28 |
(김책임의 고민) JSPWiki: Unable to load and setup properties from jspwiki.properties ubuntu1.20.04 (0) | 2021.05.13 |
apache jspwiki 설치 (ver 2.10.1)및 jdbc provider 적용 (0) | 2021.05.12 |