Skip to content

Commit

Permalink
Merge pull request #1 from allenai/michalg-cleanup
Browse files Browse the repository at this point in the history
Michalg cleanup
  • Loading branch information
jkinkead committed Jun 3, 2016
2 parents 304c104 + af01aac commit bb5cf22
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 341 deletions.
67 changes: 19 additions & 48 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
// import AssemblyKeys._
// import NativePackagerKeys._

// assemblySettings

// ReleaseSettings.defaults

name := "openie"

organization := "edu.washington.cs.knowitall.openie"
Expand All @@ -15,44 +8,30 @@ scalaVersion <<= crossScalaVersions { (vs: Seq[String]) => vs.head }

resolvers += "Sonatype SNAPSHOTS" at "https://oss.sonatype.org/content/repositories/snapshots/"

val clearGroup = "com.clearnlp"
val clearVersion = "2.0.2"

// val breezeVersion = "1.2"
// val breezeLearn = "org.scalanlp" %% "breeze-learn" % breezeVersion exclude("com.codecommit", "anti-xml_2.9.1")
// val breezeProcess = "org.scalanlp" %% "breeze-process" % breezeVersion exclude("com.codecommit", "anti-xml_2.9.1")

val scopt = "com.github.scopt" %% "scopt" % "3.4.0"

val unfilteredFilter = "net.databinder" %% "unfiltered-filter" % "0.7.1"
val unfilteredJetty = "net.databinder" %% "unfiltered-jetty" % "0.7.1"

libraryDependencies ++= Seq(
clearGroup % "clearnlp-dictionary" % "1.0",
clearGroup % "clearnlp-general-en-pos" % "1.1",
clearGroup % "clearnlp-general-en-dep" % "1.2",
clearGroup % "clearnlp-general-en-srl" % "1.1",
"org.scalaz" %% "scalaz-core" % "7.0.9",
"edu.washington.cs.knowitall" % "reverb-core" % "1.4.3",
unfilteredFilter, unfilteredJetty,
scopt,
"org.allenai.openregex" %% "openregex-scala" % "1.1.3",
"edu.washington.cs.knowitall" % "morpha-stemmer" % "1.0.5",
"org.apache.opennlp" % "opennlp-tools" % "1.5.3" exclude("net.sf.jwordnet", "jwnl"),
"ch.qos.logback" % "logback-classic" % "1.0.13",
"ch.qos.logback" % "logback-core" % "1.0.13",
"com.clearnlp" % "clearnlp" % "2.0.2" ,
"edu.washington.cs.knowitall" % "opennlp-tokenize-models" % "1.5",
"edu.washington.cs.knowitall" % "opennlp-postag-models" % "1.5",
"com.clearnlp" % "clearnlp-dictionary" % "1.0",
"com.clearnlp" % "clearnlp-general-en-dep" % "1.2",
"com.clearnlp" % "clearnlp-general-en-pos" % "1.1",
"com.clearnlp" % "clearnlp-general-en-srl" % "1.1",
"com.github.scopt" %% "scopt" % "3.4.0",
"edu.washington.cs.knowitall" % "morpha-stemmer" % "1.0.5",
"edu.washington.cs.knowitall" % "opennlp-chunk-models" % "1.5",
// for remote components
"edu.washington.cs.knowitall" % "opennlp-postag-models" % "1.5",
"edu.washington.cs.knowitall" % "opennlp-tokenize-models" % "1.5",
"edu.washington.cs.knowitall" % "reverb-core" % "1.4.3",
"net.databinder" %% "unfiltered-filter" % "0.7.1",
"net.databinder" %% "unfiltered-jetty" % "0.7.1",
"net.databinder.dispatch" %% "dispatch-core" % "0.11.0",
// logging
"org.allenai.openregex" %% "openregex-scala" % "1.1.3",
"org.apache.opennlp" % "opennlp-tools" % "1.5.3" exclude("net.sf.jwordnet", "jwnl"),
"org.scalatest" %% "scalatest" % "2.2.6" % "test",
"org.scalaz" %% "scalaz-core" % "7.0.9",
"org.slf4j" % "slf4j-api" % "1.7.5",
"ch.qos.logback" % "logback-core" % "1.0.13",
"ch.qos.logback" % "logback-classic" % "1.0.13",
"org.specs2" % "specs2_2.11" % "2.3.13" % "test",
"org.scalatest" %% "scalatest" % "2.2.6" % "test")

// mainClass in assembly := Some("edu.knowitall.openie.OpenIECli")
"org.specs2" % "specs2_2.11" % "2.3.13" % "test"
)

scalacOptions ++= Seq("-unchecked", "-deprecation")

Expand Down Expand Up @@ -98,11 +77,3 @@ pomExtra := (
</developer>
</developers>)

// packagerSettings

// packageArchetype.java_application

// mappings in Universal ++= Seq(
// file("README.md") -> "README.md",
// file("LICENSE") -> "LICENSE"
//)

This file was deleted.

173 changes: 0 additions & 173 deletions src/main/scala/edu/knowitall/srlie/confidence/TrainSrlConfidence.scala

This file was deleted.

This file was deleted.

Loading

0 comments on commit bb5cf22

Please sign in to comment.