1. <tfoot id='9cdFI'></tfoot>
          <bdo id='9cdFI'></bdo><ul id='9cdFI'></ul>

        <small id='9cdFI'></small><noframes id='9cdFI'>

      2. <legend id='9cdFI'><style id='9cdFI'><dir id='9cdFI'><q id='9cdFI'></q></dir></style></legend>

        <i id='9cdFI'><tr id='9cdFI'><dt id='9cdFI'><q id='9cdFI'><span id='9cdFI'><b id='9cdFI'><form id='9cdFI'><ins id='9cdFI'></ins><ul id='9cdFI'></ul><sub id='9cdFI'></sub></form><legend id='9cdFI'></legend><bdo id='9cdFI'><pre id='9cdFI'><center id='9cdFI'></center></pre></bdo></b><th id='9cdFI'></th></span></q></dt></tr></i><div id='9cdFI'><tfoot id='9cdFI'></tfoot><dl id='9cdFI'><fieldset id='9cdFI'></fieldset></dl></div>

        Maven:在不同的源代码级别上编译和测试

        时间:2023-10-01

          • <tfoot id='B9Dg2'></tfoot>

            1. <legend id='B9Dg2'><style id='B9Dg2'><dir id='B9Dg2'><q id='B9Dg2'></q></dir></style></legend>

              <small id='B9Dg2'></small><noframes id='B9Dg2'>

                <i id='B9Dg2'><tr id='B9Dg2'><dt id='B9Dg2'><q id='B9Dg2'><span id='B9Dg2'><b id='B9Dg2'><form id='B9Dg2'><ins id='B9Dg2'></ins><ul id='B9Dg2'></ul><sub id='B9Dg2'></sub></form><legend id='B9Dg2'></legend><bdo id='B9Dg2'><pre id='B9Dg2'><center id='B9Dg2'></center></pre></bdo></b><th id='B9Dg2'></th></span></q></dt></tr></i><div id='B9Dg2'><tfoot id='B9Dg2'></tfoot><dl id='B9Dg2'><fieldset id='B9Dg2'></fieldset></dl></div>
                  <tbody id='B9Dg2'></tbody>
                  <bdo id='B9Dg2'></bdo><ul id='B9Dg2'></ul>
                  本文介绍了Maven:在不同的源代码级别上编译和测试的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我目前正在开发一个将在嵌入式设备上运行的项目.该设备运行 Java ME JRE(相当于 Java 1.4).

                  I am currently working on a project which will run on an embedded device. The device runs a Java ME JRE (comparable to Java 1.4).

                  因为这个 maven 被配置为编译为 source &目标等级 1.4.

                  Because of this maven is configured to compile for source & target level 1.4.

                  是否可以在不同的源/目标级别上运行 Maven 测试阶段?因为这样我可以使用 Mockito 进行单元测试.

                  Is it possible to run the maven test phase on a different source/target level? Because this way I could use Mockito for unit-testing.

                  推荐答案

                  编译和testCompile maven 编译器插件 的目标.您可以通过在 pom 中定义属性来更改设置:

                  The source and target versions can be set separately for the compile and testCompile goals of the maven compiler plugin. You can change the settings either by defining properties in your pom:

                  <properties>
                      <maven.compiler.source>1.4</maven.compiler.source>
                      <maven.compiler.target>1.4</maven.compiler.target>
                      <maven.compiler.testSource>1.5</maven.compiler.testSource>
                      <maven.compiler.testTarget>1.5</maven.compiler.testTarget>
                  </properties>
                  

                  或者通过编译器插件的显式配置:

                  Or by explicit configuration of the compiler plugin:

                  <plugin>
                      <groupId>org.apache.maven.plugins</groupId>
                      <artifactId>maven-compiler-plugin</artifactId>
                      <version>2.4</version>
                      <configuration>
                          <source>1.4</source>
                          <target>1.4</target>
                          <testSource>1.5</testSource>
                          <testTarget>1.5</testTarget>
                      </configuration>
                  </plugin>
                  

                  这篇关于Maven:在不同的源代码级别上编译和测试的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:使用 Mockito 在另一个类中模拟一个类方法 下一篇:不推荐使用 MockitoJUnitRunner

                  相关文章

                  最新文章

                      <legend id='9vJ4c'><style id='9vJ4c'><dir id='9vJ4c'><q id='9vJ4c'></q></dir></style></legend>

                      <small id='9vJ4c'></small><noframes id='9vJ4c'>

                      <tfoot id='9vJ4c'></tfoot>
                        <bdo id='9vJ4c'></bdo><ul id='9vJ4c'></ul>
                    1. <i id='9vJ4c'><tr id='9vJ4c'><dt id='9vJ4c'><q id='9vJ4c'><span id='9vJ4c'><b id='9vJ4c'><form id='9vJ4c'><ins id='9vJ4c'></ins><ul id='9vJ4c'></ul><sub id='9vJ4c'></sub></form><legend id='9vJ4c'></legend><bdo id='9vJ4c'><pre id='9vJ4c'><center id='9vJ4c'></center></pre></bdo></b><th id='9vJ4c'></th></span></q></dt></tr></i><div id='9vJ4c'><tfoot id='9vJ4c'></tfoot><dl id='9vJ4c'><fieldset id='9vJ4c'></fieldset></dl></div>