-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added evaluation-related classes from triplerush project.
- Loading branch information
0 parents
commit 8e1b574
Showing
32 changed files
with
4,710 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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") |
Oops, something went wrong.