Hi all,

I m currently trying to precompile my jsps for weblogic 8.1. I use the weblogic-maven-plugin from mojo with Maven 2.

This my pom.xml file  :
...
<build>
      <finalName>webmedialbum</finalName>
      <plugins>                              <plugin>
              <groupId>org.codehaus.mojo</groupId>
              <artifactId>weblogic-maven-plugin</artifactId>
              <version>2.8.0-SNAPSHOT</version>
              <configuration>
<objectPath>${project.build.directory}/${build.finalName}.${project.packaging}</objectPath>
                  <verbose>true</verbose>
                  <debugging>true</debugging>
                  <nowarnings>false</nowarnings>
                  <lineNumbers>true</lineNumbers>
              </configuration>
              <executions>
                  <execution>
                  <phase>package</phase>
                  <goals>
                      <goal>appc</goal>
                  </goals>
                  </execution>
              </executions>
              </plugin>                  </plugins>
  </build>
...


But I m always getting this error but the ListIteratorTagInfo extends TagExtraInfo !!!

[jspc] resolved taglib uri 'page' to taglib-location /tlds/util/page.tld:
Error: [jspc]: 1 file(s) failed:
/jsp/index.jsp
[J2EE:160119]Appc is unable to process the file 'C:\project\dev\target\webalbum.war'. The following error occurred:

Translation of /jsp/index.jsp failed: (line 12): Error in using tag library uri='page' prefix='page': For tag 'listiterate', extra info class 'com.project.web.util.taglibs.util.ListIteratorTagInfo' does not extend javax.servlet.jsp.tagext.TagExtraInfo

      at weblogic.servlet.jsp.JspcInvoker.compile(JspcInvoker.java:173)
      at weblogic.appc.compileWAR(appc.java:859)
     ...


Thanks in advance for your help,
ML



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to