| 
									
										
										
										
											2019-12-05 16:56:52 +02:00
										 |  |  | <?xml version="1.0" encoding="UTF-8"?> | 
					
						
							| 
									
										
										
										
											2021-05-06 19:53:35 +05:30
										 |  |  | <project xmlns="http://maven.apache.org/POM/4.0.0" | 
					
						
							| 
									
										
										
										
											2020-03-15 18:22:24 +05:30
										 |  |  |     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"> | 
					
						
							| 
									
										
										
										
											2019-10-30 23:09:06 +01:00
										 |  |  |     <modelVersion>4.0.0</modelVersion> | 
					
						
							|  |  |  |     <artifactId>core-java-9-new-features</artifactId> | 
					
						
							| 
									
										
										
										
											2019-12-05 16:56:52 +02:00
										 |  |  |     <name>core-java-9-new-features</name> | 
					
						
							| 
									
										
										
										
											2019-10-30 23:09:06 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     <parent> | 
					
						
							|  |  |  |         <groupId>com.baeldung</groupId> | 
					
						
							|  |  |  |         <artifactId>parent-modules</artifactId> | 
					
						
							|  |  |  |         <version>1.0.0-SNAPSHOT</version> | 
					
						
							|  |  |  |         <relativePath>../../</relativePath> | 
					
						
							|  |  |  |     </parent> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <dependencies> | 
					
						
							| 
									
										
										
										
											2020-07-07 14:18:10 +03:00
										 |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>io.reactivex.rxjava3</groupId> | 
					
						
							|  |  |  |             <artifactId>rxjava</artifactId> | 
					
						
							|  |  |  |             <version>${rxjava.version}</version> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							| 
									
										
										
										
											2019-10-30 23:09:06 +01:00
										 |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.junit.platform</groupId> | 
					
						
							|  |  |  |             <artifactId>junit-platform-runner</artifactId> | 
					
						
							| 
									
										
										
										
											2021-10-29 09:37:04 +05:30
										 |  |  |             <version>${junit-platform.version}</version> | 
					
						
							| 
									
										
										
										
											2019-10-30 23:09:06 +01:00
										 |  |  |             <scope>test</scope> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							| 
									
										
										
										
											2020-05-25 02:09:21 -03:00
										 |  |  |         <dependency> | 
					
						
							|  |  |  |             <groupId>org.awaitility</groupId> | 
					
						
							|  |  |  |             <artifactId>awaitility</artifactId> | 
					
						
							|  |  |  |             <version>${awaitility.version}</version> | 
					
						
							|  |  |  |             <scope>test</scope> | 
					
						
							|  |  |  |         </dependency> | 
					
						
							| 
									
										
										
										
											2019-10-30 23:09:06 +01:00
										 |  |  |     </dependencies> | 
					
						
							| 
									
										
										
										
											2021-09-20 00:04:26 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-13 14:48:44 +05:30
										 |  |  |     <build> | 
					
						
							|  |  |  |         <finalName>core-java-9-new-features</finalName> | 
					
						
							|  |  |  |         <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> | 
					
						
							|  |  |  |                 </configuration> | 
					
						
							|  |  |  |             </plugin> | 
					
						
							|  |  |  |         </plugins> | 
					
						
							|  |  |  |     </build> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <pluginRepositories> | 
					
						
							|  |  |  |         <pluginRepository> | 
					
						
							|  |  |  |             <id>apache.snapshots</id> | 
					
						
							|  |  |  |             <url>https://repository.apache.org/snapshots/</url> | 
					
						
							|  |  |  |         </pluginRepository> | 
					
						
							|  |  |  |     </pluginRepositories> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-25 01:43:34 -03:00
										 |  |  |     <profiles> | 
					
						
							| 
									
										
										
										
											2020-05-25 02:09:21 -03:00
										 |  |  |         <profile> | 
					
						
							|  |  |  |             <id>incubator-features</id> | 
					
						
							|  |  |  |             <build> | 
					
						
							|  |  |  |                 <finalName>core-java-9-new-features</finalName> | 
					
						
							|  |  |  |                 <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>--add-modules=jdk.incubator.httpclient</compilerArgument> | 
					
						
							|  |  |  |                         </configuration> | 
					
						
							|  |  |  |                     </plugin> | 
					
						
							|  |  |  |                     <plugin> | 
					
						
							|  |  |  |                         <artifactId>maven-surefire-plugin</artifactId> | 
					
						
							|  |  |  |                         <configuration> | 
					
						
							|  |  |  |                             <argLine>--add-modules=jdk.incubator.httpclient</argLine> | 
					
						
							|  |  |  |                         </configuration> | 
					
						
							|  |  |  |                     </plugin> | 
					
						
							|  |  |  |                 </plugins> | 
					
						
							|  |  |  |             </build> | 
					
						
							|  |  |  |         </profile> | 
					
						
							| 
									
										
										
										
											2020-05-25 01:43:34 -03:00
										 |  |  |         <profile> | 
					
						
							|  |  |  |             <id>mrjar-generation</id> | 
					
						
							|  |  |  |             <build> | 
					
						
							|  |  |  |                 <plugins> | 
					
						
							|  |  |  |                     <plugin> | 
					
						
							|  |  |  |                         <groupId>org.apache.maven.plugins</groupId> | 
					
						
							|  |  |  |                         <artifactId>maven-compiler-plugin</artifactId> | 
					
						
							|  |  |  |                         <executions> | 
					
						
							|  |  |  |                             <execution> | 
					
						
							|  |  |  |                                 <id>compile-java-8</id> | 
					
						
							|  |  |  |                                 <goals> | 
					
						
							|  |  |  |                                     <goal>compile</goal> | 
					
						
							|  |  |  |                                 </goals> | 
					
						
							|  |  |  |                                 <configuration> | 
					
						
							|  |  |  |                                     <source>1.8</source> | 
					
						
							|  |  |  |                                     <target>1.8</target> | 
					
						
							|  |  |  |                                     <compileSourceRoots> | 
					
						
							|  |  |  |                                         <compileSourceRoot>${project.basedir}/src/main/java8</compileSourceRoot> | 
					
						
							|  |  |  |                                     </compileSourceRoots> | 
					
						
							|  |  |  |                                 </configuration> | 
					
						
							|  |  |  |                             </execution> | 
					
						
							|  |  |  |                             <execution> | 
					
						
							|  |  |  |                                 <id>compile-java-9</id> | 
					
						
							|  |  |  |                                 <phase>compile</phase> | 
					
						
							|  |  |  |                                 <goals> | 
					
						
							|  |  |  |                                     <goal>compile</goal> | 
					
						
							|  |  |  |                                 </goals> | 
					
						
							|  |  |  |                                 <configuration> | 
					
						
							|  |  |  |                                     <release>9</release> | 
					
						
							|  |  |  |                                     <compileSourceRoots> | 
					
						
							|  |  |  |                                         <compileSourceRoot>${project.basedir}/src/main/java9</compileSourceRoot> | 
					
						
							|  |  |  |                                     </compileSourceRoots> | 
					
						
							|  |  |  |                                     <outputDirectory>${project.build.outputDirectory}/META-INF/versions/9</outputDirectory> | 
					
						
							|  |  |  |                                 </configuration> | 
					
						
							|  |  |  |                             </execution> | 
					
						
							|  |  |  |                             <execution> | 
					
						
							|  |  |  |                                 <id>default-testCompile</id> | 
					
						
							|  |  |  |                                 <phase>test-compile</phase> | 
					
						
							|  |  |  |                                 <goals> | 
					
						
							|  |  |  |                                     <goal>testCompile</goal> | 
					
						
							|  |  |  |                                 </goals> | 
					
						
							|  |  |  |                                 <configuration> | 
					
						
							|  |  |  |                                     <skip>true</skip> | 
					
						
							|  |  |  |                                 </configuration> | 
					
						
							|  |  |  |                             </execution> | 
					
						
							|  |  |  |                         </executions> | 
					
						
							|  |  |  |                     </plugin> | 
					
						
							|  |  |  |                     <plugin> | 
					
						
							|  |  |  |                         <groupId>org.apache.maven.plugins</groupId> | 
					
						
							|  |  |  |                         <artifactId>maven-jar-plugin</artifactId> | 
					
						
							|  |  |  |                         <version>${maven-jar-plugin.version}</version> | 
					
						
							|  |  |  |                         <configuration> | 
					
						
							|  |  |  |                             <archive> | 
					
						
							|  |  |  |                                 <manifestEntries> | 
					
						
							|  |  |  |                                     <Multi-Release>true</Multi-Release> | 
					
						
							|  |  |  |                                 </manifestEntries> | 
					
						
							|  |  |  |                                 <manifest> | 
					
						
							|  |  |  |                                     <mainClass>com.baeldung.multireleaseapp.App</mainClass> | 
					
						
							|  |  |  |                                 </manifest> | 
					
						
							|  |  |  |                             </archive> | 
					
						
							|  |  |  |                         </configuration> | 
					
						
							|  |  |  |                     </plugin> | 
					
						
							|  |  |  |                 </plugins> | 
					
						
							|  |  |  |             </build> | 
					
						
							|  |  |  |         </profile> | 
					
						
							|  |  |  |     </profiles> | 
					
						
							| 
									
										
										
										
											2021-09-20 00:04:26 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-10-30 23:09:06 +01:00
										 |  |  |     <properties> | 
					
						
							| 
									
										
										
										
											2020-07-07 14:18:10 +03:00
										 |  |  |         <rxjava.version>3.0.0</rxjava.version> | 
					
						
							| 
									
										
										
										
											2020-05-25 02:09:21 -03:00
										 |  |  |         <awaitility.version>4.0.2</awaitility.version> | 
					
						
							| 
									
										
										
										
											2019-10-30 23:09:06 +01:00
										 |  |  |         <maven.compiler.source>1.9</maven.compiler.source> | 
					
						
							|  |  |  |         <maven.compiler.target>1.9</maven.compiler.target> | 
					
						
							|  |  |  |     </properties> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-06 19:53:35 +05:30
										 |  |  | </project> |