Skip to content

Instantly share code, notes, and snippets.

@satifanie
Created March 14, 2017 03:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save satifanie/82ed3569de67e0b772cfb0b126439b43 to your computer and use it in GitHub Desktop.
Save satifanie/82ed3569de67e0b772cfb0b126439b43 to your computer and use it in GitHub Desktop.
maven-compile-eclipse
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<encoding>UTF-8</encoding>
<compilerId>eclipse</compilerId>
</configuration>
<dependencies>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-compiler-eclipse</artifactId>
<version>2.8.1</version>
</dependency>
</dependencies>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment