OpenSearch/buildSrc
Jason Tedor 8c554215e0 Ban Boolean#getBoolean
The method Boolean#getBoolean is dangerous. It is too easy to mistakenly
invoke this method thinking that it is parsing a string as a
boolean. However, what it actually does is get a system property with
the specified string, and then attempts to use usual crappy boolean
parsing in the JDK to parse that system property as boolean with
complete leniency (it parses every input value into either true or
false); that is, this method amounts to invoking
Boolean#parseBoolean(String) on the result of
System#getProperty(String). Boo. This commit bans usage of this method.

Relates #23864
2017-04-01 17:02:19 -04:00
..
src Ban Boolean#getBoolean 2017-04-01 17:02:19 -04:00
.gitignore Build: Add fake project to include buildSrc as normal project 2016-05-06 22:26:15 -07:00
build.gradle Build: remove progress logger hack for gradle 2.13 (#23679) 2017-03-21 23:32:40 -07:00
version.properties Upgrade to Lucene 6.5.0 (#23750) 2017-03-27 15:57:54 +02:00