Skip to content

Commit

Permalink
ScalaCheck 프로젝트 추가(sbt + idea)
Browse files Browse the repository at this point in the history
  • Loading branch information
nephilim committed Feb 26, 2011
1 parent 86db7ee commit 96da22f
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion hellosbt/project/plugins/project/build.properties
@@ -1,3 +1,3 @@
#Project properties #Project properties
#Sun Dec 26 00:57:27 KST 2010 #Thu Feb 10 23:33:07 KST 2011
plugin.uptodate=true plugin.uptodate=true
8 changes: 8 additions & 0 deletions scalacheck/project/build.properties
@@ -0,0 +1,8 @@
#Project properties
#Sat Feb 26 23:54:19 KST 2011
project.organization=ysl.nephilim.test
project.name=ScalaCheck
sbt.version=0.7.4
project.version=1.0
build.scala.versions=2.8.1
project.initialize=false
8 changes: 8 additions & 0 deletions scalacheck/project/build/Project.scala
@@ -0,0 +1,8 @@
import sbt._

class MyProject(info:ProjectInfo) extends DefaultProject(info) {
val scalaToolsReleases = ScalaToolsReleases // http://scala-tools.org/repo-release/
val scalacheck = "org.scalacheck" % "scalacheck" % "1.5"

}

1 comment on commit 96da22f

@nephilim
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

https://github.com/mpeltonen/sbt-idea 에서 간단한 방법으로(Usage as processor 참고)
sbt 프로젝트를 intellij idea 프로젝트로도 동작하게 할 수 있음

Please sign in to comment.