@@ -13,18 +13,12 @@ Locally:
1313 npm install less
1414
1515# Installation
16- Add the resolver and sbt plugin to your ` project/plugins.sbt ` file:
1716
18- resolvers += "JMParsons Releases" at "http://jmparsons.github.io/releases/"
17+ Add the sbt plugin to your ` project/plugins.sbt ` file:
1918
20- addSbtPlugin("com.jmparsons" % "play-lessc" % "0.1.1")
21-
22- For Play 2.1, use version 0.1.0.
19+ addSbtPlugin("com.jmparsons" % "play-lessc" % "0.1.2")
2320
2421# Usage
25- Import the plugin file into your build file to override settings:
26-
27- import com.jmparsons.plugin.LesscPlugin._
2822
2923Set the default ` lessEntryPoints ` to ` Nil ` and put in your custom ones into lesscEntryPoints:
3024
@@ -42,6 +36,8 @@ build.sbt example:
4236
4337Build.scala example:
4438
39+ import com.jmparsons.plugin.LesscPlugin._
40+
4541 lazy val main = play.Project(appName, appVersion, mainDeps).settings(lesscSettings: _*).settings(
4642 lessEntryPoints := Nil,
4743 lesscEntryPoints in Compile <<= baseDirectory(customLessEntryPoints)
@@ -61,6 +57,10 @@ A directory value is required for a non global copy of lessc (trailing slash opt
6157
6258## Changelog
6359
60+ 0.1.2 - November 11, 2013
61+
62+ - Now using Typesafe's community repository, removing the resolver dependency.
63+
64640.1.1 - October 4, 2013
6565
6666- Updated to work with Play 2.2.x.
@@ -92,6 +92,16 @@ A directory value is required for a non global copy of lessc (trailing slash opt
9292
9393- Added trim to output to remove the default less newline.
9494
95+ ## Older Version Installation - 0.1.1 and older
96+
97+ Add the resolver and sbt plugin to your project/plugins.sbt file:
98+
99+ resolvers += "JMParsons Releases" at "http://jmparsons.github.io/releases/"
100+
101+ addSbtPlugin("com.jmparsons" % "play-lessc" % "0.1.1")
102+
103+ For Play 2.1, use version 0.1.0.
104+
95105## Credits
96106This plugin is based off of [ play-stylus] [ play-stylus ] and [ play-sass] [ play-sass ] .
97107
0 commit comments