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

Popular posts from this blog

c++ - Is it possible to compile a VST on linux? -

java - Output of Eclipse is rubbish -

jquery - Confused with JSON data and normal data in Django ajax request -