Carlo Salinari wrote: > Hi all, I'm new here.
Welcome. > What is the best way to import piccolo2d.java as an eclipse project? > Do I have to install a maven plugin? > Can you give me some hints? Do you want to work on Piccolo2D.Java itself, or just use piccolo2d in your java project? To import Piccolo2D.Java into Eclipse, you'll need http://m2eclipse.sonatype.org and http://subclipse.tigris.org Then you select piccolo2d.java/trunk in the SVN repository browser and right-click Check out as Maven project... However, currently the latest version 0.12 of m2eclipse doesn't work with subclipse, see https://issues.sonatype.org/browse/MNGECLIPSE-2593 If you just need to include Piccolo2D.Java into your project, use <dependency> <groupId>org.piccolo2d</groupId> <artifactId>piccolo2d-core</artifactId> <version>1.3</version> </dependency> in your pom.xml (similar for piccolo2d-extras and piccolo2d-swt if you need those modules). michael -- Piccolo2D Developers Group: http://groups.google.com/group/piccolo2d-dev?hl=en
