Basic Scala project
authorAlexandre Bertails <bertails@w3.org>
Sun, 21 Mar 2010 17:53:03 -0400
changeset 0 4b4b1d831d5c
child 1 741dbd67a7dc
Basic Scala project
.hgignore
project/build.properties
project/build/Project.scala
src/main/scala/Main.scala
src/test/scala/Test.scala
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/.hgignore	Sun Mar 21 17:53:03 2010 -0400
@@ -0,0 +1,13 @@
+syntax: glob
+target/
+lib_managed/
+src_managed/
+lift_example/
+project/boot/
+.classpath
+.project
+.manager
+*~
+*.class
+*.log
+*\#
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/project/build.properties	Sun Mar 21 17:53:03 2010 -0400
@@ -0,0 +1,9 @@
+#Project properties
+#Wed Feb 24 14:11:00 EST 2010
+project.organization=w3c
+project.name=tobecchanged
+sbt.version=0.7.1
+project.version=1.0
+def.scala.version=2.7.7
+build.scala.versions=2.8.0.Beta1
+project.initialize=false
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/project/build/Project.scala	Sun Mar 21 17:53:03 2010 -0400
@@ -0,0 +1,16 @@
+import sbt._
+
+class Project(info: ProjectInfo) extends DefaultProject(info) {
+
+//   val scalatools = "scala-tools" at "http://scala-tools.org/repo-snapshots"
+//   val smackRepo = "m2-repository-smack" at "http://maven.reucon.com/public"
+//   val databinder_net = "databinder.net repository" at "http://databinder.net/repo"
+
+//   val scalatest = "org.scalatest" % "scalatest" % "1.0.1-for-scala-2.8.0.Beta1-with-test-interfaces-0.3-SNAPSHOT" % "test->default"
+//   val jodatime = "joda-time" % "joda-time" % "1.6"
+//   val dispatch = "net.databinder" %% "dispatch-http" % "0.7.1"
+//   val jtidy = "jtidy" % "jtidy" % "r938" from "http://downloads.sourceforge.net/project/jtidy/JTidy/r938/jtidy-r938.jar"
+//   val saxon = "saxon" % "saxon" % "9.2.0.5j" from "http://www.bertails.org/jar/saxonhe9-2-0-5j.jar"
+//   val scardf = "W3C" % "scardf-2.8_2.8.0.Beta1" % "0.2"
+
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/main/scala/Main.scala	Sun Mar 21 17:53:03 2010 -0400
@@ -0,0 +1,1 @@
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/test/scala/Test.scala	Sun Mar 21 17:53:03 2010 -0400
@@ -0,0 +1,11 @@
+import org.scalatest.FunSuite
+
+class Test extends FunSuite {
+
+  test("") {
+
+
+  }
+
+}
+