From: Nicholas C. <ni...@kb...> - 2013-01-17 21:57:29
|
Hi yall If you are getting missing tomcat stuff it is because you need an EE edition of eclipse. As Andy wrote, remove all .classpath, .project and .settings/**. They should not be included in maven project repos. Besides this "import -> existing maven projects" should do the trick. M2e plugin for juno http://download.eclipse.org/technology/m2e/releases The project will maybe have com.sun.tools artifacts missing. One solution seems to be to ensure the project java used is a jdke and not a jre. However, adding this to the pom worked for me. <profiles> <profile> <id>default-tools.jar</id> <activation> <property> <name>java.vendor</name> <value>Sun Microsystems Inc.</value> </property> </activation> <dependencies> <dependency> <groupId>com.sun</groupId> <artifactId>tools</artifactId> <version>1.6.0</version> <scope>system</scope> <systemPath>${JAVA_HOME}/../lib/tools.jar</systemPath> </dependency> </dependencies> </profile> </profiles> This brings the problems down to 19 missing ConcurrentSkipListSet. I didn't have the patience to install a jdk1.5 and use the requested com.sun.tools:1.5.0. Best Nicholas > -----Oprindelig meddelelse----- > Fra: Jackson, Andrew [mailto:And...@bl...] > Sendt: 17. januar 2013 17:58 > Til: Kristinn Sigurðsson; arc...@li... > Emne: Re: [Archive-access-discuss] Importing Wayback project into > Eclipse > > Hi Kris, > > I got it working a while ago. My memory is a bit fuzzy, but IIRC the > problem is that the repo has the Eclipse project files checked in > (.classpath .project .settings/**). I think I had to remove these > before importing the project into Eclipse/m2e. > > Best wishes, > Andy > > > -----Original Message----- > > From: Kristinn Sigurðsson [mailto:kri...@la...] > > Sent: 17 January 2013 15:42 > > To: arc...@li... > > Subject: [Archive-access-discuss] Importing Wayback project into > Eclipse > > > > Hi all, > > > > Are there any instructions available for checking Wayback out of Git > and > > getting it set up in Eclipse? > > > > Checking it out and compiling it with Maven on the command line works > fine > > but whenever I try to import it into Eclipse (Juno with m2eclipse for > Maven > > support) it all goes haywire and fails to find numerous dependencies. > > > > Best regards, > > Kris > > > > --------------------------------------------------------------------- > ---- > > Landsbókasafn Íslands - Háskólabókasafn | Arngrímsgötu 3 - 107 > Reykjavík > > Sími/Tel: +354 5255600 | www.landsbokasafn.is > > --------------------------------------------------------------------- > ---- > > fyrirvari/disclaimer - http://fyrirvari.landsbokasafn.is > > --------------------------------------------------------------------- > --------- > > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, > MVC, > > Windows 8 Apps, JavaScript and much more. Keep your skills current > with > > LearnDevNow - 3,200 step-by-step video tutorials by Microsoft MVPs > and > > experts. ON SALE this month only -- learn more at: > > http://p.sf.net/sfu/learnmore_122712 > > _______________________________________________ > > Archive-access-discuss mailing list > > Arc...@li... > > https://lists.sourceforge.net/lists/listinfo/archive-access-discuss > ----------------------------------------------------------------------- > ------- > Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS, > MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current > with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft > MVPs and experts. ON SALE this month only -- learn more at: > http://p.sf.net/sfu/learnmore_122712 > _______________________________________________ > Archive-access-discuss mailing list > Arc...@li... > https://lists.sourceforge.net/lists/listinfo/archive-access-discuss |