Hi All,
I have an application that run's on JDK 1.3.
In the POM's I have the following setting
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerVersion>1.3</compilerVersion>
<target>1.3</target>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
</configuration>
<inherited>true</inherited>
</plugin>
Is there anything else I need to do to make it work with JDK 1.3? If not,
why will I get an error,
[3/10/06 11:24:10:538 PST] 65795dd9 WebGroup E SRVE0026E: [Servlet
Error]-[java.lang.StringBuffer: method append(
Ljava/lang/StringBuffer;)Ljava/lang/StringBuffer; not found]:
javax.servlet.jsp.JspException: java.lang.String
Buffer: method append(Ljava/lang/StringBuffer;)Ljava/lang/StringBuffer; not
found
at org.apache.struts.taglib.template.InsertTag.doEndTag(
InsertTag.java:164)
at org.apache.jsp._index._jspService(_index.java:344)
at com.ibm.ws.webcontainer.jsp.runtime.HttpJspBase.service(
HttpJspBase.java:89)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
StringBuffer.append(StringBuffer) is JDK 1.4.
Please advice,
Sanjay