Commit 7475f04ed1fffc8a65d118b450f41a9f9fdcdb4b

Authored by Filipe Oliveira
1 parent 229bee9b
Exists in master

Inclui configuração do maven compiler

Showing 1 changed file with 9 additions and 0 deletions   Show diff stats
@@ -62,6 +62,15 @@ @@ -62,6 +62,15 @@
62 </execution> 62 </execution>
63 </executions> 63 </executions>
64 </plugin> 64 </plugin>
  65 + <plugin>
  66 + <groupId>org.apache.maven.plugins</groupId>
  67 + <artifactId>maven-compiler-plugin</artifactId>
  68 + <version>3.1</version>
  69 + <configuration>
  70 + <source>1.8</source>
  71 + <target>1.8</target>
  72 + </configuration>
  73 + </plugin>
65 </plugins> 74 </plugins>
66 </build> 75 </build>
67 76