Explicitly specify source to be 1.6 javap
authorJaroslav Tulach <jtulach@netbeans.org>
Fri, 16 Nov 2012 08:06:48 +0100
branchjavap
changeset 166413d37a24a4d
parent 165 5d02550c4028
child 167 77f7135b6eb1
Explicitly specify source to be 1.6
javaquery/demo-calculator/pom.xml
     1.1 --- a/javaquery/demo-calculator/pom.xml	Fri Nov 16 08:05:55 2012 +0100
     1.2 +++ b/javaquery/demo-calculator/pom.xml	Fri Nov 16 08:06:48 2012 +0100
     1.3 @@ -44,7 +44,16 @@
     1.4                          <argument>${project.build.directory}/classes/org/apidesign/bck2brwsr/mavenhtml/Calculator.xhtml</argument>
     1.5                      </arguments>
     1.6                  </configuration>
     1.7 -            </plugin>            
     1.8 +            </plugin>
     1.9 +         <plugin>
    1.10 +            <groupId>org.apache.maven.plugins</groupId>
    1.11 +            <artifactId>maven-compiler-plugin</artifactId>
    1.12 +            <version>2.3.2</version>
    1.13 +            <configuration>
    1.14 +               <source>1.6</source>
    1.15 +               <target>1.6</target>
    1.16 +            </configuration>
    1.17 +         </plugin>
    1.18        </plugins>
    1.19    </build>
    1.20