Skip to content

Commit

Permalink
Fixing transitive-ness of provided
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Ryan committed Jan 2, 2013
1 parent 36e5b8f commit b7847eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gradle/convention.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ subprojects { project ->
configurations {
provided {
description = 'much like compile, but indicates you expect the JDK or a container to provide it. It is only available on the compilation classpath, and is not transitive.'
transitive = false
visible = false
transitive = true
visible = true
}
}

Expand Down

0 comments on commit b7847eb

Please sign in to comment.