We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d62bb43 commit f91ed36Copy full SHA for f91ed36
2 files changed
.circleci/config.yml
@@ -1,7 +1,7 @@
1
version: 2.1
2
3
orbs:
4
- codacy: codacy/base@11.2.0
+ codacy: codacy/base@12.1.3
5
6
workflows:
7
version: 2
codacy-plugins-api/src/main/scala/com/codacy/plugins/api/results/Result.scala
@@ -123,8 +123,11 @@ object Result {
123
124
case class LicenseWrapper(license: License)
125
126
- /** A software license. */
127
- case class License(name: String)
+ /** A software license.
+ *
128
+ * `id` and `name` cannot both be undefined.
129
+ */
130
+ case class License(id: Option[String], name: Option[String])
131
132
/** Documents a dependency relationship between components.
133
*
0 commit comments