what's the right way to set up a scalac plugin? I ...
# general
h
what's the right way to set up a scalac plugin? I attempted to follow the docs: `BUILD.tools`:
Copy code
jar_library(name='scalac-plugin-dep',
            jars = [
              scala_jar(org='org.scalamacros', name='paradise', rev='2.1.0')
              ],
            )
`pants.ini`:
Copy code
[compile.zinc]
scalac_plugins: ['macroparadise']
but I get
failed: Could not find requested plugins: [u'macroparadise']