LoginSignup
0
0

More than 5 years have passed since last update.

sbtでstormを使うには

Posted at
build.sbt
name := "StormTest"

version := "0.1"

scalaVersion := "2.11.8"

resolvers += "clojars" at "https://clojars.org/repo/"

// https://mvnrepository.com/artifact/junit/junit
libraryDependencies += "junit" % "junit" % "4.12" % Test

// https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient
libraryDependencies += "org.apache.httpcomponents" % "httpclient" % "4.5.6"

// https://mvnrepository.com/artifact/org.jsoup/jsoup
libraryDependencies += "org.jsoup" % "jsoup" % "1.11.3"

// https://mvnrepository.com/artifact/org.apache.solr/solr-solrj
libraryDependencies += "org.apache.solr" % "solr-solrj" % "7.6.0"

// https://mvnrepository.com/artifact/org.apache.storm/storm-core
libraryDependencies += "org.apache.storm" % "storm-core" % "1.2.2"

// https://mvnrepository.com/artifact/com.digitalpebble.stormcrawler/storm-crawler-core
libraryDependencies += "com.digitalpebble.stormcrawler" % "storm-crawler-core" % "1.13"
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0