Skip to content

Instantly share code, notes, and snippets.

@shin1ogawa
Created January 31, 2011 07:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save shin1ogawa/803743 to your computer and use it in GitHub Desktop.
Save shin1ogawa/803743 to your computer and use it in GitHub Desktop.
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<encoding>utf-8</encoding>
<source>1.6</source>
<target>1.6</target>
<includes>
<include>**/model/**</include>
<include>**/someutils/**</include>
</includes>
</configuration>
<executions>
<execution>
<id>no-apt</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<excludes>
<exclude>**/model/**</exclude>
<exclude>**/someutils/**</exclude>
</excludes>
<compilerArgument>-proc:none</compilerArgument>
</configuration>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment