Probably dumb question. Is there a predefined cons...
# refreshversions
t
Probably dumb question. Is there a predefined constant for
kotlin("plugin.serialization")
, and in the interest of teaching me to fish, what’s the easiest way to discover which dependencies have constants already defined?
l
Having version.kotlin defined is enough, no need to specify the version in the plugins DSL.
j
there are no constants for plugins because they would be not enough, the build would break until you add the required version in versions.properties
@Toddobryan to find which dependencies have constants already defined, just bookmark this page https://jmfayard.github.io/refreshVersions/dependency-notations/
t
Thank you!