168 lines
		
	
	
		
			7.0 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			168 lines
		
	
	
		
			7.0 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?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-9-new-features</artifactId>
 | |
|     <version>0.2-SNAPSHOT</version>
 | |
|     <name>core-java-9-new-features</name>
 | |
| 
 | |
|     <parent>
 | |
|         <groupId>com.baeldung</groupId>
 | |
|         <artifactId>parent-modules</artifactId>
 | |
|         <version>1.0.0-SNAPSHOT</version>
 | |
|         <relativePath>../../</relativePath>
 | |
|     </parent>
 | |
| 
 | |
|     <dependencies>
 | |
|         <dependency>
 | |
|             <groupId>io.reactivex.rxjava3</groupId>
 | |
|             <artifactId>rxjava</artifactId>
 | |
|             <version>${rxjava.version}</version>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.assertj</groupId>
 | |
|             <artifactId>assertj-core</artifactId>
 | |
|             <version>${assertj.version}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.junit.platform</groupId>
 | |
|             <artifactId>junit-platform-runner</artifactId>
 | |
|             <version>${junit.platform.version}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|         <dependency>
 | |
|             <groupId>org.awaitility</groupId>
 | |
|             <artifactId>awaitility</artifactId>
 | |
|             <version>${awaitility.version}</version>
 | |
|             <scope>test</scope>
 | |
|         </dependency>
 | |
|     </dependencies>
 | |
|     
 | |
|     <profiles>
 | |
|         <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>
 | |
|         <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>
 | |
|     
 | |
|     <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>
 | |
| 
 | |
|     <properties>
 | |
|         <rxjava.version>3.0.0</rxjava.version>
 | |
|         <!-- testing -->
 | |
|         <assertj.version>3.10.0</assertj.version>
 | |
|         <junit.platform.version>1.2.0</junit.platform.version>
 | |
|         <awaitility.version>4.0.2</awaitility.version>
 | |
|         <maven.compiler.source>1.9</maven.compiler.source>
 | |
|         <maven.compiler.target>1.9</maven.compiler.target>
 | |
|         <maven-jar-plugin.version>3.2.0</maven-jar-plugin.version>
 | |
|     </properties>
 | |
| 
 | |
| </project> |