While reviewing the Eclipse tooling, I noticed that the POM for the Cas
Editor has a dependency on
<groupId>org.eclipse.swt</groupId>
<artifactId>org.eclipse.swt.win32.win32.x86</artifactId>
If this dependency is removed, there are a lot of compile errors.
But because this dependency is on something with "win32" and "x86" in
the name, does it imply that the Cas Editor tool only runs on x86 /
windows platforms?
Another question: I think the dependency
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.5</version>
</dependency>
should have <scope>test</scope> - is this OK if I change this?
-Marshall