无法查看导入的广告资源

时间:2016-03-08 16:21:08

标签: java eclipse maven

正常在eclipse中按ctrl +点击类文件时eclipse将其带到源代码。

我的projet中有几个罐子,我是通过maven进口的。但是当我点击一个类来查看它的源代码时,Eclipse并没有告诉我该类的源代码不可用。我已经尝试过,在打开但没有帮助的窗口中使用attach external jar选项将确切的源提供给jar。

我不知道为什么会这样。

1 个答案:

答案 0 :(得分:1)

使用以下方法通过maven下载jar文件的源代码:

mvn dependency:sources

如果你想下载特定的jar

mvn dependency:sources -DincludeArtifactIds=name_of_jar

或者,在eclipse的{​​{1}}插件中,指定

pom

在命令行

之后运行<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <configuration> <downloadSources>true</downloadSources> <downloadJavadocs>true</downloadJavadocs> </configuration> </plugin> </plugins> </build>