Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this user
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
gadelrab
/
ExFaKT
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
0
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security
Insights
Files
c2288d2
Api
Client
Demo
Extras
FactSpotting
QueryRewriting
Utils
WebService
WebService2
app
conf
gradle
project
public
sbt-dist
test
.gitignore
build.gradle
build.sbt
gradlew
gradlew.bat
pom.xml
sbt
sbt.bat
data
scripts
src
.gitignore
.gitmodules
README.md
install_external_jars.sh
pom.xml
rules_splitq_heursitic.out.json
Breadcrumbs
ExFaKT
/
WebService2
/
build.sbt
Blame
Blame
Latest commit
History
History
executable file
·
29 lines (21 loc) · 985 Bytes
Breadcrumbs
ExFaKT
/
WebService2
/
build.sbt
Top
File metadata and controls
Code
Blame
executable file
·
29 lines (21 loc) · 985 Bytes
Raw
name := """webservice2""" organization := "factchecking" version := "1.0-SNAPSHOT" version := "1.0-SNAPSHOT" lazy val root = (project in file(".")).enablePlugins(PlayJava).settings( libraryDependencies ++= Seq( "org.webjars" % "bootstrap" % "3.3.7", "org.webjars" % "flot" % "0.8.3", "org.webjars" % "font-awesome" % "4.7.0" )) scalaVersion := "2.12.7" resolvers += "Local Maven" at Path.userHome.asFile.toURI.toURL + ".m2/repository" resolvers += Resolver.url("utils-repo", url("https://raw.github.com/mhmgad/MyUtils/mvn-repo/")) //unmanagedBase := baseDirectory.value / "libs" libraryDependencies += guice //externalPom() libraryDependencies += "factchecking" % "api" % "1.0" libraryDependencies += "de.mpii.exfakt" % "utils" % "1.0-SNAPSHOT" libraryDependencies += "factchecking" % "query-rewriting" % "1.0" libraryDependencies += "org.apache.logging.log4j" % "log4j-api" % "2.11.1" libraryDependencies += "org.apache.logging.log4j" % "log4j-core" % "2.11.1"
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
You can’t perform that action at this time.