Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .classpath
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="test"/>
<classpathentry kind="src" path="src/main"/>
<classpathentry kind="src" path="src/test"/>
<classpathentry kind="con" path="org.scala-ide.sdt.launching.SCALA_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
Expand Down
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
target/
lib_managed/
project/boot/
project/build/target/
project/plugins/target/
project/plugins/lib_managed/
project/plugins/src_managed/
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# scala.react

Scala.react is a reactive programming library for Scala.
Scala.react is a reactive programming library for Scala.

## This fork

This fork adds SBT support for building on Scala 2.10.
20 changes: 20 additions & 0 deletions built.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name := "scala-react"

organization := "github.com.ingoem"

version := "1.0"

scalaVersion := "2.10.0"

addCompilerPlugin("org.scala-lang.plugins" % "continuations" % "2.10.0")

scalacOptions ++= Seq(
"-deprecation",
"-unchecked",
"-P:continuations:enable"
)

libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "2.0.M6-SNAP8" % "test",
"junit" % "junit" % "4.10" % "test"
)
Binary file removed lib/hamcrest.jar
Binary file not shown.
Binary file removed lib/joda-convert-1.2.jar
Binary file not shown.
Binary file removed lib/joda-time-2.0-sources.jar
Binary file not shown.
Binary file removed lib/joda-time-2.0.jar
Binary file not shown.
Binary file removed lib/jsr166y.jar
Binary file not shown.
Binary file removed lib/junit.jar
Binary file not shown.
Binary file removed lib/scalatest-1.2.1-SNAPSHOT.jar
Binary file not shown.
File renamed without changes.
File renamed without changes.