Hello,
I can't compile my jsp in Java 1.6.
Here is my pom :
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo.jspc</groupId>
<artifactId>jspc-maven-plugin</artifactId>
<version>2.0-sib-alpha-3</version>
<executions>
<execution>
<id>jspc</id>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.codehaus.mojo.jspc</groupId>
<artifactId>jspc-compiler-tomcat6</artifactId>
<version>2.0-alpha-3</version>
</dependency>
</dependencies>
<configuration>
<source>1.6</source>
<target>1.6</target>
...
</configuration>
</plugin>
In the console, I have the following errors :
8 févr. 2011 15:54:27 org.apache.jasper.compiler.JDTCompiler generateClass
ATTENTION: Unknown source VM 1.6 ignored.
8 févr. 2011 15:54:27 org.apache.jasper.compiler.JDTCompiler generateClass
ATTENTION: Unknown target VM 1.6 ignored.
8 févr. 2011 15:54:28 org.apache.jasper.JspC processFile
INFO: Built File: \jsp\Controleur.jsp
Thanks.
Rémy
--
View this message in context:
http://maven.40175.n5.nabble.com/jspc-maven-plugin-java-1-6-tp3376142p3376142.html
Sent from the Maven - Users mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]