Page 1 of 1

How to Get Started Developing Forge - the wiki

PostPosted: 12 Aug 2011, 19:40
by Chris H.
I downloaded Subversion from CollabNet.

Did Dave and Slapshot download Subversion from CollabNet or do you remember getting it from elsewhere?

What about those of you who use windows or *nix. Where did you get it from?

Re: How to Get Started Developing Forge - the wiki

PostPosted: 12 Aug 2011, 19:58
by Rob Cashwalker
When installing Subclipse, I check the options for the SVNKit instead of the JavaHL. Worked equally on Windows and Linux.

Re: How to Get Started Developing Forge - the wiki

PostPosted: 12 Aug 2011, 20:21
by Braids
i installed it via Cygwin's setup.exe. it's not for everyone.

edit: but i don't think subclipse uses that, because otherwise i'd have to run Eclipse from a Cygwin bash window. . .

Re: How to Get Started Developing Forge - the wiki

PostPosted: 12 Aug 2011, 20:51
by jendave
I use Macports. It is not for everyone either :-)

Re: How to Get Started Developing Forge - the wiki

PostPosted: 13 Aug 2011, 13:42
by Chris H.
Well, I spent in all probability too much time trying to put together a simple install section. I wanted to remove Subversion from my .opt folder and from there re-install Eclipse+Maven+Subclipse+Subversion from the start to get some first hand experience.

I downloaded the newest version of Subversion from CollabNet. But the latest version will only install on the Snow Leopard OS and refuses to install on the new Lion OS. Sigh. Kinda kills my plans.

I installed Subversion v1.6.6 from CollabNet several years ago, I was most likely running the Tiger or Leopard OS at the time. This old version of Subversion is still running on my updated OS but it will not re-install. I imagine that CollabNet will release a Lion compatible update at some point in the future.

The Subversion download is a package type of installer. It is unlikely that it could be installed from within Eclipse on a Mac.

So, in hind sight it appears that I will not be able to redo the entire install section on the wiki. Sorry folks.

Re: How to Get Started Developing Forge - the wiki

PostPosted: 13 Aug 2011, 14:21
by Braids
Chris H. wrote:So, in hind sight it appears that I will not be able to redo the entire install section on the wiki. Sorry folks.
can you use JavaHL for Subclipse?

Re: How to Get Started Developing Forge - the wiki

PostPosted: 13 Aug 2011, 15:12
by Chris H.
Braids wrote:can you use JavaHL for Subclipse?
`
I'm unsure if I have that option on a Mac. Kinda of explains why I'm curious to see how Dave and Slapshot installed the software on their Macs.

Re: How to Get Started Developing Forge - the wiki

PostPosted: 13 Aug 2011, 16:44
by Snacko
http://subclipse.tigris.org/wiki/JavaHL ... 6bc511926b
JavaHL is part of openCollabNet package, so unless they update it's no go on mac lion, unless you compile svn + JavaHL yourself.

You can try Subversive, which is an eclipse project for svn integration. However it might have the same problem on depending on this package.

Re: How to Get Started Developing Forge - the wiki

PostPosted: 13 Aug 2011, 20:03
by Rob Cashwalker
subversive wasn't as intuitive as subclipse... It still requires the under-lying SVN libraries.

Re: How to Get Started Developing Forge - the wiki

PostPosted: 13 Aug 2011, 21:37
by Chris H.
OK, I updated the wiki to the best of my ability. I admit to being somewhat burned out on this issue and may not add anything else to it for awhile.

Re: How to Get Started Developing Forge - the wiki

PostPosted: 13 Aug 2011, 21:39
by Chris H.
Rob Cashwalker wrote:subversive wasn't as intuitive as subclipse... It still requires the under-lying SVN libraries.
`
yep.

Did you install subclipse onto Windows 32 bit? Turns out that subclipse for Windows 32 bit includes the subversion/javaHL code. :wink:

Re: How to Get Started Developing Forge - the wiki

PostPosted: 13 Aug 2011, 21:43
by Braids
=D> thanks for your hard work, Chris! =D>

Re: How to Get Started Developing Forge - the wiki

PostPosted: 14 Aug 2011, 13:32
by moomarc
=D> Thanks to all involved!

Unfortunately I'm still getting an error from pom.xml :( I've tried updating maven dependencies and tried updating to HEAD, but I'm getting missing artifacts, specifically"
Code: Select all
Missing artifact com.jgoodies:forms:jar:1.2.1
and
Code: Select all
Missing artifact org.apache.axis:axis:jar:1.4
The transfers keep timing out with
Code: Select all
ArtifactTransferException: Failure to transfer com.jgoodies:forms:jar:1.2.1 from http://repo1.maven.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced. Original error: Could not transfer artifact com.jgoodies:forms:jar:1.2.1 from/to central (http://repo1.maven.org/maven2): No response received after 60000
and
Code: Select all
ArtifactTransferException: Failure to transfer org.apache.axis:axis:jar:1.4 from http://repo1.maven.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced. Original error: Could not transfer artifact org.apache.axis:axis:jar:1.4 from/to central (http://repo1.maven.org/maven2): No response received after 60000
Is it something I've missed or could the sites just be down? I'm on Windows XP, using Eclipse (Indigo release)

Re: How to Get Started Developing Forge - the wiki

PostPosted: 14 Aug 2011, 13:50
by Hellfish
I don't know enough about maven to say this will definitely help, but from the exception message it sounds like the "Force Update of Snapshots/Releases" checkbox (In Maven's Update Dependencies dialog) could help.

Re: How to Get Started Developing Forge - the wiki

PostPosted: 14 Aug 2011, 14:20
by moomarc
Hellfish wrote:I don't know enough about maven to say this will definitely help, but from the exception message it sounds like the "Force Update of Snapshots/Releases" checkbox (In Maven's Update Dependencies dialog) could help.
=D> Yip, that fixed it. Thanks! I guess my DSL is a little slow (had a similar problem with initial import timing out while grabbing cardsfolder, but could just do a normal update to get the last few files in that instance).