Created
July 18, 2013 14:38
-
-
Save bugs84/6029873 to your computer and use it in GitHub Desktop.
Groovy - kompilace Mavenem pomoci groovy-eclipse-compiler pluginu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<version>3.0</version> | |
<configuration> | |
<source>1.6</source> | |
<target>1.6</target> | |
<compilerId>groovy-eclipse-compiler</compilerId> | |
<verbose>true</verbose> | |
<extensions>true</extensions> | |
</configuration> | |
<dependencies> | |
<dependency> | |
<groupId>org.codehaus.groovy</groupId> | |
<artifactId>groovy-eclipse-compiler</artifactId> | |
<version>2.7.0-01</version> | |
</dependency> | |
</dependencies> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-eclipse-plugin</artifactId> | |
<version>2.9</version> | |
<configuration> | |
<additionalProjectnatures> | |
<projectnature>org.eclipse.jdt.groovy.core.groovyNature</projectnature> | |
</additionalProjectnatures> | |
<sourceIncludes> | |
<sourceInclude>**/*.groovy</sourceInclude> | |
</sourceIncludes> | |
</configuration> | |
</plugin> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment