[GRADLE-76] Documentation sometimes uses test "..." instead of testCompile Created: 29/Apr/08 Updated: 04/Jan/13 Resolved: 01/May/08 |
|
Status: | Resolved |
Project: | Gradle |
Affects Version/s: | 0.1.3 |
Fix Version/s: | 0.1.4 |
Type: | Bug | ||
Reporter: | Peter Voss | Assignee: | Hans Dockter |
Resolution: | Fixed | Votes: | 0 |
Description |
At least in section 3.1 Examples the dependency section is not correct (probably this is the only error): Current erroneous example: subprojects { ... dependencies { compile "commons-lang:commons-lang:3.1" test "junit:junit:4.4" } ... } The correct version would look like this: subprojects { ... dependencies { compile "commons-lang:commons-lang:3.1" testCompile "junit:junit:4.4" } ... } |
Comments |
Comment by Hans Dockter [ 01/May/08 ] |
Most of the examples in the user's guide are actual integration tests. This one not and there you go |