On 26.02.2015 15:16, Artiom Shutak wrote: > Hi all, > > In bounds IGNITE-325, I added RAT tool to Ignite project, configured him > and fixed founded issues. Now, RAT tool cannot find violations. [...] > <exclude>**/com/romix/scala/**</exclude><!--own license--> > <exclude>**/GridOffHeapSnapTreeMap.java</exclude><!--own license--> > <exclude>**/org/apache/ignite/internal/util/snaptree/*.java</exclude><!--own > license--> > <exclude>**/org/pcollections/**</exclude><!--own license--> > <exclude>**/org/jdk8/backport/</exclude><!--own license--> > <exclude>**/test/java/org/apache/ignite/p2p/p2p.properties</exclude><!--test > depends on file content--> > <exclude>**/test/resources/log/ignite.log.tst</exclude><!--test resource--> > <exclude>**/test/config/start-nodes.ini</exclude><!----> > <exclude>**/spi/deployment/uri/META-INF/ignite.incorrefs</exclude><!--test > resource--> > <exclude>**/spi/deployment/uri/META-INF/ignite.empty</exclude><!--should be > empty--> > <exclude>**/spi/deployment/uri/META-INF/ignite.brokenxml</exclude><!--test > resource--> > <exclude>**/hadoop/books/*.txt</exclude><!--books examples--> > <exclude>**/javax.cache.spi.CachingProvider</exclude><!--cannot be > changed--> > <exclude>**/org.apache.hadoop.mapreduce.protocol.ClientProtocolProvider</exclude>
I suggest you use complete paths to these files, not wildcard paths; or at least not paths starting with **. Oherwise it's too easy to exclude a file by mistake that really should be checked by RAT. -- Brane
