Groovy   发布时间:2022-04-12  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了Groovy-Eclipse compiler plugin for Maven大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

Groovy-Eclipse provides a compiler plugin for Maven. Using the compiler plugin,it is possible to compile your maven projects using the Groovy-Eclipse compiler.

@H_772_50@

The most recent version of the Groovy-Eclipse-Compiler plugin for maven is 2.6.0-01.

If necessary,2.6.1-01-SNAPSHOT versions will be available from *http://nexus.codehaus.org/snapshots/*.

How to use the compiler plugin---SetTing up the POM

In your plugin section,you must change the compiler used by the maven-compiler-plugin. Like the @L_772_12@,the maven-compiler-plugin does not actually compile,but rather delegates the compilation to a different artifact (in our case,the groovy-eclipse-batch artifact):

@H_607_75@
t;build>
...
<plugins>
  <plugin>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>2.3.2</version>
    <configuration>
      <compilerId>groovy-eclipse-compiler</compilerId>
      <verbose>true</verbose>
    </configuration>
    <dependencies>
      <dependency>
        <groupId>org.codehaus.groovy</groupId>
        <artifactId>groovy-eclipse-compiler</artifactId>
        <version>2.6.0-01</version>
      </dependency>
    </dependencies>
  </plugin>
  ...
</plugins>
</build>

By default,this will use Groovy 1.8.4 to compile your code. If you would prefer to use 1.7.10,then add another dependency to the maven-compiler-plugin:

@H_607_75@
t;dependency>
  <groupId>org.codehaus.groovy</groupId>
  <artifactId>groovy-eclipse-batch</artifactId>
  <version>1.7.10-06</version>
</dependency>

This will allow Groovy files to be compiled. The groovy-eclipse-compiler recognizes all setTings supported by the maven-compiler-plugin.

Note that the groovy-eclipse-compiler and groovy-eclipse-batch artifacts are available in Maven-central,so there is no need to explicitly declare any extra repositories.

SetTing up the source folders

There are several ways to set up your maven project to recognize Groovy source files

Do nothing

The simplest way to set up your source folders is to do nothing at all: add all of your Groovy files to src/main/java and src/test/java. This requires absolutely no extra configuration and is easy to implement. However,this is not a standard maven approach to setTing up your project. If you require a more standard maven approach,then it is possible to put your Groovy files in src/main/groovy and src/test/groovy and you Java files in src/main/java and src/test/java. There are several ways of doing this.

Do almost nothing

If there is at least one file (Java or not) in src/main/java,then all files in src/main/groovy will be found. If,however,src/main/java is empty,then src/main/groovy will be ignored. You can get around this by placing an empty file in src/main/java just so that src/main/groovy will be recognized. The same is true for src/test/java and src/test/groovy. This is actually a workaround for GRECLIPSE-1221.

Use the groovy-eclipse-compiler mojo for configuring source folders

(You only need this approach if your project has an empty src/main/java or src/test/java.)

If your project has no Java files and you don't want to add an empty file in src/main/java,then you can configure source files by referencing the groovy-eclipse-compiler mojo. Just add this to the plugins section of your pom:

@H_607_75@
t;build>
  ...
  <plugin>
    <groupId>org.codehaus.groovy</groupId>
    <artifactId>groovy-eclipse-compiler</artifactId>
    <version>2.6.0-01-SNAPSHOT</version>
    <extensions>true</extensions>
  </plugin>
  ...
</build>

The <extensions>true</extensions> section is important because this redefines the default lifecycle of your project so that an extra phase is added. This phase has an extra goal attached to it that adds the two Groovy source folders.

Use the build-Helper-maven-plugin

(You only need this approach if your project has an empty src/main/java or src/test/java.)

The build-Helper-maven-plugin allows you to do things like adding extra source folders to your project without needing to redefine the default lifecycle. You need to add this configuration to your build plugin section:

@H_607_75@
t;build>
  ...
  <plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>build-Helper-maven-plugin</artifactId>
    <version>1.5</version>
    <EXECUTIONS>
      <execution>
        <id>add-source</id>
        <phase>generate-sources</phase>
        <goals>
          <goal>add-source</goal>
        </goals>
        <configuration>
          <sources>
            <source>src/main/groovy</source>
          </sources> 
        </configuration>
      </execution>
      <execution>
        <id>add-test-source</id>
        <phase>generate-test-sources</phase>
        <goals>
          <goal>add-test-source</goal>
        </goals>
        <configuration>
          <sources>
            <source>src/test/groovy</source>
          </sources>
        </configuration>
      </execution>    
    </EXECUTIONS>
  </plugin>
  ...
</build>

The benefit of using this approach is that you do not need to make any changes to the default lifecycle. The downside is,of course,that you need 31 lines of configuration to do this!

Sample project and source code

There is an archetype available for this project. You can use it through a command like this:

