Groovyc和Java 12预览功能

时间:2019-03-25 12:14:18

标签: java groovy java-12 gmavenplus

我正在尝试编译一个具有常规测试功能的项目。 该项目具有Java 12的--enable-preview

我正在使用gmavenplus-plugin来做到这一点:

        <plugin>                                                            
            <groupId>org.codehaus.gmavenplus</groupId>                      
            <artifactId>gmavenplus-plugin</artifactId>                      
            <version>1.6.3</version>                                        
            <configuration>                                                 
                <targetBytecode>${java.version}</targetBytecode>            
                <testSources>                                               
                    <testSource>                                            
                        <directory>${testSourceDirectory}</directory>       
                        <includes>                                          
                            <include>**/*.groovy</include>                  
                        </includes>                                         
                    </testSource>                                           
                </testSources>                                              
            </configuration>                                                
            <executions>                                                    
                <execution>                                                 
                    <goals>                                                 
                        <goal>compileTests</goal>                                                                                                                                                                
                    </goals>                                                
                </execution>                                                
            </executions>                                                   
        </plugin>   

我有--enable-preview用于Maven编译器和surefire / failsafe(使用argLine)。如果禁用groovy插件(和测试),一切正常。

但是当我启用它时,它会失败并显示:

Failed to execute goal org.codehaus.gmavenplus:gmavenplus-plugin:1.6.3:compileTests (default) on project apikey-manager-api: Error occurred while calling a method on a Groovy class from classpath.: InvocationTargetException: Preview features are not enabled for com/acme/config/EndToEndTest (class file version 56.65535). Try running with '--enable-preview' -> [Help 1]

我没有看到可以传递给此插件以启用预览功能的任何选项。它使用javac吗?还是应该在groovyc中使用这种选项?

1 个答案:

答案 0 :(得分:1)

随着Groovy(GROOVY-9073)和GMavenPlus(#125)的变化,Groovy 2.5.7+ / 3.0.0-beta-版本的GMavenPlus 1.7.1现在可用1 +。