<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>Scala Forum - Tools</title>
    <subtitle></subtitle>
    <link rel="self" href="http://scala-forum.org/feed.php?22,type=atom" />
    <id>http://scala-forum.org/list.php?22</id>
    <updated>2010-09-05T22:34:56+02:00</updated>
    <generator>Phorum 5.2.13</generator>
    <entry>
        <title type="html">Support the use of sourceinside tools to write code? (no replies)</title>
        <link href="http://scala-forum.org/read.php?22,2011,2011#msg-2011" />
        <category term="Tools" />
        <published>2010-08-29T16:40:14+02:00</published>
        <updated>2010-08-29T16:40:14+02:00</updated>
        <id>http://scala-forum.org/read.php?22,2011,2011#msg-2011</id>
        <author>
            <name>pinghe</name>
        </author>
        <summary type="html"><![CDATA[ Support the use of sourceinside tools to write code?]]></summary>
    </entry>
    <entry>
        <title type="html">Interpreter problems (no replies)</title>
        <link href="http://scala-forum.org/read.php?22,1995,1995#msg-1995" />
        <category term="Tools" />
        <published>2010-08-23T23:54:03+02:00</published>
        <updated>2010-08-23T23:54:03+02:00</updated>
        <id>http://scala-forum.org/read.php?22,1995,1995#msg-1995</id>
        <author>
            <name>BeniBela</name>
        </author>
        <summary type="html"><![CDATA[ Hi,<br />
I'm using Scala to find the solution to some small math questions  (e.g. what is the 763th five digit prime), and I noticed several problems with the 2.8 interpreter on Debian squeeze:<br />
* &quot;ctrl+left/right&quot; doesn't jump to the next word<br />
* &quot;delete&quot; deletes the left instead of the right character<br />
* pasting a text containing tabs doesn't work, because it triggers the completion mode<br />
* as soon as a line gets longer than the screen width, everything gets crazy. The cursor position has no relation to the edited text, moving the cursor changes  the displayed text, typing a single character duplicates the whole line (on the screen)<br />
* I can't figure out how to kill a endless loop.  Ctrl+C only kills the whole interpreter with all interim results.<br />
<br />
Does someone know a solution for these issues?<br />
<br />
I tried to use the NetBeans Scala interpreter, and it doesn't have most of these problems, but it has others (e.g. no tab completion, very slow startup)<br />
<br />
BeniBela]]></summary>
    </entry>
    <entry>
        <title type="html">anyone using the intellij idea scala plugin? (5 replies)</title>
        <link href="http://scala-forum.org/read.php?22,1960,1960#msg-1960" />
        <category term="Tools" />
        <published>2010-08-14T18:58:53+02:00</published>
        <updated>2010-08-24T11:20:36+02:00</updated>
        <id>http://scala-forum.org/read.php?22,1960,1960#msg-1960</id>
        <author>
            <name>HamsterofDeath</name>
        </author>
        <summary type="html"><![CDATA[ just curious. there's a free edition of idea supporting scala via a plugin that is according to some comment on scala-lang.org miles ahead of the eclipse plugin.<br />
i never used the eclipse one, i can only say idea's is pretty stable]]></summary>
    </entry>
    <entry>
        <title type="html">simple build tool and external jars (LWJGL) (no replies)</title>
        <link href="http://scala-forum.org/read.php?22,1893,1893#msg-1893" />
        <category term="Tools" />
        <published>2010-08-01T22:44:38+02:00</published>
        <updated>2010-08-01T22:44:38+02:00</updated>
        <id>http://scala-forum.org/read.php?22,1893,1893#msg-1893</id>
        <author>
            <name>krux</name>
        </author>
        <summary type="html"><![CDATA[ has anyone experiences in using external jars with simple built tool? I am trying to use sbt to build my LWJGL project. It compiles perfectly and fast, but it doesn't find the LWJGL classes when i write run.<br />
<br />
i have all lwjgl jars in the projects lib folder, and the projects does compile and run in Netbeans. I moved the source and dependent jar files into my sbt project folder. But i cant run it here.<br />
<br />
Any suggestions?<br />
<br />
<pre class="scala bbcode_geshi" style="font-family:monospace;"><div class="head">Language: Scala</div><a href="http://scala-lang.org"><span class="kw1">package</span></a> sbttest
&nbsp;
<a href="http://scala-lang.org"><span class="kw1">import</span></a> org.<span class="me1">lwjgl</span>.<span class="me1">opengl</span>.<span class="me1">Display</span>
&nbsp;
<a href="http://scala-lang.org"><span class="kw1">object</span></a> Main<span class="br0">&#123;</span>
    <a href="http://scala-lang.org"><span class="kw1">def</span></a> main<span class="br0">&#40;</span>args<span class="sy0">:</span>Array<span class="br0">&#91;</span>String<span class="br0">&#93;</span><span class="br0">&#41;</span><span class="br0">&#123;</span>
        println<span class="br0">&#40;</span><span class="st0">&quot;hi!&quot;</span><span class="br0">&#41;</span>
        Display.<span class="me1">setTitle</span><span class="br0">&#40;</span><span class="st0">&quot;Hello world!&quot;</span><span class="br0">&#41;</span>
        Display.<span class="me1">create</span>
    <span class="br0">&#125;</span>
<span class="br0">&#125;</span></pre>
<br />
<pre class="bbcode">
&gt; run
[info] 
[info] == copy-resources ==
[info] == copy-resources ==
[info] 
[info] == compile ==
[info]   Source analysis: 1 new/modified, 0 indirectly invalidated, 0 removed.
[info] Compiling main sources...
[info] Compilation successful.
[info]   Post-analysis: 2 classes.
[info] == compile ==
[info] 
[info] == run ==
[info] Running sbttest.Main 
hi!
java.lang.UnsatisfiedLinkError: no lwjgl in java.library.path
        at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1734)
        at java.lang.Runtime.loadLibrary0(Runtime.java:823)
        at java.lang.System.loadLibrary(System.java:1028)
        at org.lwjgl.Sys$1.run(Sys.java:72)
        at java.security.AccessController.doPrivileged(Native Method)
        at org.lwjgl.Sys.doLoadLibrary(Sys.java:65)
        at org.lwjgl.Sys.loadLibrary(Sys.java:81)
        at org.lwjgl.Sys.&lt;clinit&gt;(Sys.java:98)
        at org.lwjgl.opengl.Display.&lt;clinit&gt;(Display.java:128)
        at sbttest.Main$.main(Main.scala:10)
        at sbttest.Main.main(Main.scala)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at sbt.Run.run0(Run.scala:60)
        at sbt.Run.execute$1(Run.scala:47)
        at sbt.Run$$anonfun$run$2.apply(Run.scala:50)
        at sbt.Run$$anonfun$run$2.apply(Run.scala:50)
        at sbt.TrapExit$.executeMain$1(TrapExit.scala:33)
        at sbt.TrapExit$$anon$1.run(TrapExit.scala:42)
[info] == run ==
[error] Error running run: Nonzero exit code: 1
[info] 
[info] Total time: 2 s, completed 03.08.2010 00:55:2</pre>
<br />
Edit:<br />
I rust checked if the classpath could be wrong, but it isn't (made a screenshot).]]></summary>
    </entry>
    <entry>
        <title type="html">simple build tool with IDE (8 replies)</title>
        <link href="http://scala-forum.org/read.php?22,1874,1874#msg-1874" />
        <category term="Tools" />
        <published>2010-07-30T21:39:13+02:00</published>
        <updated>2010-08-06T21:26:40+02:00</updated>
        <id>http://scala-forum.org/read.php?22,1874,1874#msg-1874</id>
        <author>
            <name>krux</name>
        </author>
        <summary type="html"><![CDATA[ Hi<br />
<br />
I have read that sbt is the best for building scala projects. But somehow, I do not unterstand how this thing works. And i do not know how I can integrate it into my IDE Netbeans (the only IDE that works at all).]]></summary>
    </entry>
    <entry>
        <title type="html">Eclipse - Build does not work in mixed java-scala project (1 reply)</title>
        <link href="http://scala-forum.org/read.php?22,1823,1823#msg-1823" />
        <category term="Tools" />
        <published>2010-07-27T17:10:38+02:00</published>
        <updated>2010-07-27T17:22:32+02:00</updated>
        <id>http://scala-forum.org/read.php?22,1823,1823#msg-1823</id>
        <author>
            <name>Knopf</name>
        </author>
        <summary type="html"><![CDATA[ Hello,<br />
<br />
I use MyEclipse 8.5, Java 1.6.0_18 and Scala 2.8.<br />
Some times Eclipse does not compile my scala code. The java classes are there - but no scala code is compiled.<br />
<br />
I have to reinstall the Scala-Plugin and the build works fine. Some weeks later, I have the same problem again.<br />
<br />
Does anyone have an idea about this problem? What should I do. <br />
<br />
Thanks for help.<br />
<br />
Barbara]]></summary>
    </entry>
    <entry>
        <title type="html">Eclipse Scala IDE released (no replies)</title>
        <link href="http://scala-forum.org/read.php?22,1726,1726#msg-1726" />
        <category term="Tools" />
        <published>2010-07-15T09:30:48+02:00</published>
        <updated>2010-07-15T09:30:48+02:00</updated>
        <id>http://scala-forum.org/read.php?22,1726,1726#msg-1726</id>
        <author>
            <name>christian</name>
        </author>
        <summary type="html"><![CDATA[ The new Eclipse based <a href="http://www.scala-ide.org/" rel="nofollow" >Scala IDE 2.8.0</a> supports Scala 2.8.]]></summary>
    </entry>
    <entry>
        <title type="html">Eclipse 3.6 and Scala 2.8 (3 replies)</title>
        <link href="http://scala-forum.org/read.php?22,1591,1591#msg-1591" />
        <category term="Tools" />
        <published>2010-06-23T18:09:35+02:00</published>
        <updated>2010-06-27T00:33:43+02:00</updated>
        <id>http://scala-forum.org/read.php?22,1591,1591#msg-1591</id>
        <author>
            <name>flossy</name>
        </author>
        <summary type="html"><![CDATA[ I'm trying to install the <a href="http://download.scala-ide.org/" rel="nofollow" >Scala-Eclipse-Plugin</a> in Eclipse 3.6, but it fails with the following error:<br />
<br />
<pre class="bbcode">
An error occurred while collecting items to be installed
session context was:(profile=epp.package.java, phase=org.eclipse.equinox.internal.p2.engine.phases.Collect, operand=, action=).
No repository found containing: osgi.bundle,org.eclipse.equinox.weaving.aspectj,1.0.0.v20100503
No repository found containing: osgi.bundle,org.eclipse.equinox.weaving.hook,1.0.0.v20100503
No repository found containing: osgi.bundle,org.eclipse.pde.build,3.6.0.v20100603
No repository found containing: osgi.bundle,org.eclipse.pde.core,3.6.0.v20100601
No repository found containing: osgi.bundle,org.eclipse.pde.launching,3.6.0.v20100601
No repository found containing: osgi.bundle,org.eclipse.pde.ui,3.6.0.v20100601</pre>
<br />
How can I solve that problem?]]></summary>
    </entry>
    <entry>
        <title type="html">Porting a flex/bison parser to scala (no replies)</title>
        <link href="http://scala-forum.org/read.php?22,1560,1560#msg-1560" />
        <category term="Tools" />
        <published>2010-06-14T17:39:12+02:00</published>
        <updated>2010-06-14T17:39:12+02:00</updated>
        <id>http://scala-forum.org/read.php?22,1560,1560#msg-1560</id>
        <author>
            <name>rede</name>
        </author>
        <summary type="html"><![CDATA[ Hello, <br />
<br />
I'm new to Scala and would like to port an existing flex/bison parser to Scala (front end for a language processing tool). I've identified several options:<br />
<br />
1)  ScalaBison, which somehow post processes GNU bison output to generate a native Scala parser, in which you can code semantic actions directly in Scala. With this approach however, the question of which lexer to use remains open (JFlex?).<br />
<br />
2) GNU bison, which can generate parsers in Java. I guess I would use JFlex as lexer generator. However, In this approach, the lexer/parser would be generated as Java classs, the semantic actions would be written in Java, but would contain calls to my scala API, and the resulting parser would have to be called from the main Scala program. I don't even know if it is possible to have Scala code that calls Java code that itself calls Scala code.<br />
<br />
3) Scala combinators. I'd like to avoid that, as the grammar is fairly big and complex, extensively uses priorities.<br />
<br />
4 ) Antlrv3, but just as in 2, I don't know if it is possible to call Scala methods code from Java code, itself called from a Scala main.<br />
<br />
<br />
What would you recommend?]]></summary>
    </entry>
    <entry>
        <title type="html">Netbeans 6.8 scala plugin builds very slowly (5 replies)</title>
        <link href="http://scala-forum.org/read.php?22,1438,1438#msg-1438" />
        <category term="Tools" />
        <published>2010-05-25T09:51:50+02:00</published>
        <updated>2010-08-19T15:07:21+02:00</updated>
        <id>http://scala-forum.org/read.php?22,1438,1438#msg-1438</id>
        <author>
            <name>hejfelix</name>
        </author>
        <summary type="html"><![CDATA[ Hello Guys,<br />
<br />
after trying several versions of netbeans with the scala plugin (I like netbeans for java better than eclipse for java), I found that when building my program and running it, that it takes ages. I mean up to one minute to build (maybe more like 40 seconds or such), which is unacceptable for ad-hoc tests.<br />
<br />
I can use netbeans scala plugin for writing non-interactive programs because it is way more stable than the eclipse counterpart, but when I want to write an openGL application, eclipse is simply lightyears better because of the build time. No matter the stability issues.<br />
<br />
Is it my own setup that is making the netbeans scala plugin build so slowly, or is this the case for you guys as well? I mean, 20 seconds for Hello World is just insane.<br />
<br />
I hope to get the &quot;flick this button and it works&quot; answer hehe :)<br />
<br />
-Greetings]]></summary>
    </entry>
    <entry>
        <title type="html">Netbeans IDE 6.8 (1 reply)</title>
        <link href="http://scala-forum.org/read.php?22,1353,1353#msg-1353" />
        <category term="Tools" />
        <published>2010-05-01T20:22:48+02:00</published>
        <updated>2010-05-02T19:01:20+02:00</updated>
        <id>http://scala-forum.org/read.php?22,1353,1353#msg-1353</id>
        <author>
            <name>stjava12</name>
        </author>
        <summary type="html"><![CDATA[ Hi <br />
i am having these errors in NetBeans (Tried to clean)<br />
Could not load definitions from resource scala/tools/ant/antlib.xml. It could not be found.<br />
 <br />
<br />
Things did to resolve , but didn't work <br />
<br />
Added -J-Dscala.home=C:\scala\scala-2.7.7.final as below<br />
also added -J-Xmx1024m,   to etc\netbeans.conf<br />
<br />
<br />
netbeans_default_options=&quot;-J-Dorg.glassfish.v3ee6.installRoot=\&quot;C:\Program Files\sges-v3\&quot; -J-Dcom.sun.aas.installRoot=\&quot;C:\Sun\AppServer\&quot; -J-client -J-Xverify:none -J-Xmx1024m -J-Xss2m -J-Xms32m -J-XX:PermSize=32m -J-XX:MaxPermSize=200m -J-Dapple.laf.useScreenMenuBar=true -J-Dsun.java2d.noddraw=true -J-XX:+UseConcMarkSweepGC -J-XX:+CMSClassUnloadingEnabled -J-XX:+CMSPermGenSweepingEnabled -J-Dscala.home=C:\scala\scala-2.7.7.final&quot;<br />
<br />
could any one please help, shall appreciate,thx<br />
regards<br />
sushil]]></summary>
    </entry>
    <entry>
        <title type="html">NetBeans Scala Plugin RC2 for Scala 2.8 (no replies)</title>
        <link href="http://scala-forum.org/read.php?22,1300,1300#msg-1300" />
        <category term="Tools" />
        <published>2010-04-15T10:42:14+02:00</published>
        <updated>2010-04-15T10:42:14+02:00</updated>
        <id>http://scala-forum.org/read.php?22,1300,1300#msg-1300</id>
        <author>
            <name>christian</name>
        </author>
        <summary type="html"><![CDATA[ The <a href="http://wiki.netbeans.org/Scala68v1" rel="nofollow" >NetBeans 6.8  Scala plugin for Scala 2.8</a> has just reached release candidate 2 (RC2) state.]]></summary>
    </entry>
    <entry>
        <title type="html">Missing IntelliJ run configuration (3 replies)</title>
        <link href="http://scala-forum.org/read.php?22,1282,1282#msg-1282" />
        <category term="Tools" />
        <published>2010-04-10T14:37:38+02:00</published>
        <updated>2010-04-14T10:30:33+02:00</updated>
        <id>http://scala-forum.org/read.php?22,1282,1282#msg-1282</id>
        <author>
            <name>deusmac</name>
        </author>
        <summary type="html"><![CDATA[ Hi,<br />
<br />
i installed the latest IntelliJ Idea Community Edition and afterwards installed the Scala plugin. I was able to set up a project with scala support. But there is no configuration I can use to run my Scala files and I have no clue how to set one up. <br />
<br />
Do you have any advice?]]></summary>
    </entry>
    <entry>
        <title type="html">Nested annotations: Possible with latest 2.8-Snapshot? (2 replies)</title>
        <link href="http://scala-forum.org/read.php?22,1238,1238#msg-1238" />
        <category term="Tools" />
        <published>2010-03-30T23:54:29+02:00</published>
        <updated>2010-04-30T09:43:51+02:00</updated>
        <id>http://scala-forum.org/read.php?22,1238,1238#msg-1238</id>
        <author>
            <name>dubbyconqueror</name>
        </author>
        <summary type="html"><![CDATA[ I read some websites about nested annotations in scala, e.g. to write anotations for jee entity beans with scala like this:<br />
<br />
<pre class="scala bbcode_geshi" style="font-family:monospace;"><div class="head">Language: Scala</div><span class="sy0">@</span>Entity
<span class="sy0">@</span>NamedQueries<span class="br0">&#40;</span><span class="br0">&#123;</span>
	<span class="sy0">@</span>NamedQuery<span class="br0">&#40;</span>name <span class="sy0">=</span> <span class="st0">&quot;findAllBooks&quot;</span>, query <span class="sy0">=</span> <span class="st0">&quot;SELECT b FROM Book b&quot;</span><span class="br0">&#41;</span>,
	<span class="sy0">@</span>NamedQuery<span class="br0">&#40;</span>name <span class="sy0">=</span> <span class="st0">&quot;findBookWithParam&quot;</span>, query <span class="sy0">=</span> <span class="st0">&quot;SELECT b FROM Book b where b.title = :title&quot;</span><span class="br0">&#41;</span>
<span class="br0">&#125;</span><span class="br0">&#41;</span>
<a href="http://scala-lang.org"><span class="kw1">class</span></a> Book <span class="br0">&#123;</span>
	<span class="sy0">@</span>Id <span class="sy0">@</span>GeneratedValue
	<a href="http://scala-lang.org"><span class="kw1">var</span></a> id<span class="sy0">:</span> Long <span class="sy0">=</span> <span class="sy0">_</span>
	<span class="sy0">@</span>Column<span class="br0">&#40;</span>nullable <span class="sy0">=</span> <a href="http://scala-lang.org"><span class="kw1">false</span></a><span class="br0">&#41;</span>
	<a href="http://scala-lang.org"><span class="kw1">var</span></a> title<span class="sy0">:</span> String <span class="sy0">=</span> <span class="sy0">_</span>
	<a href="http://scala-lang.org"><span class="kw1">var</span></a> price<span class="sy0">:</span> Float <span class="sy0">=</span> <span class="sy0">_</span>
<span class="br0">&#125;</span></pre>
<br />
What i read is that this feature is planned for scala 2.8. But i couldn't find information if it's already implemented in the current 2.8 Snapshot? And if it is, how can i write nested annotations in scala, since the example above doesn't work (i'm always using the latest 2.8-snapshot by maven)]]></summary>
    </entry>
    <entry>
        <title type="html">Installation failed for Scala eclipse plugin (2 replies)</title>
        <link href="http://scala-forum.org/read.php?22,1208,1208#msg-1208" />
        <category term="Tools" />
        <published>2010-03-28T09:15:39+02:00</published>
        <updated>2010-03-29T07:42:04+02:00</updated>
        <id>http://scala-forum.org/read.php?22,1208,1208#msg-1208</id>
        <author>
            <name>rameshvel</name>
        </author>
        <summary type="html"><![CDATA[ Hi,<br />
<br />
      I am Scala newbie. Just started playing. Today i started to install scala plugin for eclipse (in ubuntu machine), but its failed everytime. Below the error message. <br />
<br />
An error occurred while collecting items to be installed<br />
  session context was:(profile=PlatformProfile, phase=org.eclipse.equinox.internal.provisional.p2.engine.phases.Collect, operand=, action=).<br />
  No repository found containing: osgi.bundle,ch.epfl.lamp.sdt.aspects,2.7.7.final<br />
  No repository found containing: osgi.bundle,ch.epfl.lamp.sdt.core,2.7.7.final<br />
  No repository found containing: org.eclipse.update.feature,ch.epfl.lamp.sdt,2.7.7.final<br />
  No repository found containing: osgi.bundle,org.aspectj.runtime,1.6.4.20090304172355<br />
  No repository found containing: osgi.bundle,org.aspectj.weaver,1.6.4.20090304172355<br />
  No repository found containing: org.eclipse.update.feature,org.eclipse.contribution.weaving,1.6.4.20090313172428<br />
  No repository found containing: osgi.bundle,org.eclipse.contribution.weaving.jdt,1.6.4.20090313172428<br />
  No repository found containing: osgi.bundle,org.eclipse.equinox.weaving.aspectj,1.0.0.200902241436<br />
  No repository found containing: osgi.bundle,org.eclipse.equinox.weaving.hook,1.0.0.200902121956<br />
  No repository found containing: osgi.bundle,scala.library,2.7.7.final<br />
  No repository found containing: osgi.bundle,scala.tools.nsc,2.7.7.final<br />
<br />
<br />
Can someone clarify me what was the problem.<br />
<br />
Cheers]]></summary>
    </entry>
    <entry>
        <title type="html">Multiple lines in console (no replies)</title>
        <link href="http://scala-forum.org/read.php?22,1176,1176#msg-1176" />
        <category term="Tools" />
        <published>2010-03-24T10:21:35+01:00</published>
        <updated>2010-03-24T10:21:35+01:00</updated>
        <id>http://scala-forum.org/read.php?22,1176,1176#msg-1176</id>
        <author>
            <name>Sylvia</name>
        </author>
        <summary type="html"><![CDATA[ Sorry, problem solved]]></summary>
    </entry>
    <entry>
        <title type="html">Maven run/compile fails with Scala 2.8.0-SNAPSHOT (1 reply)</title>
        <link href="http://scala-forum.org/read.php?22,1150,1150#msg-1150" />
        <category term="Tools" />
        <published>2010-03-16T14:06:29+01:00</published>
        <updated>2010-03-16T18:47:02+01:00</updated>
        <id>http://scala-forum.org/read.php?22,1150,1150#msg-1150</id>
        <author>
            <name>dubbyconqueror</name>
        </author>
        <summary type="html"><![CDATA[ Hello!<br />
I'm doing my first steps with maven and scala. I'm starting with a single Scala Application that i can launch with the scala:run command. <br />
I created the standard scala maven archetype with &quot;mvn archetype:generate&quot;, choosing <br />
&quot;30: internal -&gt; scala-archetype-simple (A simple scala project)&quot;.<br />
<br />
Then i inserted a launcher into my pom.xml, that should start the App that was generated by maven (i just use the app created by the archetype):<br />
<pre class="bbcode">
&lt;launchers&gt;
	&lt;launcher&gt;
	  &lt;id&gt;myLauncher&lt;/id&gt;
	  &lt;mainClass&gt;myapp.App&lt;/mainClass&gt;
	&lt;/launcher&gt;
&lt;/launchers&gt;</pre>
<br />
When i launch this Project with &quot;mvn scala:run&quot;, everything works fine - no errors, and i get my &quot;Hello World&quot; in the maven output.<br />
<br />
Now i want to switch to scala version 2.8. So i changed the scala version in my pom.xml to  2.8.0-SNAPSHOT, resulting in the following pom.xml (see below). <br />
Now compiling with &quot;mvn compile&quot; command fails with an error like &quot;java.lang.IncompatibleClassChangeError: Found class scala.collection.JavaConversions$JMapWrapperLike, but interface was expected&quot; (complete maven output see below), and &quot;mvn scala:run&quot; also fails (complete output see below).<br />
<br />
Anyone got any idea about it? Could'nt find anything in the web about it. Are there incompatibility issues with scala2.8 and the maven plugin? <br />
<br />
<br />
<b>pom.xml</b><br />
<pre class="bbcode">
&lt;project xmlns=&quot;[<a href="http://maven.apache.org/POM/4.0.0&quot" rel="nofollow" >maven.apache.org</a>]; xmlns:xsi=&quot;[<a href="http://www.w3.org/2001/XMLSchema-instance&quot" rel="nofollow" >www.w3.org</a>]; xsi:schemaLocation=&quot;[<a href="http://maven.apache.org/POM/4.0.0" rel="nofollow" >maven.apache.org</a>] [<a href="http://maven.apache.org/maven-v4_0_0.xsd&quot;&gt" rel="nofollow" >maven.apache.org</a>];
  &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt;
  &lt;groupId&gt;maventest&lt;/groupId&gt;
  &lt;artifactId&gt;version1&lt;/artifactId&gt;
  &lt;version&gt;1.0-SNAPSHOT&lt;/version&gt;
  &lt;inceptionYear&gt;2008&lt;/inceptionYear&gt;
  &lt;properties&gt;
	&lt;project.build.sourceEncoding&gt;UTF-8&lt;/project.build.sourceEncoding&gt;
    &lt;!-- run fails with 2.8 --&gt;
	&lt;scala.version&gt;2.8.0-SNAPSHOT&lt;/scala.version&gt;
	&lt;!-- build runs successfully when using 2.7.7 
	&lt;scala.version&gt;2.7.7&lt;/scala.version&gt;
	--&gt;
  &lt;/properties&gt;

  &lt;repositories&gt;
    &lt;repository&gt;
      &lt;id&gt;scala-tools.org&lt;/id&gt;
      &lt;name&gt;Scala-Tools Maven2 Repository&lt;/name&gt;
      &lt;url&gt;[<a href="http://scala-tools.org/repo-releases&lt;/url&gt" rel="nofollow" >scala-tools.org</a>];
    &lt;/repository&gt;
	
	&lt;!-- For Scala 2.8 --&gt;
	&lt;repository&gt;
		&lt;id&gt;scala-tools.snapshot&lt;/id&gt;
		&lt;name&gt;Scala-Tools Snapshot Repository&lt;/name&gt;
		&lt;url&gt;[<a href="http://scala-tools.org/repo-snapshots&lt;/url&gt" rel="nofollow" >scala-tools.org</a>];
	&lt;/repository&gt;
  &lt;/repositories&gt;

  &lt;pluginRepositories&gt;
    &lt;pluginRepository&gt;
      &lt;id&gt;scala-tools.org&lt;/id&gt;
      &lt;name&gt;Scala-Tools Maven2 Repository&lt;/name&gt;
      &lt;url&gt;[<a href="http://scala-tools.org/repo-releases&lt;/url&gt" rel="nofollow" >scala-tools.org</a>];
    &lt;/pluginRepository&gt;
  &lt;/pluginRepositories&gt;

  &lt;dependencies&gt;
    &lt;dependency&gt;
      &lt;groupId&gt;org.scala-lang&lt;/groupId&gt;
      &lt;artifactId&gt;scala-library&lt;/artifactId&gt;
      &lt;version&gt;${scala.version}&lt;/version&gt;
    &lt;/dependency&gt;
    &lt;dependency&gt;
      &lt;groupId&gt;junit&lt;/groupId&gt;
      &lt;artifactId&gt;junit&lt;/artifactId&gt;
      &lt;version&gt;4.4&lt;/version&gt;
      &lt;scope&gt;test&lt;/scope&gt;
    &lt;/dependency&gt;
    &lt;dependency&gt;
      &lt;groupId&gt;org.specs&lt;/groupId&gt;
      &lt;artifactId&gt;specs&lt;/artifactId&gt;
      &lt;version&gt;1.2.5&lt;/version&gt;
      &lt;scope&gt;test&lt;/scope&gt;
    &lt;/dependency&gt;
  &lt;/dependencies&gt;

  &lt;build&gt;
    &lt;sourceDirectory&gt;src/main/scala&lt;/sourceDirectory&gt;
    &lt;testSourceDirectory&gt;src/test/scala&lt;/testSourceDirectory&gt;
    &lt;plugins&gt;
      &lt;plugin&gt;
        &lt;groupId&gt;org.scala-tools&lt;/groupId&gt;
        &lt;artifactId&gt;maven-scala-plugin&lt;/artifactId&gt;
        &lt;executions&gt;
          &lt;execution&gt;
            &lt;goals&gt;
              &lt;goal&gt;compile&lt;/goal&gt;
              &lt;goal&gt;testCompile&lt;/goal&gt;
            &lt;/goals&gt;
          &lt;/execution&gt;
        &lt;/executions&gt;
        &lt;configuration&gt;
			&lt;launchers&gt;
				&lt;launcher&gt;
				  &lt;id&gt;myLauncher&lt;/id&gt;
				  &lt;mainClass&gt;maventest.App&lt;/mainClass&gt;
				&lt;/launcher&gt;
			&lt;/launchers&gt;
          &lt;scalaVersion&gt;${scala.version}&lt;/scalaVersion&gt;
          &lt;args&gt;
            &lt;arg&gt;-target:jvm-1.5&lt;/arg&gt;
          &lt;/args&gt;
        &lt;/configuration&gt;
      &lt;/plugin&gt;
      &lt;plugin&gt;
        &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
        &lt;artifactId&gt;maven-eclipse-plugin&lt;/artifactId&gt;
        &lt;configuration&gt;
          &lt;downloadSources&gt;true&lt;/downloadSources&gt;
          &lt;buildcommands&gt;
            &lt;buildcommand&gt;ch.epfl.lamp.sdt.core.scalabuilder&lt;/buildcommand&gt;
          &lt;/buildcommands&gt;
          &lt;additionalProjectnatures&gt;
            &lt;projectnature&gt;ch.epfl.lamp.sdt.core.scalanature&lt;/projectnature&gt;
          &lt;/additionalProjectnatures&gt;
          &lt;classpathContainers&gt;
            &lt;classpathContainer&gt;org.eclipse.jdt.launching.JRE_CONTAINER&lt;/classpathContainer&gt;
            &lt;classpathContainer&gt;ch.epfl.lamp.sdt.launching.SCALA_CONTAINER&lt;/classpathContainer&gt;
          &lt;/classpathContainers&gt;
        &lt;/configuration&gt;
      &lt;/plugin&gt;
    &lt;/plugins&gt;
  &lt;/build&gt;
  &lt;reporting&gt;
    &lt;plugins&gt;
      &lt;plugin&gt;
        &lt;groupId&gt;org.scala-tools&lt;/groupId&gt;
        &lt;artifactId&gt;maven-scala-plugin&lt;/artifactId&gt;
        &lt;configuration&gt;
          &lt;scalaVersion&gt;${scala.version}&lt;/scalaVersion&gt;
        &lt;/configuration&gt;
      &lt;/plugin&gt;
    &lt;/plugins&gt;
  &lt;/reporting&gt;
&lt;/project&gt;</pre>
<br />
<b>mvn compile output:</b><br />
<pre class="bbcode">
[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] Building Unnamed - maventest:version1:jar:1.0-SNAPSHOT
[INFO]    task-segment: [compile]
[INFO] ------------------------------------------------------------------------
[INFO] [resources:resources {execution: default-resources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory D:\Workspace\Scala\MavenTest\src\main\resources
[INFO] [compiler:compile {execution: default-compile}]
[INFO] Nothing to compile - all classes are up to date
[INFO] [scala:compile {execution: default}]
[INFO] Checking for multiple versions of scala
[INFO] includes = [**/*.scala,**/*.java,]
[INFO] excludes = []
[INFO] D:\Workspace\Scala\MavenTest\src\main\scala:-1: info: compiling

[INFO] Compiling 1 source files to D:\Workspace\Scala\MavenTest\target\classes at 1268744610450
[INFO] java.lang.reflect.InvocationTargetException
[INFO] 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
[INFO] 	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
[INFO] 	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
[INFO] 	at java.lang.reflect.Method.invoke(Method.java:597)
[INFO] 	at org_scala_tools_maven_executions.MainHelper.runMain(MainHelper.java:151)
[INFO] 	at org_scala_tools_maven_executions.MainWithArgsInFile.main(MainWithArgsInFile.java:26)
[ERROR] Caused by: java.lang.IncompatibleClassChangeError: Found class scala.collection.JavaConversions$JMapWrapperLike, but interface was expected
[INFO] 	at scala.tools.nsc.symtab.Types$CompoundType.memo(Types.scala:1259)
[INFO] 	at scala.tools.nsc.symtab.Types$CompoundType.baseClasses(Types.scala:1251)
[INFO] 	at scala.tools.nsc.symtab.Types$Type.findMember(Types.scala:817)
[INFO] 	at scala.tools.nsc.symtab.Types$Type.member(Types.scala:468)
[INFO] 	at scala.tools.nsc.symtab.Definitions$definitions$.getModuleOrClass(Definitions.scala:505)
[INFO] 	at scala.tools.nsc.symtab.Definitions$definitions$.ScalaPackage(Definitions.scala:43)
[INFO] 	at scala.tools.nsc.symtab.Definitions$definitions$.ScalaPackageClass(Definitions.scala:44)
[INFO] 	at scala.tools.nsc.symtab.Definitions$definitions$.UnitClass(Definitions.scala:86)
[INFO] 	at scala.tools.nsc.symtab.Definitions$definitions$.init(Definitions.scala:767)
[INFO] 	at scala.tools.nsc.Global$Run.&lt;init&gt;(Global.scala:591)
[INFO] 	at scala.tools.nsc.Main$.process(Main.scala:108)
[INFO] 	at scala.tools.nsc.Main$.main(Main.scala:123)
[INFO] 	at scala.tools.nsc.Main.main(Main.scala)
[INFO] 	... 6 more
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] wrap: org.apache.commons.exec.ExecuteException: Process exited with an error: -2147483648(Exit value: -2147483648)

[INFO] ------------------------------------------------------------------------
[INFO] For more information, run Maven with the -e switch
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 4 seconds
[INFO] Finished at: Tue Mar 16 14:03:31 CET 2010
[INFO] Final Memory: 14M/26M
[INFO] ------------------------------------------------------------------------</pre>
<br />
<b>mvn scala:run output:</b><br />
<pre class="bbcode">
[INFO] Scanning for projects...
[INFO] ------------------------------------------------------------------------
[INFO] Building Unnamed - maventest:version1:jar:1.0-SNAPSHOT
[INFO]    task-segment: [scala:run]
[INFO] ------------------------------------------------------------------------
[INFO] Preparing scala:run
[INFO] [resources:resources {execution: default-resources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory D:\Workspace\Scala\MavenTest\src\main\resources
[INFO] [compiler:compile {execution: default-compile}]
[INFO] Nothing to compile - all classes are up to date
[INFO] [scala:compile {execution: default}]
[INFO] Checking for multiple versions of scala
[INFO] Nothing to compile - all classes are up to date
[INFO] [resources:testResources {execution: default-testResources}]
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory D:\Workspace\Scala\MavenTest\src\test\resources
[INFO] [compiler:testCompile {execution: default-testCompile}]
[INFO] Nothing to compile - all classes are up to date
[INFO] [scala:testCompile {execution: default}]
[INFO] Checking for multiple versions of scala
[INFO] Nothing to compile - all classes are up to date
[INFO] [scala:run {execution: default-cli}]
[INFO] Checking for multiple versions of scala
[INFO] launcher 'myLauncher' selected =&gt; maventest.App
java.lang.reflect.InvocationTargetException
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:597)
	at org_scala_tools_maven_executions.MainHelper.runMain(MainHelper.java:151)
	at org_scala_tools_maven_executions.MainWithArgsInFile.main(MainWithArgsInFile.java:26)
Caused by: java.lang.AbstractMethodError: maventest.App$.scala$Application$_setter_$executionStart_$eq(J)V
	at scala.Application$class.$init$(Application.scala:79)
	at maventest.App$.&lt;init&gt;(App.scala:7)
	at maventest.App$.&lt;clinit&gt;(App.scala)
	at maventest.App.main(App.scala)
	... 6 more
[INFO] ------------------------------------------------------------------------
[ERROR] BUILD ERROR
[INFO] ------------------------------------------------------------------------
[INFO] wrap: org.apache.commons.exec.ExecuteException: Process exited with an error: -2147483648(Exit value: -2147483648)

[INFO] ------------------------------------------------------------------------
[INFO] For more information, run Maven with the -e switch
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 3 seconds
[INFO] Finished at: Tue Mar 16 13:51:19 CET 2010
[INFO] Final Memory: 13M/27M
[INFO] ------------------------------------------------------------------------</pre>
<br />
<b>My App:</b><br />
<pre class="bbcode">
package maventest

object App extends Application {
  println( &quot;Hello World!&quot; )
}
</pre>]]></summary>
    </entry>
    <entry>
        <title type="html">Problem with Netbeans plugin (2 replies)</title>
        <link href="http://scala-forum.org/read.php?22,1099,1099#msg-1099" />
        <category term="Tools" />
        <published>2010-02-22T03:04:14+01:00</published>
        <updated>2010-05-01T19:45:09+02:00</updated>
        <id>http://scala-forum.org/read.php?22,1099,1099#msg-1099</id>
        <author>
            <name>icogs</name>
        </author>
        <summary type="html"><![CDATA[ I have just installed Scala &amp; the Netbeans plugin, and the Netbeans side is giving me a couple of problems:<br />
<br />
1) The Scala plugin breaks the JavaFX plugin. With the Scala plugin installed, the next time a JavaFX project is opened or the IDE restarted Java language support drops to 1.2 even though I have 1.6 installed. All my java source files within JavafX projects report errors for such things as generics and annotations. Sometimes rebuilding the JavaFX project fixes this, sometimes it doesn't. Uninstalling or deactivating the Scala plugin does work but seems a little drastic :(<br />
<br />
2) The above may be moot since I cannot get it to work anyway. When I created a new Scala project I got errors on the generated stub application. The generated code was <pre class="scala bbcode_geshi" style="font-family:monospace;"><div class="head">Language: Scala</div><a href="http://scala-lang.org"><span class="kw1">package</span></a> scalaapplication1
&nbsp;
<a href="http://scala-lang.org"><span class="kw1">object</span></a> Main <span class="br0">&#123;</span>
&nbsp;
  <span class="coMULTI">/**
   * @param args the command line arguments
   */</span>
  <a href="http://scala-lang.org"><span class="kw1">def</span></a> main<span class="br0">&#40;</span>args<span class="sy0">:</span> Array<span class="br0">&#91;</span>String<span class="br0">&#93;</span><span class="br0">&#41;</span><span class="sy0">:</span> Unit <span class="sy0">=</span> <span class="br0">&#123;</span>
    println<span class="br0">&#40;</span><span class="st0">&quot;Hello, world!&quot;</span><span class="br0">&#41;</span>
  <span class="br0">&#125;</span>
&nbsp;
<span class="br0">&#125;</span></pre>
<br />
I get 2 errors on the &quot;object Main{&quot; line:<br />
<br />
<ul><li> Scala object does not have a constructor </li><li>illegal inheritance; self-type scalaapplication1.Main.type does not conform to scala.ScalaObject's selftype ScalaObject </li></ul>
<br />
<br />
The command-line Scala interpreter seems to be OK.]]></summary>
    </entry>
    <entry>
        <title type="html">Help building sbaz. (no replies)</title>
        <link href="http://scala-forum.org/read.php?22,1015,1015#msg-1015" />
        <category term="Tools" />
        <published>2010-02-03T07:27:40+01:00</published>
        <updated>2010-02-03T07:27:40+01:00</updated>
        <id>http://scala-forum.org/read.php?22,1015,1015#msg-1015</id>
        <author>
            <name>gostrc</name>
        </author>
        <summary type="html"><![CDATA[ Currently, when I download the source for scala, I do ant build, the bin directory has everything but sbaz in it. How do I enable compiling sbaz? By the way, ant dist also doesn't build sbaz :/]]></summary>
    </entry>
    <entry>
        <title type="html">Problems with the netbeans plugin (2 replies)</title>
        <link href="http://scala-forum.org/read.php?22,966,966#msg-966" />
        <category term="Tools" />
        <published>2010-01-24T15:45:14+01:00</published>
        <updated>2010-02-02T13:34:20+01:00</updated>
        <id>http://scala-forum.org/read.php?22,966,966#msg-966</id>
        <author>
            <name>glenn</name>
        </author>
        <summary type="html"><![CDATA[ Hi<br />
<br />
I'm just starting to learn about Scala and am trying to install the plugin on:<br />
Ubuntu 9.10,  <br />
Netbeans 6.8 (Build 200912041610)<br />
Java: 1.6.0_16<br />
scala-2.8.0.r20638-b20100123020158<br />
nb-scala-6.8v1.1.0m2<br />
<br />
Netbeans, Java, and Scala are working fine.<br />
<br />
Of the 14 .nbm files only the parser-api wont let proceed to install with a dialogue box appearing with the message &quot;Plugin &quot;Parsing API&quot; is already installed.<br />
<br />
When I go to install I get:<br />
Some plugins require plugin Parsing API to be installed.<br />
The plugin Parsing API is requested in implementation version 1.  <br />
The following plugins are affected:       Scala Core       Scala Editor <br />
<br />
First Netbeans tells me I already have the plugin, then it tells me that I don't. Is it just messing with me?<br />
<br />
Any solutions to this problem?<br />
<br />
Cheers<br />
Glenn]]></summary>
    </entry>
    <entry>
        <title type="html">NetBeans 6.8 is final (7 replies)</title>
        <link href="http://scala-forum.org/read.php?22,801,801#msg-801" />
        <category term="Tools" />
        <published>2009-12-10T16:45:15+01:00</published>
        <updated>2010-01-14T06:24:05+01:00</updated>
        <id>http://scala-forum.org/read.php?22,801,801#msg-801</id>
        <author>
            <name>christian</name>
        </author>
        <summary type="html"><![CDATA[ <a href="http://netbeans.org/community/releases/68/index.html" rel="nofollow" >NetBeans 6.8</a> is final. Version 6.8 is required for the current NetBeans Scala plug-in. NetBeans Maven support offers know Scala archetypes.]]></summary>
    </entry>
    <entry>
        <title type="html">Ant Scripts For Scala (no replies)</title>
        <link href="http://scala-forum.org/read.php?22,747,747#msg-747" />
        <category term="Tools" />
        <published>2009-11-26T12:32:47+01:00</published>
        <updated>2009-11-26T12:32:47+01:00</updated>
        <id>http://scala-forum.org/read.php?22,747,747#msg-747</id>
        <author>
            <name>Thomas Knierim</name>
        </author>
        <summary type="html"><![CDATA[ Just in case there are other people who don't like to use Maven for their projects, I've published a number of Ant scripts and project skeletons for Scala on my blog for standalone, Web, and Web+Lift projects with Ant and Tomcat.<br />
<br />
Scala has good Ant support, so it's a pity not to use it. :)<br />
<br />
[<a href="http://www.thomasknierim.com/129/scala/scala-with-ant/" rel="nofollow" >www.thomasknierim.com</a>]<br />
[<a href="http://www.thomasknierim.com/130/web-development/ant-script-for-scala-webapp/" rel="nofollow" >www.thomasknierim.com</a>]<br />
[<a href="http://www.thomasknierim.com/131/web-development/ant-script-for-scala-with-lift/" rel="nofollow" >www.thomasknierim.com</a>]<br />
<br />
I hope this will be helpful for people new to Scala.<br />
<br />
Cheers, Thomas]]></summary>
    </entry>
    <entry>
        <title type="html">Scala bytecode compiled to native code (3 replies)</title>
        <link href="http://scala-forum.org/read.php?22,739,739#msg-739" />
        <category term="Tools" />
        <published>2009-11-24T17:41:12+01:00</published>
        <updated>2009-12-09T10:18:26+01:00</updated>
        <id>http://scala-forum.org/read.php?22,739,739#msg-739</id>
        <author>
            <name>scala</name>
        </author>
        <summary type="html"><![CDATA[ Hi!<br />
<br />
To make reverse-engineering more dificult we would like to compile<br />
Scala bytecode ahead-of-time using Excelsior JET or GNU GCJ.<br />
<br />
Are there any experiences with this kind of scenario?<br />
<br />
Any helpful feedback would be greatly appreciated.<br />
<br />
Kind regards<br />
Michael]]></summary>
    </entry>
    <entry>
        <title type="html">Idea: Scala DSL for upcoming Maven 3 (7 replies)</title>
        <link href="http://scala-forum.org/read.php?22,716,716#msg-716" />
        <category term="Tools" />
        <published>2009-11-13T16:40:19+01:00</published>
        <updated>2009-11-14T13:51:40+01:00</updated>
        <id>http://scala-forum.org/read.php?22,716,716#msg-716</id>
        <author>
            <name>christian</name>
        </author>
        <summary type="html"><![CDATA[ Maven 3 is able to pull POM information from any datasource, so a Scala Domain Specific Language for Maven would be possible. My familiarity with Maven is not so deep, but I want to share this idea. Maybe someone reading this message and get's inspired to create a Scala DSL for Maven ...<br />
<br />
<blockquote class="bbcode"><div><small>Quote<br/></small><strong>Sonatype Blog</strong><br/>
Polyglot Maven: This is our attempt to create a great degree of flexibility in the core of Maven 3.x. We provide the ability to easily pull POM information from any data source and allow DSLs access to core functionality in Maven to create new tools using Maven 3.x. The development of Polyglot Maven has sparked a lot of interest and we hope to make public release in the next month.</div></blockquote>
[<a href="http://www.sonatype.com/people/2009/11/maven-30-alpha-3-released/" rel="nofollow" >www.sonatype.com</a>]]]></summary>
    </entry>
    <entry>
        <title type="html">IntelliJ now OpenSource (1 reply)</title>
        <link href="http://scala-forum.org/read.php?22,620,620#msg-620" />
        <category term="Tools" />
        <published>2009-10-16T16:09:54+02:00</published>
        <updated>2009-10-16T16:31:20+02:00</updated>
        <id>http://scala-forum.org/read.php?22,620,620#msg-620</id>
        <author>
            <name>manfred</name>
        </author>
        <summary type="html"><![CDATA[ There are now two versions of IntelliJ, one Community Edition and a Commercial Edition:<br />
[<a href="http://www.jetbrains.com/idea/nextversion/free_java_ide.html" rel="nofollow" >www.jetbrains.com</a>]<br />
[<a href="http://www.jetbrains.com/idea/nextversion/editions_comparison_matrix.html" rel="nofollow" >www.jetbrains.com</a>]<br />
<br />
<br />
Manfred]]></summary>
    </entry>
    <entry>
        <title type="html">Free &quot;Community Edition&quot; of IntelliJ IDEA (1 reply)</title>
        <link href="http://scala-forum.org/read.php?22,616,616#msg-616" />
        <category term="Tools" />
        <published>2009-10-16T10:05:48+02:00</published>
        <updated>2009-10-16T11:28:31+02:00</updated>
        <id>http://scala-forum.org/read.php?22,616,616#msg-616</id>
        <author>
            <name>Landei</name>
        </author>
        <summary type="html"><![CDATA[ JetBrains releases a free Open Source &quot;Community Edition&quot; of IntelliJ IDEA: <br />
<br />
[<a href="http://www.jetbrains.com/idea/nextversion/free_java_ide.html" rel="nofollow" >www.jetbrains.com</a>]<br />
<br />
Of course some juicy parts are only available in the commercial version, but if I understand correctly, the Scala Plugin is free as well.]]></summary>
    </entry>
    <entry>
        <title type="html">New Version of Scala NetBeans Plug-In (no replies)</title>
        <link href="http://scala-forum.org/read.php?22,612,612#msg-612" />
        <category term="Tools" />
        <published>2009-10-15T15:34:11+02:00</published>
        <updated>2009-10-15T15:34:11+02:00</updated>
        <id>http://scala-forum.org/read.php?22,612,612#msg-612</id>
        <author>
            <name>christian</name>
        </author>
        <summary type="html"><![CDATA[ There is a new version of the <a href="http://blogtrader.net/dcaoyuan/date/20091011" rel="nofollow" >Scala plug-in for NetBeans</a> 6.8m2 and Scala 2.8-Snapshot.]]></summary>
    </entry>
    <entry>
        <title type="html">Scala Eclipse Plugin: has it ever worked at all? (8 replies)</title>
        <link href="http://scala-forum.org/read.php?22,511,511#msg-511" />
        <category term="Tools" />
        <published>2009-09-19T16:03:39+02:00</published>
        <updated>2010-03-18T18:57:42+01:00</updated>
        <id>http://scala-forum.org/read.php?22,511,511#msg-511</id>
        <author>
            <name>0x7F800000</name>
        </author>
        <summary type="html"><![CDATA[ Hi everyone!<br />
<br />
I'm new in this forum, i've been playing with scala for couple of weeks now, but i still cannot get started, because for bigger examples i want to use an IDE, but Eclipse-Plugin for Scala unfortunately does not work.<br />
<br />
In the Moment it looks like this:<br />
<br />
- Scala Eclipse Plugin 2.7.6.final from this site: [<a href="http://www.scala-lang.org/scala-eclipse-plugin" rel="nofollow" >www.scala-lang.org</a>]<br />
- Eclipse Classic 3.5.0<br />
- JDK/JRE 6 Update 16<br />
- Windows Vista (does it matter?...)<br />
<br />
Here: <a href="http://www.scala-lang.org/node/94" rel="nofollow" >Scala IDE for Eclipse</a> it's told that this Eclipse Version is enough, and that jdk 6 update 14 or newer is required. I also checked that this &quot;JDT Weaving&quot; is activated (although i've no concrete idea what that is). <br />
<br />
Syntax highlighting kind of works... At least it tries. Sometimes there is even some help with unbalanced parentheses. But most time the highlighter just underlines some symbols at random. The only situation when it seems to work correctly is when the code is absolutely correct and complete: then the highlighter shuts up and does nothing. But not always. Sometimes it underlines code even if it's correct, then inserting and removing some empty lines helps... This behavior is unpredictable and very annoying. Code completion does not work at all.<br />
<br />
Why I ask myself, if this plugin has ever worked at all: i've already tried to install it's older version approximately half a year ago on an older eclipse, and it seemed to have similar bugs.<br />
<br />
Is there any way to repair this? I would be very thankful for a hint or a useful link.<br />
<br />
edit: i've just read through the thread about favorite scala-ide's, and obviously there exist some people who got this eclipse plugin working somehow...<br />
<br />
greetz, 0x7F800000]]></summary>
    </entry>
    <entry>
        <title type="html">Maven archetype for Scala webapp (1 reply)</title>
        <link href="http://scala-forum.org/read.php?22,232,232#msg-232" />
        <category term="Tools" />
        <published>2009-07-14T12:21:43+02:00</published>
        <updated>2009-07-17T18:50:47+02:00</updated>
        <id>http://scala-forum.org/read.php?22,232,232#msg-232</id>
        <author>
            <name>greenhorn</name>
        </author>
        <summary type="html"><![CDATA[ I want to create a servlet based web application with scala and build it with Maven. The only Scala related archetype I found so far, except the lift archetypes, is &quot;scala-archetype-simple&quot;. I'm looking for something like &quot;maven-archetype-webapp&quot; with Scala support.<br />
<br />
How would you build a webapp using Scala and Maven?]]></summary>
    </entry>
    <entry>
        <title type="html">ScalaTest vs. JUnit (no replies)</title>
        <link href="http://scala-forum.org/read.php?22,125,125#msg-125" />
        <category term="Tools" />
        <published>2009-06-17T11:22:04+02:00</published>
        <updated>2009-06-17T11:22:04+02:00</updated>
        <id>http://scala-forum.org/read.php?22,125,125#msg-125</id>
        <author>
            <name>christian</name>
        </author>
        <summary type="html"><![CDATA[ I find JUnit very pleasant and consider what could be better with ScalaTest. Are there reasons to prefer ScalaTest over JUnit?]]></summary>
    </entry>
</feed>