@H_607_75@
n archetype:generate \
    -DarchetypeGroupId=org.codehaus.groovy \
    -DarchetypeArtifactId=groovy-eclipse-quickstart \
    -DarchetypeVersion=2.5.2-01 \
    -DgroupId=foo \
    -DartifactId=bar \
    -Dversion=1 \
    -DinteractiveMode=false \
    -DarchetypeRepository=https://nexus.codehaus.org/content/repositories/snapshots/

A sample project using the compiler plugin as well as the source code for the plugin itself are available from the Codehaus.org subversion repository:

@H_772_50@

The SVN repository URL is:

https://svn.codehaus.org/groovy/eclipse/trunk/extras

There are several projects in the repository:

  • groovy-eclipse-compiler : the compiler plugin itself (an m2eclipse project).
  • groovy-eclipse-batch-builder : a set of ant scripts and configuration files used to build the groovy-eclipse-batch artifact. This artifact is an amalgamation of all jars required for compiling Groovy and Java code in Eclipse,including ecj (the Eclipse compiler for Java),the non-UI components of Groovy-Eclipse,the Groovy jars,and varIoUs required Eclipse bundles.
  • groovy-eclipse-maven-tests : a sample project that uses the compiler plugin (an m2eclipse project).
  • org.codehaus.groovy.m2eclipse : an Eclipse plugin that provides integration between Groovy-Eclipse and m2eclipse (the Maven tooling for EclipsE).
  • Feature org.codehaus.groovy.m2eclipse : an Eclipse feature that is required for building and releasing the org.codehaus.groovy.m2eclipse plugin.

The sample project and archetype is not maintained as well as we would like. Some community Help with this would be greatly appreciated. Please see GRECLIPSE-1285.

Why another Groovy compiler for Maven? what about GMaven?

There are several benefits that the compiler plugin provides over GMaven,but at the same time it has a few limitations. First,the benefits:

  1. The compiler plugin does not require the creation of Java stubs so that your Groovy files can compile against Java files. This will prevent some arcane compile errors from appearing.
  2. The Groovy-Eclipse compiler is the same inside Eclipse and inside Maven,and so configuration across the two platforms can be simplified.
  3. The compiler plugin is a standard compiler plugin for Maven. It therefore follows all allows all the same standard configuration that the Javac compiler plugin uses. This makes it simpler to introduce Groovy into an exisTing Maven project. All you need to do is change the compiler plugin that the pom references.

There are some limitations:

  1. GroovyDoc tool is not supported because the compiler plugin does not produce stubs.
  2. Groovy Mojos are not supported.
  3. Groovy scripts cAnnot be executed in your poms.
  4. Groovy compiler options are not passed through to the compiler.
  5. The defaultScriptExtension compiler option is not supported.

Whether or not the Groovy-Eclipse compiler plugin for Maven is appropriate for your project will depend on your requirements.

Project Lombok

Project Lombok is compatible with the groovy-eclipse-compiler.  There is some extra configuration that you need to do.  The lombok jar needs to be added to both the build and compile dependencies sections:

@H_607_75@
t;dependency>
  <groupId>org.projectlombok</groupId>
  <artifactId>lombok</artifactId>
  <version>0.10.4</version>
</dependency>

Also,the following configuration needs to be added to the maven-compiler-plugin configuration:

@H_607_75@
t;configuration>
  <compilerId>groovy-eclipse-compiler</compilerId>
  <verbose>true</verbose>
  <compilerArguments>
    <javaAgentClass>lombok.core.Agent</javaAgentClass>
  </compilerArguments>
  <fork>true</fork>
</configuration>

Groovy-Eclipse configurator for m2Eclipse

If you are going to be working with your maven project inside of Eclipse,it is strongly recommended that you use m2eclipse. And to use your Groovy projects with m2eclipse,you will need to install the Groovy-Eclipse configurator for m2eclipse. This feature is available any of the Groovy-Eclipse update sites (e.g.,nightly,milestone,or releasE). Just go to your Eclipse update manager and add the Groovy-Eclipse update sites (if you haven't done so already). SELEct the Groovy-Eclipse M2E integration.

Release update site for Eclipse 3.7:

http://dist.springsource.org/release/GRECLIPSE/e3.7/

and 3.6:

http://dist.springsource.org/release/GRECLIPSE/e3.6/

Nightly update site for Eclipse 3.7:

http://dist.codehaus.org/groovy/distributions/greclipse/snapshot/e3.7/

and 3.6:

http://dist.codehaus.org/groovy/distributions/greclipse/snapshot/e3.6/

大佬总结

以上是大佬教程为你收集整理的Groovy-Eclipse compiler plugin for Maven全部内容,希望文章能够帮你解决Groovy-Eclipse compiler plugin for Maven所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签:compilereclipsegroovymavenplugin
猜你在找的Groovy相关文章
其他相关热搜词更多
phpJavaPython程序员load如何string使用参数jquery开发安装listlinuxiosandroid工具javascriptcap