eclipse - automatic import of existing maven dependencies -
i have maven dependency available source code. possible import maven project in eclipse automatically?
i can manually create new maven project in eclipse, unpack source code in source directory , pom file.
are there plugin or other tool such work?
use maven eclipse plugin , tell download sources , javadocs you:
<project> [...] <build> [...] <plugins> [...] <plugin> <groupid>org.apache.maven.plugins</groupid> <artifactid>maven-eclipse-plugin</artifactid> <version>2.8</version> <configuration> <downloadsources>true</downloadsources> <downloadjavadocs>true</downloadjavadocs> </configuration> </plugin> [...] </plugins> [...] </build> [...] </project>
Comments
Post a Comment