Skip to content

sminz/reactive-tweet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

reactive-tweet

sbt init

$ mkdir reactive-tweet
$ cd reactive-tweet
$ touch build.sbt
$ mkdir {project, app, conf}
$ cd project
$ touch build.properties
$ touch plugins.sbt
$ cd ../conf
$ touch application.conf
$ sbt

build.sbt

name := "reactive-tweet"

scalaVersion := "2.11.8"

project/build.properties

sbt.version=0.13.12

play init

build.sbt

val `reactive-tweet` =
  (project in file("."))
    .enablePlugins(PlayScala)

project/plugins.sbt

resolvers += "Typesafe repository" at "https://repo.typesafe.com/typesafe/maven-releases/"
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.4.8")

의존성 import 에러가 발생하면..

rm -rf ~/.ivy2/cache/commons-*
rm -rf ~/.ivy2/cache/junit*
rm -rf ~/.ivy2/cache/org.hamcrest*
rm -rf ~/.ivy2/cache/oauth.signpost*
rm -rf ~/.ivy2/cache/net.sf.ehcache*
rm -rf ~/.ivy2/cache/org.javassist*

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages