Java8 stream (#3585)

* java 8 stream code so far

* more examples

* code change

* fix test names

* fix unit test

* move code to correct location

* more unit tests

* more tests
This commit is contained in:
Ganesh
2018-02-24 12:51:20 +05:30
committed by Grzegorz Piwowarek
parent bfdc1713a7
commit 0094a87f9a
5 changed files with 541 additions and 0 deletions
+19
View File
@@ -16,6 +16,24 @@
<artifactId>log4j-core</artifactId>
<version>${log4j2.version}</version>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>${org.hamcrest.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-library</artifactId>
<version>${org.hamcrest.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-all</artifactId>
<version>${org.hamcrest.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
@@ -32,5 +50,6 @@
</build>
<properties>
<log4j2.version>2.8.2</log4j2.version>
<org.hamcrest.version>1.3</org.hamcrest.version>
</properties>
</project>