forked from ails-lab/with
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
71 lines (63 loc) · 2.68 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import sbt._
import Keys._
import EclipseKeys._
import IO._
import Seq._
import scala.xml._
import scala.xml.transform._
import com.typesafe.config._
name := """with"""
version := "1.0-SNAPSHOT"
lazy val root = (project in file(".")).enablePlugins(PlayJava)
scalaVersion := "2.11.1"
dependencyOverrides += "io.netty" % "netty" % "3.9.9.Final"
libraryDependencies ++= Seq(
// javaJdbc,
// javaEbean,
cache,
filters,
javaWs,
"org.mongodb.morphia" % "morphia" % "1.0.1",
"org.apache.jena" % "apache-jena-libs" % "3.1.0",
"commons-io" % "commons-io" % "2.3",
"com.google.code.gson" % "gson" % "2.2.4",
"com.google.code.gson" % "gson" % "2.2.4",
"commons-validator" % "commons-validator" % "1.4.0",
"org.jsoup" % "jsoup" % "1.8.3",
"com.optimaize.languagedetector" % "language-detector" % "0.4",
"dom4j" % "dom4j" % "1.6.1",
"org.apache.httpcomponents" % "httpclient" % "4.5.2",
"org.apache.httpcomponents" % "httpasyncclient" % "4.1.1",
"org.apache.httpcomponents" % "httpmime" % "4.3.1",
"org.elasticsearch" % "elasticsearch" % "2.3.3",
// "net.sourceforge.owlapi" % "owlapi-distribution" % "5.0.1",
// "com.yakaz.elasticsearch.plugins" % "elasticsearch-action-updatebyquery" % "2.5.1",
// validate the token from the login on web browser
// "com.google.api-client" % "google-api-client" % "1.19.1"
"org.json" % "org.json" % "chargebee-1.0",
"org.apache.commons" % "commons-email" % "1.3.3",
"commons-collections" % "commons-collections" % "3.0",
"com.jayway.jsonpath" % "json-path" % "2.0.0",
"junit" % "junit" % "4.11",
"org.im4java" % "im4java" % "1.4.0",
"io.dropwizard.metrics" % "metrics-core" % "3.1.2",
"io.dropwizard.metrics" % "metrics-graphite" % "3.1.2",
"org.elasticsearch" % "metrics-elasticsearch-reporter" % "2.0",
"net.coobird" % "thumbnailator" % "0.4.8",
"org.apache.opennlp" % "opennlp-tools" % "1.6.0",
"edu.stanford.nlp" % "stanford-corenlp" % "3.6.0",
"edu.stanford.nlp" % "stanford-corenlp" % "3.6.0" classifier "models",
"de.julielab" % "aliasi-lingpipe" % "4.1.0",
"com.codahale.metrics" % "metrics-core" % "3.0.2",
"com.google.oauth-client" % "google-oauth-client" % "1.20.0",
"com.google.api-client" % "google-api-client" % "1.22.0",
"com.google.apis" % "google-api-services-plus" % "v1-rev413-1.22.0",
"org.facebook4j" % "facebook4j-core" % "2.4.8",
"org.apache.commons" % "commons-compress" % "1.12",
"org.apache.commons" % "commons-lang3" % "3.0" withSources() withJavadoc(),
"commons-io" % "commons-io" % "2.2",
"com.hermit-reasoner" % "org.semanticweb.hermit" % "1.3.8.4",
"mysql" % "mysql-connector-java" % "5.1.12"
)
sources in doc in Compile := List()
EclipseKeys.withSource := true