* Refactoring and Unit testing added based on Kevin Gilmore's advice of Sep 16, 2018
* Refactoring and Unit testing added based on Kevin Gilmore's advice of Sep 16, 2018
* Refactoring and Unit testing added based on Kevin Gilmore's advice of Sep 16, 2018
* Resolve merge conflict
Added dependency for org.passay and for org.apache.commons
* Create searching/WordIndexer.java
* Create WordIndexerUnitTest.java
* Updated in response to Kevin Gilmore's questions
"What happens if the string ends with the word you're searching for? Would the next iteration of the loop cause an error if index + wordLength is greater than the last position of the string? Be sure to test this scenario."
* Updated WordIndexer in response to Kevin Gilmore
Generally speaking, it's good practice to declare return types, parameters, variables using an interface rather than an implementation, if the interface is sufficient to satisfy the need. In this case, there's no reason you can't simply return a List of Integer. (Excellent point, fixed)
The two methods are identical. Isn't the first one supposed to be the naive approach? (It was a copy and paste error, fixed)
* saving changes...
* Update java-strings/src/main/java/com/baeldung/string/searching/WordIndexer.java
Co-Authored-By: codewarrior2000 <lpc34@columbia.edu>
* Update java-strings/src/main/java/com/baeldung/string/searching/WordIndexer.java
Co-Authored-By: codewarrior2000 <lpc34@columbia.edu>
* Update java-strings/src/test/java/com/baeldung/string/searching/WordIndexerUnitTest.java
Co-Authored-By: codewarrior2000 <lpc34@columbia.edu>
* Respond to Kevin Gilmore's code changes
* Debugging code change to JUnit
-Added placeholder {start-class} tag in parent-boot-2's spring-boot-maven-plugin so that any child that has a {start-class} automatically is benefited from this plugin and wil help that child class to run
-Fix startup issues of few spring boot 2 projects
* BAEL-1979 Added examples for SnakeYAML Library
* BAEL-1979 Moved the snakeyaml related code to libraries module
* BAEL-1979 Removed the System.out.println() statements and converted the assertTrue to assertEquals wherever possible.
* BAEL-1979 Removed println statements, small formatting fix in pom.xml
* BAEL-1466 Added a new module for apache-geode
* BAEL-1466 Updated the Integration Tests.
* BAEL-1466 Updated the Integration Tests.
* BAEL-1466 Updated the Integration Tests.
* BAEL-1466 Removed the Unnecessary code.
* BAEL-2262 Added code for demonstration of HTTPS enabled Spring Boot Application
* BAEL-2262 Removed the Basic Authentication from the HttpsEnabledApplication.