配置Maven为不同的J2SE版本使用不同的JDK?

时间:2011-01-18 12:24:49

标签: maven-2

我想配置Maven2使用sun-java6-jdk构建Java SE 1.6模块,并使用openjdk-7构建Java SE 1.7模块。有可能吗?

然后,

Maven2应该自动选择正确的JDK来在一个命令中构建不同的模块。

例如,它应该是

$ mvn package

而不是

$ cd module1
$ update-alternatives ... jdk6 ...
$ mvn package
...
$ cd module2
$ update-alternatives ... jdk7 ...
$ mvn package

P.S。这与pom.xml文件无关,pom.xml文件已设置maven-compiler-plugin,不同模块的<source><target>值不同。如果我选择使用openjdk-7,Maven2将生成1.6版本的类文件,但是使用openjdk-7而不是sun-java6-jdk。问题是如何配置Java SE配置文件。

3 个答案:

答案 0 :(得分:84)

我们通过明确地在编译插件的配置中指定javac来解决这个问题(将JAVA_HOME_6和JAVA_HOME_7定义为环境变量):

和Java 6模块

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <configuration>
        <source>1.6</source>
        <target>1.6</target>
        <showDeprecation>true</showDeprecation>
        <showWarnings>true</showWarnings>
        <executable>${env.JAVA_HOME_6}/bin/javac</executable>
        <fork>true</fork>
    </configuration>
</plugin>

和Java 7模块

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <configuration>
        <source>1.7</source>
        <target>1.7</target>
        <showDeprecation>true</showDeprecation>
        <showWarnings>true</showWarnings>
        <executable>${env.JAVA_HOME_7}/bin/javac</executable>
        <fork>true</fork>
    </configuration>
</plugin>

答案 1 :(得分:5)

您可以将maven-compiler-plugin告诉Compile Sources Using A Different JDK

<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-compiler-plugin</artifactId>
  <version>2.3.2</version>
  <configuration>
    <executable><!-- path-to-javac --></executable>
  </configuration>
</plugin>

答案 2 :(得分:1)

从@ lweller的答案的众多评价中我猜它很奇怪,但是1.7sourcetarget maven仍然尝试使用java进行编译1.5。而只是7 ...就像这样:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <configuration>
        <source>7</source> <!-- see here, says only 7, not 1.7 -->
        <target>7</target> <!-- here as well -->
        <showDeprecation>true</showDeprecation>
        <showWarnings>true</showWarnings>
        <executable>${env.JAVA_HOME_7}/bin/javac</executable>
        <fork>true</fork>
    </configuration>
</plugin>

maven-compiler-plugin版本2.5.1。