RE: Help building and deploying a war with JSTL in it

2006-08-15 Thread Kenneth Litwak
Oops. Sorry for sending a file to the list.  

Ken

-Original Message-
From: Kenneth Litwak [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, August 15, 2006 4:47 PM
To: Maven Users List
Subject: RE: Help building and deploying a war with JSTL in it

Hi Ben,

  Thanks for your suggestions. Here's my file.  I'm not familiar with
the term POM that everyone else seems to be using but this is the xml
file with dependencies in it.  Thanks.

Ken

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of
ben short
Sent: Tuesday, August 15, 2006 3:23 PM
To: Maven Users List
Subject: Re: Help building and deploying a war with JSTL in it

Hi Ken,

I have the following dependency im my pom...


taglibs
c
1.1.2
compile
tld


And i add the following to my jsp pages...

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; %>

Maven takes care of the rest form me.

In the war file under WEB-INF i have a tdl directory that has the
c-1.1.2.tld file in it.

Maybe supply your pom and I might beable to help you further.

Ben




On 8/15/06, Kenneth Litwak <[EMAIL PROTECTED]> wrote:
> Hi,
>
>   I have a web app built with Maven.  I'm not the maven expert here,
but
> he's out of the office for several days. He set things up to use
> multiple configurations.  The "local" one I use for my own unit
testing
> is doing fine but one for our main test server is not.  When I try to
> run a war, I get a jasper exception from tomcat because the URI for
> jstl/core cannot be found.  My repository has a JSTL directory, with
> both the jstl and jstl-standard jars in it.  My project.xml has a
> dependency for jstl.  The jstl jar, but NOT the jstl-standard jar
shows
> up in the WEB-INF/lib directory after I build the war.  What do I need
> to check or change to make this work? Thanks.
>
> Ken
>
>
>
>  Kenneth D. Litwak
> Software Engineer III
> IMT
> Azusa Pacific University
> 901 E. Alosta
> Azusa, CA 91702
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

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


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



RE: Help building and deploying a war with JSTL in it

2006-08-15 Thread Kenneth Litwak
Hi Ben,

  Thanks for your suggestions. Here's my file.  I'm not familiar with
the term POM that everyone else seems to be using but this is the xml
file with dependencies in it.  Thanks.

Ken

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of
ben short
Sent: Tuesday, August 15, 2006 3:23 PM
To: Maven Users List
Subject: Re: Help building and deploying a war with JSTL in it

Hi Ken,

I have the following dependency im my pom...


taglibs
c
1.1.2
compile
tld


And i add the following to my jsp pages...

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; %>

Maven takes care of the rest form me.

In the war file under WEB-INF i have a tdl directory that has the
c-1.1.2.tld file in it.

Maybe supply your pom and I might beable to help you further.

Ben




On 8/15/06, Kenneth Litwak <[EMAIL PROTECTED]> wrote:
> Hi,
>
>   I have a web app built with Maven.  I'm not the maven expert here,
but
> he's out of the office for several days. He set things up to use
> multiple configurations.  The "local" one I use for my own unit
testing
> is doing fine but one for our main test server is not.  When I try to
> run a war, I get a jasper exception from tomcat because the URI for
> jstl/core cannot be found.  My repository has a JSTL directory, with
> both the jstl and jstl-standard jars in it.  My project.xml has a
> dependency for jstl.  The jstl jar, but NOT the jstl-standard jar
shows
> up in the WEB-INF/lib directory after I build the war.  What do I need
> to check or change to make this work? Thanks.
>
> Ken
>
>
>
>  Kenneth D. Litwak
> Software Engineer III
> IMT
> Azusa Pacific University
> 901 E. Alosta
> Azusa, CA 91702
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

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





  
  3

  

  student-schedule

  Graduate Student Schedule

  studentSchedule

  0.1

  

  
Azusa Pacific University


  

  
Project Description
  
  
This is the Project Description
  

  

  http://devel.apu.edu/StudentSchedule/
  https://devel.apu.edu:8000/jira/
  devel.apu.edu

  

  

  

  

  

  

  junit
  3.8.1


  log4j
  log4j
  1.2.8
  
	true
  


  servletapi
  2.3


  casclient
  2.0.10
  
true
  



  apu-db
  0.2
  
true
  


  commons-dbcp
  commons-dbcp
  1.2.1
  
  


  commons-pool
  commons-pool
  1.2
  
  


  ifxjdbc
  2.21.JC4
  
true
  


  postgresql
  postgresql
  7.4-jdbc3
  
true
  



  apu-util
  latest
  
true
  


  jldap
  2004.05.18
  
true
  




  apu-registration
  2.1
  
true
  


  apu-ifas
  0.1.4
  
true
  


  jakarta-oro
  2.0.7
  
true
  



  apu-academics
  3.0.B1
  
true
  


  apu-monitor
  0.1.1
  
true
  


  mx4j
  2.1.0
  
  
true
  


  jstl
  1.1.2
  
true
  


  javamail
  1.3.1
  
true
  


  activation
  1.0.2
  
true
  

  

  

  

[EMAIL PROTECTED]
src/java
src/junit


 

  
**/Test*.java
  
  

  ${maven.conf.dir}
  true
  
**/*.properties
**/*.xml
  

  





  
${maven.conf.dir}
true

  **/*.properties
  **/*.xml

  


  


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

Re: Help building and deploying a war with JSTL in it

2006-08-15 Thread ben short

Hi Ken,

I have the following dependency im my pom...


   taglibs
   c
   1.1.2
   compile
   tld
   

And i add the following to my jsp pages...

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"; %>

Maven takes care of the rest form me.

In the war file under WEB-INF i have a tdl directory that has the
c-1.1.2.tld file in it.

Maybe supply your pom and I might beable to help you further.

Ben




On 8/15/06, Kenneth Litwak <[EMAIL PROTECTED]> wrote:

Hi,

  I have a web app built with Maven.  I'm not the maven expert here, but
he's out of the office for several days. He set things up to use
multiple configurations.  The "local" one I use for my own unit testing
is doing fine but one for our main test server is not.  When I try to
run a war, I get a jasper exception from tomcat because the URI for
jstl/core cannot be found.  My repository has a JSTL directory, with
both the jstl and jstl-standard jars in it.  My project.xml has a
dependency for jstl.  The jstl jar, but NOT the jstl-standard jar shows
up in the WEB-INF/lib directory after I build the war.  What do I need
to check or change to make this work? Thanks.

Ken



 Kenneth D. Litwak
Software Engineer III
IMT
Azusa Pacific University
901 E. Alosta
Azusa, CA 91702


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




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