How to import db2sa in Eclipse
db2sa is a multi maven module, and it is imported in Eclipse without using a Maven plugin. The maven plugin helps you with the dependencies, but for a refactoring, or to test the application immediately this plugin could generate extra issues. For more information: db2sa.sourceforge.net If there is a problem with the SVN file, such as: “Duplicated resource”, you have to configure the ignore property in Eclipse for the building part. You could just edit the .classpath file and change all lines for directories from: classpathentry kind=”src” path=”source-code/tools/src/test/java”/ To: classpathentry excluding=”**/.svn/” kind=”src” path=”source-code/tools/src/test/java”/ As you could notice, the excluding tag was added, indicating to ignore all .svn directories in any directory.






