Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
ScalaTest plugin and the Scala IDE ecosystem
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  8 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Luc Bourlier  
View profile  
 More options Jul 26 2012, 2:47 am
From: Luc Bourlier <luc.bourl...@typesafe.com>
Date: Thu, 26 Jul 2012 08:47:40 +0200
Local: Thurs, Jul 26 2012 2:47 am
Subject: ScalaTest plugin and the Scala IDE ecosystem

I am happy to announce the availability of the ScalaTest plugin for Scala
IDE, and the start of the Scala IDE ecosystem update sites.

Check the blog post for more info:
http://scala-ide.org/blog/scalatest-ecosystem.html

Have a nice testing day,
Luc

--
Luc Bourlier - Scala IDE contributor
TypeSafe - The software stack for applications that scale


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Rafał Krzewski  
View profile  
 More options Jul 26 2012, 6:47 am
From: Rafał Krzewski <rafal.krzew...@gmail.com>
Date: Thu, 26 Jul 2012 03:47:50 -0700 (PDT)
Local: Thurs, Jul 26 2012 6:47 am
Subject: Re: ScalaTest plugin and the Scala IDE ecosystem

ScalaTest plugin requires JDT [3.6.0,3.7.10) :(
Are there any plans to include support for Juno?

regards,
Rafał

W dniu czwartek, 26 lipca 2012 08:47:40 UTC+2 użytkownik Luc Bourlier
napisał:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Luc Bourlier  
View profile  
 More options Jul 26 2012, 10:37 am
From: Luc Bourlier <luc.bourl...@typesafe.com>
Date: Thu, 26 Jul 2012 07:37:44 -0700 (PDT)
Local: Thurs, Jul 26 2012 10:37 am
Subject: Re: ScalaTest plugin and the Scala IDE ecosystem

Plans? sure. I don't think it has been tested at all on Juno. So first it
should be check if they are any compatibility problem, and then see what to
do about it.

You can give it a spin yourself if you want. Just set
repo.eclipse, repo.ajdt and repo.scala-ide to the right update site URLs in
https://github.com/scalatest/scalatest-eclipse-plugin/blob/master/pom... (you
should be able to get the right values from
https://github.com/scala-ide/scala-ide/blob/platform/juno/pom.xml) and run
the build.

++,
Luc


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Rafał Krzewski  
View profile  
 More options Jul 26 2012, 3:29 pm
From: Rafał Krzewski <rafal.krzew...@gmail.com>
Date: Thu, 26 Jul 2012 12:29:38 -0700 (PDT)
Local: Thurs, Jul 26 2012 3:29 pm
Subject: Re: ScalaTest plugin and the Scala IDE ecosystem

I've managed to get the dependencies straight (I think) but I got a
compilation error:

[ERROR]
/home/rafal/workspaces/tools/scala/scalatest-eclipse-plugin/org.scala-ide.s dt.scalatest/src/scala/tools/eclipse/scalatest/launching/ScalaTestLaunchSho rtcut.scala:252:
error: method classpath in trait ClasspathManagement cannot be accessed in
scala.tools.eclipse.ScalaProject
[ERROR]       val loaderUrls = scProject.classpath.map { cp => new
File(cp.toString).toURI.toURL }

Does it look like something that might have changed between master and
platform/juno branches?

Cheers,
Rafał

W dniu czwartek, 26 lipca 2012 16:37:44 UTC+2 użytkownik Luc Bourlier
napisał:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Luc Bourlier  
View profile  
 More options Jul 26 2012, 4:58 pm
From: Luc Bourlier <luc.bourl...@typesafe.com>
Date: Thu, 26 Jul 2012 13:58:52 -0700 (PDT)
Local: Thurs, Jul 26 2012 4:58 pm
Subject: Re: ScalaTest plugin and the Scala IDE ecosystem

Yes, it is missing the changes from this pull request
https://github.com/scala-ide/scala-ide/pull/150
I'll check if I can update the Juno branch, but not promises.

Luc


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Rafał Krzewski  
View profile  
 More options Jul 27 2012, 7:38 am
From: Rafał Krzewski <rafal.krzew...@gmail.com>
Date: Fri, 27 Jul 2012 04:38:16 -0700 (PDT)
Local: Fri, Jul 27 2012 7:38 am
Subject: Re: ScalaTest plugin and the Scala IDE ecosystem

I was able to get around this problem by using
ScalaProject.scalaClasspath.fullClasspath instead. It causes the
compilation to fail for non-Juno profiles, so the proper fix requires
merging the pull request you've mentioned. It was good enough for my
current purpose though.
After that change I was able to build the plugin (all integration tests
passed OK). I've installed from the generated local update site it with a
minor issue - I had to disable "Contact all update sites ..." checkbox in
the Install new software dialog, because otherwise I got a dependency
resolution error claiming that org.scala-ide.scalatest 0.9.1 requires JDT
[3.6.0,3.7.10) even though I've set it to [3.6.0,4.2.10). Apparently the P2
got confused because I had the same version of the plugin available in my
local site and remote scala-ide ecosystem update site.
Now the good news: I was able to run a few test I have in my toy projects
(I'm just learning Scala right now) using ScalaTest plugin and it worked
smoothly. Run As > ScalaTest showed up in the right places, and Package /
Suite / File / Test modes worked as expected.

Would you like a pull request that expands JDT depedency range and
adds scala-ide-juno-master-scala-2.9 profile?

cheers,
Rafał

W dniu czwartek, 26 lipca 2012 22:58:52 UTC+2 użytkownik Luc Bourlier
napisał:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
borice  
View profile  
 More options Oct 14 2012, 1:43 pm
From: borice <bor...@gmail.com>
Date: Sun, 14 Oct 2012 10:43:59 -0700 (PDT)
Local: Sun, Oct 14 2012 1:43 pm
Subject: Re: ScalaTest plugin and the Scala IDE ecosystem

I know this has been asked before --- but is there a Juno-compatible
version anywhere that can be installed by people that don't know how to
compile everything from scratch for Juno?  

Thank you!


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Chee Seng Chua  
View profile  
 More options Oct 31 2012, 12:10 am
From: Chee Seng Chua <chees...@amaseng.com>
Date: Tue, 30 Oct 2012 21:10:31 -0700 (PDT)
Local: Wed, Oct 31 2012 12:10 am
Subject: Re: ScalaTest plugin and the Scala IDE ecosystem

Hi borice,

could be a little late reply, but may be you can try out update sites
listed here:-

https://groups.google.com/forum/?fromgroups=#!topic/scala-ide-dev/xhZ...

fyi, i am working currently working with luc to fix broken one in the new
update sites structure.

chee seng


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »