Skip to content

Commit 9bcc89c

Browse files
author
Jim Hurne
committed
Added Scala starting point.
The Scala starting point includes project files for: - Eclipse - InteliJ IDEA - NetBeans
1 parent 33aea5c commit 9bcc89c

26 files changed

+1105
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
*.gem
22
target
3-
.idea

starting_points/scala/.classpath

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="src" output=".target/scala-2.9.0.1/classes" path="src/main/scala"/>
4+
<classpathentry kind="src" output=".target/scala-2.9.0.1/test-classes" path="src/test/scala"/>
5+
<classpathentry kind="con" path="org.scala-ide.sdt.launching.SCALA_CONTAINER"/>
6+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
7+
<classpathentry kind="lib" path="lib/junit-4.8.2.jar"/>
8+
<classpathentry kind="lib" path="lib/scalatest_2.9.0-1.6.1.jar"/>
9+
<classpathentry kind="lib" path="lib/specs-1.4.4.jar"/>
10+
<classpathentry kind="output" path=".target/scala-2.9.0.1/classes"/>
11+
</classpath>

starting_points/scala/.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
target/
2+
.target/
3+
lib_managed/
4+
src_managed/
5+
project/boot/
6+
*.swp
7+
nbproject/
8+
bin/
9+
.scala_dependencies
10+
out/

starting_points/scala/.idea/ant.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

starting_points/scala/.idea/compiler.xml

Lines changed: 21 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

starting_points/scala/.idea/copyright/profiles_settings.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

starting_points/scala/.idea/encodings.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

starting_points/scala/.idea/libraries/scala_compiler_2_9_0_1.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

starting_points/scala/.idea/libraries/scala_library_2_9_0_1.xml

Lines changed: 17 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

starting_points/scala/.idea/misc.xml

Lines changed: 45 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)