Example of how to use both JDK 7 and JDK 8 in one build. -- Reference

Source: Internet
Author: User
Tags maven compiler plugin
JDK 8 released

Most of us won't be able to use/deploy JDK 8 in production for a looong time. But that shouldn't stop us from using it, right?

It shoshould be possible to sneak in JDK 8 in the back way, the same way we snuck in groovy and other libraries we wanted to use.

The test suite to the rescue

The Maven compiler plugin run in two separate lifecycles, compile and testcompile. Those can be configured separately.

The Maven compiler even comes with support out of the box to separate them.

If you're lucky and don't have some elaborate parent pom setup that sets up most of the Plugins for you, the only thing you need to do is add the following to your pom:

   <properties>      <maven.compiler.target>1.7</maven.compiler.target>      <maven.compiler.source>1.7</maven.compiler.source>      <maven.compiler.testTarget>1.8</maven.compiler.testTarget>      <maven.compiler.testSource>1.8</maven.compiler.testSource>   </properties>

Now your src/main/Java is compiled with target 1.7, and src/main/test compiled with target 1.8.

If you happen to have a parent pom that dominates your world, you might have to override the configuration a bit deeper. something similar to this shoshould work:

   <build>      <plugins>...         <plugin>            <groupId>org.apache.maven.plugins</groupId>            <artifactId>maven-compiler-plugin</artifactId>            <version>3.1</version>            <executions>               <execution>                  <id>default-compile</id>                  <configuration>                     <showDeprecation>true</showDeprecation>                     <showWarnings>true</showWarnings>                     <compilerArguments>                        <source>${maven.compiler.target}</source>                        <target>${maven.compiler.source}</target>                     </compilerArguments>                  </configuration>               </execution>               <execution>                  <id>default-testCompile</id>                  <configuration>                     <showDeprecation>true</showDeprecation>                     <showWarnings>true</showWarnings>                     <compilerArguments>                        <source>${maven.compiler.testTarget}</source>                        <target>${maven.compiler.testSource}</target>                     </compilerArguments>                  </configuration>               </execution>            </executions>         </plugin>...      </plugins>   </build>

To be able to test your project you're now forced to use JDK 8. We probably want to tell the other developers that by enforcing the same level as our tests.

Under the build section add:

         <plugin>            <groupId>org.apache.maven.plugins</groupId>            <artifactId>maven-enforcer-plugin</artifactId>            <version>1.3.1</version>            <executions>               <execution>                  <id>enforce-java</id>                  <goals>                     <goal>enforce</goal>                  </goals>                  <configuration>                     <rules>                        <requireJavaVersion>                           <version>${maven.compiler.testTarget}</version>                        </requireJavaVersion>                     </rules>                  </configuration>               </execution>            </executions>         </plugin>

With that mind, even tho we compile with target 1.7, the compiler doesn't know the difference between the API's available in 1.7 and 1.8. which means it will still compile just fine if your src/main/Java classes contain CALS to APIs new in 1.8. we woshould want to avoid JDK 8 sneaking into production, so we need to setup a API Verifier that fail the build if non 1.7 API's are found by adding this to our build section:

         <plugin>            <groupId>org.codehaus.mojo</groupId>            <artifactId>animal-sniffer-maven-plugin</artifactId>            <version>1.7</version>            <executions>               <execution>                  <id>signature-check</id>                  <phase>verify</phase>                  <goals>                     <goal>check</goal>                  </goals>               </execution>            </executions>            <configuration>               <signature>                  <groupId>org.codehaus.mojo.signature</groupId>                  <artifactId>java17</artifactId>                  <version>1.0</version>               </signature>            </configuration>         </plugin>

With the project setup, we can now enjoy JDK 8 in our test suite.

Our boring JDK 1.7 Source:

import java.util.Arrays;import java.util.List;import java.util.concurrent.Callable;public class DoSomething {   public String execute(Callable<String> call) throws Exception {      return call.call();   }   public List<String> list() {      return Arrays.asList("a", "b", "c", "d");   }}

And the cool new JDK 8 enabled test suite:

import java.util.Optional;import org.junit.Assert;import org.junit.Test;public class DoSomethingTestClase {   public static final String TEST = "ABCD";   @Test   public void shouldReturnString() throws Exception {      String result = new DoSomething().execute(()-> TEST);      Assert.assertEquals(TEST, result);   }   @Test   public void shouldFilterResult() throws Exception {      Optional<String> result = new DoSomething().list()         .stream()            .map((a)-> a.toUpperCase())            .reduce((a, b)->a+b);      Assert.assertTrue(result.isPresent());      Assert.assertEquals(TEST, result.get());   }}

Enjoy!

Reference from: https://gist.github.com/aslakknutsen/9648594

Example of how to use both JDK 7 and JDK 8 in one build. -- Reference

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.