Browse Source

Added plugin to fix the build process. Maven thought I was using 1.3 by default.

Mike Megally 12 years ago
parent
commit
5c81383f0c
1 changed files with 10 additions and 1 deletions
  1. 10 1
      dropwizard/pom.xml

+ 10 - 1
dropwizard/pom.xml

@@ -28,6 +28,15 @@
 
     <build>
         <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <version>2.3.2</version>
+                <configuration>
+                    <source>1.7</source>
+                    <target>1.7</target>
+                </configuration>
+            </plugin>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-jar-plugin</artifactId>
@@ -76,4 +85,4 @@
             </plugin>
         </plugins>
     </build>
-</project>
+</project>