Merge pull request #13815 from bhaskar16/JAVA-6173-parallel-stream-difference-change-location
[JAVA-6173] stream.parallelStream and Collections parallel stream differnces
This commit is contained in:
		
						commit
						9bace94aae
					
				
							
								
								
									
										72
									
								
								core-java-modules/core-java-streams-5/pom.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										72
									
								
								core-java-modules/core-java-streams-5/pom.xml
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,72 @@ | ||||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <project xmlns="http://maven.apache.org/POM/4.0.0" | ||||
|     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||||
|     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||||
|     <modelVersion>4.0.0</modelVersion> | ||||
|     <artifactId>core-java-streams-5</artifactId> | ||||
|     <name>core-java-streams-5</name> | ||||
|     <packaging>jar</packaging> | ||||
| 
 | ||||
|     <parent> | ||||
|         <groupId>com.baeldung.core-java-modules</groupId> | ||||
|         <artifactId>core-java-modules</artifactId> | ||||
|         <version>0.0.1-SNAPSHOT</version> | ||||
|     </parent> | ||||
| 
 | ||||
|     <dependencies> | ||||
|         <dependency> | ||||
|             <groupId>log4j</groupId> | ||||
|             <artifactId>log4j</artifactId> | ||||
|             <version>${log4j.version}</version> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.junit</groupId> | ||||
|             <artifactId>junit-bom</artifactId> | ||||
|             <version>${junit-jupiter.version}</version> | ||||
|             <type>pom</type> | ||||
|             <scope>import</scope> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.assertj</groupId> | ||||
|             <artifactId>assertj-core</artifactId> | ||||
|             <version>3.23.1</version> | ||||
|             <scope>test</scope> | ||||
|         </dependency> | ||||
|         <dependency> | ||||
|             <groupId>org.apache.commons</groupId> | ||||
|             <artifactId>commons-lang3</artifactId> | ||||
|             <version>3.12.0</version> | ||||
|             <scope>test</scope> | ||||
|         </dependency> | ||||
|     </dependencies> | ||||
| 
 | ||||
|     <build> | ||||
|         <finalName>core-java-streams-4</finalName> | ||||
|         <resources> | ||||
|             <resource> | ||||
|                 <directory>../core-java-streams-4/src/main</directory> | ||||
|                 <filtering>true</filtering> | ||||
|             </resource> | ||||
|         </resources> | ||||
|         <plugins> | ||||
|             <plugin> | ||||
|                 <groupId>org.apache.maven.plugins</groupId> | ||||
|                 <artifactId>maven-compiler-plugin</artifactId> | ||||
|                 <version>${maven-compiler-plugin.version}</version> | ||||
|                 <configuration> | ||||
|                     <source>${maven.compiler.source}</source> | ||||
|                     <target>${maven.compiler.target}</target> | ||||
|                     <compilerArgument>-parameters</compilerArgument> | ||||
|                 </configuration> | ||||
|             </plugin> | ||||
|         </plugins> | ||||
|     </build> | ||||
| 
 | ||||
|     <properties> | ||||
|         <!-- testing --> | ||||
|         <maven-compiler-plugin.version>3.1</maven-compiler-plugin.version> | ||||
|         <maven.compiler.source>12</maven.compiler.source> | ||||
|         <maven.compiler.target>12</maven.compiler.target> | ||||
|     </properties> | ||||
| 
 | ||||
| </project> | ||||
| @ -34,4 +34,4 @@ public class Book { | ||||
|     public void setYearPublished(int yearPublished) { | ||||
|         this.yearPublished = yearPublished; | ||||
|     } | ||||
| } | ||||
| } | ||||
| @ -37,4 +37,4 @@ public class BookSpliterator<T> implements Spliterator<T> { | ||||
|     public int characteristics() { | ||||
|         return CONCURRENT; | ||||
|     } | ||||
| } | ||||
| } | ||||
| @ -90,4 +90,4 @@ public class MyBookContainer<T> implements Collection<T> { | ||||
|     public void clear() { | ||||
| 
 | ||||
|     } | ||||
| } | ||||
| } | ||||
| @ -38,4 +38,4 @@ public class ParallelStreamApplication { | ||||
|           }); | ||||
|         return countOfBooks.get(); | ||||
|     } | ||||
| } | ||||
| } | ||||
| @ -1,6 +1,5 @@ | ||||
| package parallelstream; | ||||
| package com.baeldung.parallelstream; | ||||
| 
 | ||||
| import java.util.ArrayList; | ||||
| import java.util.List; | ||||
| 
 | ||||
| import org.junit.Assert; | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user