Skip to content

Commit 43ad1d2

Browse files
committed
paradise 2.0.0-M1 release
1 parent f9fbe87 commit 43ad1d2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

overviews/macros/paradise.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ It is designed to reliably work with production releases of <code>scalac</code>,
1818
making latest macro developments available way before they end up in future versions Scala.
1919
Refer to the roadmap for [the list of supported features and versions](/overviews/macros/roadmap.html).
2020

21-
~/210x $ scalac -Xplugin:macro-paradise_*.jar -Xshow-phases
21+
~/210x $ scalac -Xplugin:paradise_*.jar -Xshow-phases
2222
phase name id description
2323
---------- -- -----------
2424
parser 1 parse source into ASTs, perform simple desugaring
@@ -37,16 +37,16 @@ for an end-to-end example, but in a nutshell working with macro paradise is as e
3737
to your build (granted you’ve already [set up SBT](/overviews/macros/overview.html#using_macros_with_maven_or_sbt)
3838
to use macros).
3939

40-
resolvers += Resolver.sonatypeRepo("snapshots")
41-
addCompilerPlugin("org.scala-lang.plugins" % "macro-paradise" % "2.0.0-SNAPSHOT" cross CrossVersion.full)
40+
resolvers += Resolver.sonatypeRepo("releases")
41+
addCompilerPlugin("org.scalamacros" % "paradise" % "2.0.0-M1" cross CrossVersion.full)
4242

4343
To use macro paradise in Maven follow the instructions provided at Stack Overflow on the page ["Enabling the macro-paradise Scala compiler plugin in Maven projects"](http://stackoverflow.com/questions/19086241/enabling-the-macro-paradise-scala-compiler-plugin-in-maven-projects) (also make sure to add the dependency on the Sonatype snapshots repository and `scala-reflect.jar`).
4444

4545
<compilerPlugins>
4646
<compilerPlugin>
47-
<groupId>org.scala-lang.plugins</groupId>
48-
<artifactId>macro-paradise_<YOUR.SCALA.VERSION></artifactId>
49-
<version>2.0.0-SNAPSHOT</version>
47+
<groupId>org.scalamacros</groupId>
48+
<artifactId>paradise_<YOUR.SCALA.VERSION></artifactId>
49+
<version>2.0.0-M1</version>
5050
</compilerPlugin>
5151
</compilerPlugins>
5252

0 commit comments

Comments
 (0)