File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -254,12 +254,12 @@ subprojects {
254254 }
255255 }
256256 // Adds a <type> tag for each dependency. This assumes that all dependencies except
257- // for support-annotations are aars, but it can break if in the future we depend on
258- // anything else that's not an aar.
257+ // for "annotation" are aars, but it can break if in the future the artifactId
258+ // changes or we depend on anything else that's not an aar.
259259 // TODO: Remove this once Gradle automatically determines dependency types.
260260 whenConfigured { pom ->
261261 pom. dependencies. findAll { dependency ->
262- if (dependency. artifactId != ' support-annotations ' ) {
262+ if (dependency. artifactId != ' annotation ' ) {
263263 dependency. type = ' aar'
264264 }
265265 }
You can’t perform that action at this time.
0 commit comments