Import maven project created in intellij to eclipse -


i trying import maven project project created in intellij idea.the problem folder structure messed , not per maven structure. missing here?

if have not same maven standard directory layout, can setting custom paths source folders pom.xml code below or fix manually based on standard maven structure. seems intellij idea project have lot of custom configuration .idea files

<sourcedirectory>${project.basedir}/src/main/java</sourcedirectory> <testsourcedirectory>${project.basedir}/src/test/java</testsourcedirectory> <resources>   <resource>     <directory>${project.basedir}/src/main/resources</directory>   </resource> </resources> <testresources>   <testresource>     <directory>${project.basedir}/src/test/resources</directory>   </testresource> </testresources> 

Comments

Popular posts from this blog

javascript - Laravel datatable invalid JSON response -

java - Exception in thread "main" org.springframework.context.ApplicationContextException: Unable to start embedded container; -

sql server 2008 - My Sql Code Get An Error Of Msg 245, Level 16, State 1, Line 1 Conversion failed when converting the varchar value '8:45 AM' to data type int -