Skip to content

Commit

Permalink
add Scala.js project setting example
Browse files Browse the repository at this point in the history
  • Loading branch information
xuwei-k committed Mar 29, 2016
1 parent 9da5fb2 commit cd8668d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ __powerful__ means not only test class names but also test method names.
addSbtPlugin("com.github.scalaprops" % "sbt-scalaprops" % "0.1.1")
```

#### JVM

`build.sbt`

```scala
Expand All @@ -31,6 +33,24 @@ scalapropsWithScalazlaws
scalapropsVersion := "0.3.0"
```

#### Scala.js

`build.sbt`

```scala
scalapropsCoreSettings

libraryDependencies += "com.github.scalaprops" %%% "scalaprops" % "0.3.0" % "test"
```

or

```scala
scalapropsCoreSettings

libraryDependencies += "com.github.scalaprops" %%% "scalaprops-scalazlaws" % "0.3.0" % "test"
```


- [API Documentation](https://oss.sonatype.org/service/local/repositories/releases/archive/com/github/scalaprops/sbt-scalaprops_2.10_0.13/0.1.1/sbt-scalaprops-0.1.1-javadoc.jar/!/index.html)

Expand Down

0 comments on commit cd8668d

Please sign in to comment.