Repository: incubator-htrace Updated Branches: refs/heads/master f8723aafe -> 2972045d2
HTRACE-66 Fix RAT check hanging because of large external files Project: http://git-wip-us.apache.org/repos/asf/incubator-htrace/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-htrace/commit/2972045d Tree: http://git-wip-us.apache.org/repos/asf/incubator-htrace/tree/2972045d Diff: http://git-wip-us.apache.org/repos/asf/incubator-htrace/diff/2972045d Branch: refs/heads/master Commit: 2972045d26b82a982ab3bb2aea19d2491704ebd8 Parents: f8723aa Author: Elliott Clark <[email protected]> Authored: Fri Jan 9 16:30:16 2015 -0800 Committer: Elliott Clark <[email protected]> Committed: Fri Jan 9 16:35:52 2015 -0800 ---------------------------------------------------------------------- pom.xml | 33 ++++++++++++++++++--------------- 1 file changed, 18 insertions(+), 15 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-htrace/blob/2972045d/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index e5ae99d..bf85272 100644 --- a/pom.xml +++ b/pom.xml @@ -150,21 +150,24 @@ language governing permissions and limitations under the License. --> </executions> <configuration> <excludes> - <exclude>**/.settings/**</exclude> - <exclude>**/d3.min.js</exclude> - <exclude>**/dependency-reduced-pom.xml</exclude> - <exclude>**/generated/**</exclude> - <exclude>*/.settings/*</exclude> - <exclude>*/generated/*</exclude> - <exclude>*/gopkg.in/*</exclude> - <exclude>.git/**</exclude> - <exclude>htrace-core/src/go/bin/*</exclude> - <exclude>htrace-core/src/go/pkg/*</exclude> - <exclue>**/README.md</exclue> - <!-- Pulled down sources --> - <exclude>**/gopkg.in/**</exclude> - <exclude>**/github.com/**</exclude> - <exclude>**/golang.org/**</exclude> + <exclude>**/.settings/**</exclude> + <exclude>**/dependency-reduced-pom.xml</exclude> + <exclude>**/generated/**</exclude> + <exclude>*/.settings/*</exclude> + <exclude>*/generated/*</exclude> + <exclude>.git/**</exclude> + <exclue>**/README.md</exclue> + <exclude>**/src/go/bin/*</exclude> + <exclude>**/src/go/pkg/*</exclude> + <!-- external projects --> + <exclude>**/bootstrap-3.3.1/**</exclude> + <exclude>**/*.min.js</exclude> + <exclude>**/d3.min.js</exclude> + <!-- Pulled down sources --> + <exclude>**/gopkg.in/**</exclude> + <exclude>**/github.com/**</exclude> + <exclude>**/golang.org/**</exclude> + <exclude>**/Godeps/**</exclude> </excludes> </configuration> </plugin>
