Skip to content

Commit

Permalink
udpated README
Browse files Browse the repository at this point in the history
  • Loading branch information
johnrengelman committed Jul 7, 2014
1 parent 387d0a3 commit fb6ce5c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ instead of a port of the Maven Shade code. Documentation for version 0.8 and pri
buildscript {
repositories { jcenter() }
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:1.0.1'
classpath 'com.github.jengelman.gradle.plugins:shadow:1.0.2'
}
}
Expand Down Expand Up @@ -150,7 +150,10 @@ shadowJar {
}
```

Include specific dependency (transitive dependencies are **not** included)
Include specific dependency (transitive dependencies are **not** included). Note that dependency inclusion is based
on the same core classes as Gradle's `CopySpec` inclusion/exclusion. By default, there is a global include, however,
declaring a specific `include` effectively creates a global `exclude`. That is once an `include` is made, only items
that are specifically listed for inclusion will be include in the final output.

```
shadowJar {
Expand Down

0 comments on commit fb6ce5c

Please sign in to comment.