Skip to content

Commit 9d10fa4

Browse files
author
Chris Lewis
committed
initial commit
0 parents  commit 9d10fa4

14 files changed

+530
-0
lines changed

.classpath

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<classpath>
2+
<classpathentry output="target/scala-2.9.2/classes" path="src/main/scala" kind="src"></classpathentry>
3+
<classpathentry output="target/scala-2.9.2/classes" path="src/main/java" kind="src"></classpathentry>
4+
<classpathentry output="target/scala-2.9.2/test-classes" path="src/test/scala" kind="src"></classpathentry>
5+
<classpathentry output="target/scala-2.9.2/test-classes" path="src/test/java" kind="src"></classpathentry>
6+
<classpathentry path="./lib/jerkson_2.9.1-0.5.0.jar" kind="lib"></classpathentry>
7+
<classpathentry path="./lib/netty-3.2.3.Final.jar" kind="lib"></classpathentry>
8+
<classpathentry path="./lib/poi-3.7.jar" kind="lib"></classpathentry>
9+
<classpathentry path="./lib/time_2.9.1-0.5.jar" kind="lib"></classpathentry>
10+
<classpathentry path="./lib/tradesim-client_2.9.2.jar" kind="lib"></classpathentry>
11+
<classpathentry kind="con" path="org.scala-ide.sdt.launching.SCALA_CONTAINER"></classpathentry>
12+
<classpathentry path="org.eclipse.jdt.launching.JRE_CONTAINER" kind="con"></classpathentry>
13+
<classpathentry path="bin" kind="output"></classpathentry>
14+
</classpath>

.gitignore

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
*.class
2+
*.log
3+
4+
# sbt specific
5+
dist/*
6+
target/
7+
lib_managed/
8+
src_managed/
9+
project/boot/
10+
project/plugins/project/
11+
12+
# Scala-IDE specific
13+
.scala_dependencies

.project

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<projectDescription>
2+
<name>trader</name>
3+
<buildSpec>
4+
<buildCommand>
5+
<name>org.scala-ide.sdt.core.scalabuilder</name>
6+
</buildCommand>
7+
</buildSpec>
8+
<natures>
9+
<nature>org.scala-ide.sdt.core.scalanature</nature>
10+
<nature>org.eclipse.jdt.core.javanature</nature>
11+
</natures>
12+
</projectDescription>

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
trader
2+
======
3+
4+
`chris$ ./sbt`
5+
6+
`run-main com.novus.tradesim.algo.Client`

build.sbt

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name := "trader"
2+
3+
organization := "com.novus"
4+
5+
version := "0.1.0-SNAPSHOT"
6+
7+
scalaVersion := "2.9.2"
8+
9+
initialCommands := "import com.novus.trader._"
10+
11+
mainClass in (Compile) := Some("com.novus.tradesim.Client")

lib/jerkson_2.9.1-0.5.0.jar

724 KB
Binary file not shown.

lib/netty-3.2.3.Final.jar

768 KB
Binary file not shown.

lib/poi-3.7.jar

1.6 MB
Binary file not shown.

lib/time_2.9.1-0.5.jar

97.8 KB
Binary file not shown.

lib/tradesim-client_2.9.2.jar

69.9 KB
Binary file not shown.

project/build.properties

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
sbt.version=0.12.0

project/plugins.sbt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.1.0")
2+
3+
addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "2.1.0")

0 commit comments

Comments
 (0)