1

我正在尝试编译一个项目,其中包含一些用 groovy 编写的测试。该项目--enable-preview适用于 Java 12。

我正在使用 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-previewmaven 编译器和 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中吗?

4

1 回答 1

1

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

于 2019-06-06T01:04:08.880 回答