Skip to content

Commit

Permalink
Added evaluation-related classes from triplerush project.
Browse files Browse the repository at this point in the history
  • Loading branch information
pstutz committed Feb 18, 2014
0 parents commit 8e1b574
Show file tree
Hide file tree
Showing 32 changed files with 4,710 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
*.class
*.log

# sbt specific
dist/*
target/
lib_managed/
src_managed/
project/boot/
project/plugins/project/

# Scala-IDE specific
.scala_dependencies
.cache

*.owl

.classpath

.project

.classpath

.project

.DS_Store

*.nt

.settings/org.scala-ide.sdt.core.prefs

*.binary

*.txt

*.zip
binary-split/0.filtered-split

*.snapshot

*.filtered-split

*.config

*.split
31 changes: 31 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import AssemblyKeys._
assemblySettings

/** Project */
name := "triplerush-evaluation"

version := "1.0-SNAPSHOT"

organization := "com.signalcollect"

scalaVersion := "2.10.3"

scalacOptions ++= Seq("-optimize", "-Yinline-warnings", "-feature", "-deprecation")

EclipseKeys.createSrc := EclipseCreateSrc.Default + EclipseCreateSrc.Resource

EclipseKeys.withSource := true

test in assembly := {}

parallelExecution in Test := false

excludedJars in assembly <<= (fullClasspath in assembly) map { cp =>
cp filter {_.data.getName == "minlog-1.2.jar"}
}

/** Dependencies */
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-library" % "2.10.3" % "compile",
"com.google.collections" % "google-collections" % "1.0"
)
Binary file added lib/core-1.0.jar
Binary file not shown.
Binary file added lib/spreadsheet-3.0.jar
Binary file not shown.
8 changes: 8 additions & 0 deletions project/Build.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import sbt._
import Keys._

object GraphsBuild extends Build {
lazy val triplerush = ProjectRef(file("../triplerush"), id = "triplerush")
val scTriplerush = Project(id = "triplerush-evaluation",
base = file(".")) dependsOn (triplerush)
}
5 changes: 5 additions & 0 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
resolvers += Resolver.url("artifactory", url("http://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-releases"))(Resolver.ivyStylePatterns)

addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.9.0")

addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "2.4.0")
Loading

0 comments on commit 8e1b574

Please sign in to comment.