Skip to content

Commit

Permalink
Merge pull request #108 from MyounghoonKim/sbt
Browse files Browse the repository at this point in the history
build.sbt 추가했어요
  • Loading branch information
hohyon-ryu authored Jan 17, 2017
2 parents 311dcf4 + 34a04a9 commit 0e874bf
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
13 changes: 13 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name := "Korean Text Processing Utilities SBT"

version := "4.0"

scalaVersion := "2.11.7"

libraryDependencies ++= Seq(
"com.twitter" % "twitter-text" % "1.11.1",
"org.slf4j" % "slf4j-nop" % "1.5.8" % "provided",
"com.github.nscala-time" %% "nscala-time" % "2.14.0" % "provided",
"org.scalatest" %% "scalatest" % "3.0.0" % "test",
"junit" % "junit" % "4.12" % "test"
)
19 changes: 19 additions & 0 deletions docs/sbt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
SBT
===

- build: `$ sbt package -verbose`
- test: `$ sbt test`
- run
- **사전 업데이트 등의 작업 후에 할 것** — `$ sbt "runMain com.twitter.penguin.korean.tools.UpdateAllTheExamples"`
- 기타
- `$ sbt "runMain com.twitter.penguin.korean.qa.BatchGetUnknownNouns ./src/main/resources/com/twitter/penguin/korean/util/example_tweets.txt"`
- `$ sbt "runMain com.twitter.penguin.korean.qa.BatchGetUnknownNouns ./src/main/resources/com/twitter/penguin/korean/util/example_tweets.txt"` Looking to contribute something? Here's how you can help.

Bugs reports
------------

A bug is a *demonstrable problem* that is caused by the code in the repository. Good bug reports are extremely helpful - thank you!

Guidelines for bug reports:

1. **Use the GitHub issue search** — check if the issue has already been reported.

0 comments on commit 0e874bf

Please sign in to comment.