Re: Working with Jakarta taglibs - question

2008-01-14 Thread AsafM

But you are required to specify their .TLD file location, in web.xml:
taglib
taglib-urihttp://java.sun.com/jsp/jstl/xml/taglib-uri
taglib-locationWEB-INF/x.tld/taglib-location
/taglib

The problem here is that it requires you to copy the x.tld file manually
into WEB-INF directory. It you specify a JAR file, it searches for a
specific filename (I think its library.tld).


nicolas de loof-3 wrote:
 
 taglibs don't require to have TLD files extracted from jars as long as you
 use the taglib URI in your JSP %@ taglib % directives. Use maven to get
 jars in your web-inf/lib and all taglibs will be detected at server
 startup.
 
 Nico.
 
 
 2008/1/13, AsafM [EMAIL PROTECTED]:


 Hi All,

 I have a web application we're developing,  using servlets and JSP's on
 JBoss with embedded Tomcat.

 We want to use Jakarta taglib, which comes as a JAR file from maven
 repository (the global one).

 The problem is that using it requires a manual-copy step of the .TLD
 files
 from the META-INF directory in the JAR file to our
 src/main/webapp/WEB-INF
 directory.

 (See instructions in  http://jakarta.apache.org/taglibs/binarydist.html
 instructions for installing Jakara Taglibs )

 Has anyone used Jakarta Taglibs together with maven  and solved this?
 --
 View this message in context:
 http://www.nabble.com/Working-with-Jakarta-taglibs---question-tp14787960s177p14787960.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]


 
 

-- 
View this message in context: 
http://www.nabble.com/Working-with-Jakarta-taglibs---question-tp14787960s177p14797058.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]



Re: Working with Jakarta taglibs - question

2008-01-14 Thread nicolas de loof
The URI is defined by the taglib developers

for example, Struts1 taglibs use :
%@ taglib  uri=http://struts.apache.org/tags-html;  prefix=html %
(@see http://struts.apache.org/1.x/userGuide/configuration.html)

You then don't have to specify anything in your web.xml

The web.xml taglib element is for your application tags, not for tags
imported from packaged libraries.

Nico.

2008/1/13, AsafM [EMAIL PROTECTED]:


 So basically, the URI is chosen arbitrary, as long as it's the same value
 in
 the web.xml and in the %@ taglib% directive?


 nicolas de loof-3 wrote:
 
  taglibs don't require to have TLD files extracted from jars as long as
 you
  use the taglib URI in your JSP %@ taglib % directives. Use maven to
 get
  jars in your web-inf/lib and all taglibs will be detected at server
  startup.
 
  Nico.
 
 
  2008/1/13, AsafM [EMAIL PROTECTED]:
 
 
  Hi All,
 
  I have a web application we're developing,  using servlets and JSP's on
  JBoss with embedded Tomcat.
 
  We want to use Jakarta taglib, which comes as a JAR file from maven
  repository (the global one).
 
  The problem is that using it requires a manual-copy step of the .TLD
  files
  from the META-INF directory in the JAR file to our
  src/main/webapp/WEB-INF
  directory.
 
  (See instructions in  http://jakarta.apache.org/taglibs/binarydist.html
  instructions for installing Jakara Taglibs )
 
  Has anyone used Jakarta Taglibs together with maven  and solved this?
  --
  View this message in context:
 
 http://www.nabble.com/Working-with-Jakarta-taglibs---question-tp14787960s177p14787960.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]
 
 
 
 

 --
 View this message in context:
 http://www.nabble.com/Working-with-Jakarta-taglibs---question-tp14787960s177p14789639.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]




Re: Working with Jakarta taglibs - question

2008-01-14 Thread AsafM

I found the solution, for using Jakarta Taglibs in JBoss/Tomcat with Maven:

1. Place the following dependencies in the pom.xml of your Web Application
project:
dependency
groupIdtaglibs/groupId
artifactIdstandard/artifactId
version1.1.2/version
/dependency

dependency
groupIdtaglibs/groupId
artifactIdx/artifactId
version1.1.2/version
typetld/type
/dependency

  Notice that the 2nd dependency saves you the trouble of extracting the TLD
from the jar file.

2. Maven-War-Plugin, copies the JAR file into WEB-INF/lib and the TLD file
into WEB-INF/tld:
build
plugins
plugin
groupIdorg.apache.maven.plugins/groupId
artifactIdmaven-war-plugin/artifactId
version2.0.2-SNAPSHOT/version
/plugin
/plugins
/build

3. In the web.xml of your web application, place the following lines:
taglib
taglib-urihttp://java.sun.com/jsp/jstl/xml/taglib-uri
taglib-locationtld/x-1.1.2.tld/taglib-location
/taglib

The taglib URI was taken from the uri element in the x-1.1.2.tld file.
the location is relative to WEB-INF directory.

4. Place the following line in the JSP file:
[EMAIL PROTECTED] uri=http://java.sun.com/jsp/jstl/xml; prefix=x %

5. Use the tags defines in the tld with x:tag-name/x:tag-name





AsafM wrote:
 
 But you are required to specify their .TLD file location, in web.xml:
   taglib
   taglib-urihttp://java.sun.com/jsp/jstl/xml/taglib-uri
   taglib-locationWEB-INF/x.tld/taglib-location
   /taglib
 
 The problem here is that it requires you to copy the x.tld file manually
 into WEB-INF directory. It you specify a JAR file, it searches for a
 specific filename (I think its library.tld).
 
 
 nicolas de loof-3 wrote:
 
 taglibs don't require to have TLD files extracted from jars as long as
 you
 use the taglib URI in your JSP %@ taglib % directives. Use maven to get
 jars in your web-inf/lib and all taglibs will be detected at server
 startup.
 
 Nico.
 
 
 2008/1/13, AsafM [EMAIL PROTECTED]:


 Hi All,

 I have a web application we're developing,  using servlets and JSP's on
 JBoss with embedded Tomcat.

 We want to use Jakarta taglib, which comes as a JAR file from maven
 repository (the global one).

 The problem is that using it requires a manual-copy step of the .TLD
 files
 from the META-INF directory in the JAR file to our
 src/main/webapp/WEB-INF
 directory.

 (See instructions in  http://jakarta.apache.org/taglibs/binarydist.html
 instructions for installing Jakara Taglibs )

 Has anyone used Jakarta Taglibs together with maven  and solved this?
 --
 View this message in context:
 http://www.nabble.com/Working-with-Jakarta-taglibs---question-tp14787960s177p14787960.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]


 
 
 
 

-- 
View this message in context: 
http://www.nabble.com/Working-with-Jakarta-taglibs---question-tp14787960s177p14797283.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]



Re: Working with Jakarta taglibs - question

2008-01-14 Thread AsafM

You are correct. I removed the reference from the web.xml and it worked.

To summarize what you said:
1. Place the taglibs jar file in your classpath
2. Use the [EMAIL PROTECTED] uri=...% with the string located in the uri 
element
in the .TLD file of the taglib you wish to use.

Just to verify:
The URI is no really referring to a real resource on the web, it's just
a unique name for the taglib, right?

Thank alot for your help! Saved me a few hours of research!

Asaf

nicolas de loof-3 wrote:
 
 The URI is defined by the taglib developers
 
 for example, Struts1 taglibs use :
 %@ taglib  uri=http://struts.apache.org/tags-html;  prefix=html %
 (@see http://struts.apache.org/1.x/userGuide/configuration.html)
 
 You then don't have to specify anything in your web.xml
 
 The web.xml taglib element is for your application tags, not for tags
 imported from packaged libraries.
 
 Nico.
 
 2008/1/13, AsafM [EMAIL PROTECTED]:


 So basically, the URI is chosen arbitrary, as long as it's the same value
 in
 the web.xml and in the %@ taglib% directive?


 nicolas de loof-3 wrote:
 
  taglibs don't require to have TLD files extracted from jars as long as
 you
  use the taglib URI in your JSP %@ taglib % directives. Use maven to
 get
  jars in your web-inf/lib and all taglibs will be detected at server
  startup.
 
  Nico.
 
 
  2008/1/13, AsafM [EMAIL PROTECTED]:
 
 
  Hi All,
 
  I have a web application we're developing,  using servlets and JSP's
 on
  JBoss with embedded Tomcat.
 
  We want to use Jakarta taglib, which comes as a JAR file from maven
  repository (the global one).
 
  The problem is that using it requires a manual-copy step of the .TLD
  files
  from the META-INF directory in the JAR file to our
  src/main/webapp/WEB-INF
  directory.
 
  (See instructions in 
 http://jakarta.apache.org/taglibs/binarydist.html
  instructions for installing Jakara Taglibs )
 
  Has anyone used Jakarta Taglibs together with maven  and solved this?
  --
  View this message in context:
 
 http://www.nabble.com/Working-with-Jakarta-taglibs---question-tp14787960s177p14787960.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]
 
 
 
 

 --
 View this message in context:
 http://www.nabble.com/Working-with-Jakarta-taglibs---question-tp14787960s177p14789639.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]


 
 

-- 
View this message in context: 
http://www.nabble.com/Working-with-Jakarta-taglibs---question-tp14787960s177p14799205.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]



Re: Working with Jakarta taglibs - question

2008-01-14 Thread nicolas de loof
URI = Uniform Resource Identifier - just an identifier !

2008/1/14, AsafM [EMAIL PROTECTED]:


 You are correct. I removed the reference from the web.xml and it worked.

 To summarize what you said:
 1. Place the taglibs jar file in your classpath
 2. Use the [EMAIL PROTECTED] uri=...% with the string located in the uri
 element
 in the .TLD file of the taglib you wish to use.

 Just to verify:
 The URI is no really referring to a real resource on the web, it's
 just
 a unique name for the taglib, right?

 Thank alot for your help! Saved me a few hours of research!

 Asaf

 nicolas de loof-3 wrote:
 
  The URI is defined by the taglib developers
 
  for example, Struts1 taglibs use :
  %@ taglib  uri=http://struts.apache.org/tags-html;  prefix=html %
  (@see http://struts.apache.org/1.x/userGuide/configuration.html)
 
  You then don't have to specify anything in your web.xml
 
  The web.xml taglib element is for your application tags, not for tags
  imported from packaged libraries.
 
  Nico.
 
  2008/1/13, AsafM [EMAIL PROTECTED]:
 
 
  So basically, the URI is chosen arbitrary, as long as it's the same
 value
  in
  the web.xml and in the %@ taglib% directive?
 
 
  nicolas de loof-3 wrote:
  
   taglibs don't require to have TLD files extracted from jars as long
 as
  you
   use the taglib URI in your JSP %@ taglib % directives. Use maven to
  get
   jars in your web-inf/lib and all taglibs will be detected at server
   startup.
  
   Nico.
  
  
   2008/1/13, AsafM [EMAIL PROTECTED]:
  
  
   Hi All,
  
   I have a web application we're developing,  using servlets and JSP's
  on
   JBoss with embedded Tomcat.
  
   We want to use Jakarta taglib, which comes as a JAR file from maven
   repository (the global one).
  
   The problem is that using it requires a manual-copy step of the .TLD
   files
   from the META-INF directory in the JAR file to our
   src/main/webapp/WEB-INF
   directory.
  
   (See instructions in
  http://jakarta.apache.org/taglibs/binarydist.html
   instructions for installing Jakara Taglibs )
  
   Has anyone used Jakarta Taglibs together with maven  and solved
 this?
   --
   View this message in context:
  
 
 http://www.nabble.com/Working-with-Jakarta-taglibs---question-tp14787960s177p14787960.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]
  
  
  
  
 
  --
  View this message in context:
 
 http://www.nabble.com/Working-with-Jakarta-taglibs---question-tp14787960s177p14789639.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]
 
 
 
 

 --
 View this message in context:
 http://www.nabble.com/Working-with-Jakarta-taglibs---question-tp14787960s177p14799205.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]




Working with Jakarta taglibs - question

2008-01-13 Thread AsafM

Hi All,

I have a web application we're developing,  using servlets and JSP's on
JBoss with embedded Tomcat.

We want to use Jakarta taglib, which comes as a JAR file from maven
repository (the global one).

The problem is that using it requires a manual-copy step of the .TLD files
from the META-INF directory in the JAR file to our src/main/webapp/WEB-INF
directory.

(See instructions in  http://jakarta.apache.org/taglibs/binarydist.html
instructions for installing Jakara Taglibs )

Has anyone used Jakarta Taglibs together with maven  and solved this?
-- 
View this message in context: 
http://www.nabble.com/Working-with-Jakarta-taglibs---question-tp14787960s177p14787960.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]



Re: Working with Jakarta taglibs - question

2008-01-13 Thread nicolas de loof
taglibs don't require to have TLD files extracted from jars as long as you
use the taglib URI in your JSP %@ taglib % directives. Use maven to get
jars in your web-inf/lib and all taglibs will be detected at server startup.

Nico.


2008/1/13, AsafM [EMAIL PROTECTED]:


 Hi All,

 I have a web application we're developing,  using servlets and JSP's on
 JBoss with embedded Tomcat.

 We want to use Jakarta taglib, which comes as a JAR file from maven
 repository (the global one).

 The problem is that using it requires a manual-copy step of the .TLD files
 from the META-INF directory in the JAR file to our src/main/webapp/WEB-INF
 directory.

 (See instructions in  http://jakarta.apache.org/taglibs/binarydist.html
 instructions for installing Jakara Taglibs )

 Has anyone used Jakarta Taglibs together with maven  and solved this?
 --
 View this message in context:
 http://www.nabble.com/Working-with-Jakarta-taglibs---question-tp14787960s177p14787960.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]




Re: Working with Jakarta taglibs - question

2008-01-13 Thread AsafM

So basically, the URI is chosen arbitrary, as long as it's the same value in
the web.xml and in the %@ taglib% directive?
 

nicolas de loof-3 wrote:
 
 taglibs don't require to have TLD files extracted from jars as long as you
 use the taglib URI in your JSP %@ taglib % directives. Use maven to get
 jars in your web-inf/lib and all taglibs will be detected at server
 startup.
 
 Nico.
 
 
 2008/1/13, AsafM [EMAIL PROTECTED]:


 Hi All,

 I have a web application we're developing,  using servlets and JSP's on
 JBoss with embedded Tomcat.

 We want to use Jakarta taglib, which comes as a JAR file from maven
 repository (the global one).

 The problem is that using it requires a manual-copy step of the .TLD
 files
 from the META-INF directory in the JAR file to our
 src/main/webapp/WEB-INF
 directory.

 (See instructions in  http://jakarta.apache.org/taglibs/binarydist.html
 instructions for installing Jakara Taglibs )

 Has anyone used Jakarta Taglibs together with maven  and solved this?
 --
 View this message in context:
 http://www.nabble.com/Working-with-Jakarta-taglibs---question-tp14787960s177p14787960.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]


 
 

-- 
View this message in context: 
http://www.nabble.com/Working-with-Jakarta-taglibs---question-tp14787960s177p14789639.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]



Public maven repos (was Re: jakarta-taglibs)

2004-02-28 Thread Joe Germuska
At 8:00 PM -0500 2/27/04, Mark R. Diggory wrote:
No, we just need to get them up and available in 
/www/www.apache.org/dist/java-repository on minotaur, they'll be 
published onto ibiblio using the rsync Jason's running between the 
two.

Notice: Apache Projects should all be publishing thier jars onto 
java-repository not via requests to ibiblio/JIRA, if you do submit 
such requests they will now be redirected to use java-repository.
I have a couple of questions about public repositories in general. 
One can see from the structure of the iBiblio repository that there 
are ideas of storing more than just JARs there.  Are there any parts 
of Maven that currently use anything besides the JARS?

Also, specific to Apache, I see for most of the repository elements 
that have a licenses directory, the files in there are not 
versioned; however, Apache projects are currently finishing changing 
to the Apache 2.0 license.  Is there anything one should do to keep 
those directories correct?

Just curious...

Joe

--
Joe Germuska
[EMAIL PROTECTED]  
http://blog.germuska.com
  Imagine if every Thursday your shoes exploded if you tied them 
the usual way.  This happens to us all the time with computers, and 
nobody thinks of complaining.
-- Jef Raskin

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


Re: Public maven repos (was Re: jakarta-taglibs)

2004-02-28 Thread Henri Yandell

I believe the war plugin will suck tld's down from the maven repo. I was
looking at the source the other day [I think it was that plugin] and it
had something to pull them down.

It would also be nice if the project.xml files were placed on the maven
repo, which seemed to be suggested at one point by the creation of pom/
directories but I've not seen any deployed as such. Not looked in a bit
though.

This would allow plugins to become recursive and ask for the dependencies
of a dependency etc.

Hen

On Sat, 28 Feb 2004, Joe Germuska wrote:

 At 8:00 PM -0500 2/27/04, Mark R. Diggory wrote:
 No, we just need to get them up and available in
 /www/www.apache.org/dist/java-repository on minotaur, they'll be
 published onto ibiblio using the rsync Jason's running between the
 two.
 
 Notice: Apache Projects should all be publishing thier jars onto
 java-repository not via requests to ibiblio/JIRA, if you do submit
 such requests they will now be redirected to use java-repository.

 I have a couple of questions about public repositories in general.
 One can see from the structure of the iBiblio repository that there
 are ideas of storing more than just JARs there.  Are there any parts
 of Maven that currently use anything besides the JARS?


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



Re: Public maven repos (was Re: jakarta-taglibs)

2004-02-28 Thread Tim Chen
project.xml files *are* places in the maven repo
They are renamed to project.pom
I think the dependencies of a dependency is something being worked on :)
-Tim
Henri Yandell wrote:

I believe the war plugin will suck tld's down from the maven repo. I was
looking at the source the other day [I think it was that plugin] and it
had something to pull them down.
It would also be nice if the project.xml files were placed on the maven
repo, which seemed to be suggested at one point by the creation of pom/
directories but I've not seen any deployed as such. Not looked in a bit
though.
This would allow plugins to become recursive and ask for the dependencies
of a dependency etc.
Hen

On Sat, 28 Feb 2004, Joe Germuska wrote:

 

At 8:00 PM -0500 2/27/04, Mark R. Diggory wrote:
   

No, we just need to get them up and available in
/www/www.apache.org/dist/java-repository on minotaur, they'll be
published onto ibiblio using the rsync Jason's running between the
two.
Notice: Apache Projects should all be publishing thier jars onto
java-repository not via requests to ibiblio/JIRA, if you do submit
such requests they will now be redirected to use java-repository.
 

I have a couple of questions about public repositories in general.
One can see from the structure of the iBiblio repository that there
are ideas of storing more than just JARs there.  Are there any parts
of Maven that currently use anything besides the JARS?
   



-
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: jakarta-taglibs

2004-02-27 Thread Kevin Hagel
lots of licensing issues to deal with there, some folks just don't want 
their jars uploaded to ibiblio -- even though you can download them for 
free from the source!

Just add the needed directories to your $MAVEN_HOME_LOCAL, for example:
mkdir $MAVEN_HOME_LOCAL/repository/jstl/jars
and stick it in yourself (so to speak)
use dependencies as you normally would if they were on ibiblio.

Daniel Draws wrote:

Hi!
Actually I'm developing an J2EE project. And I like the idea to test 
maven. And first I want to say, that I like it.

Now I want to develop the web-tier and I can't find any of the 
jakarta-taglibs (http://jakarta.apache.org/taglibs/index.html). I can 
not beliefe that no developer using maven uses any of them (logging, 
datetime,...).

I don't know, if this is the right place: But is there anybody, who 
can tell me, were to find a remote repository with this libs.
If not: Would it be posible to add the jakarta-taglibs to the 
ibiblio-repository. The normal JIRA-way seems to be not the best, 
because it requires more then 25 requests. And all of the older 
requests for the upload of taglibs are opend since September 03.

Is there any workaround, if there is no posibility for putting the 
libs in a remote repository. I think it should be posible to declare a 
dependency for a zip file and then in the build-pocess this file 
should be unzipped and included in the target.

thx

daniel

-
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: jakarta-taglibs

2004-02-27 Thread Tim Chen
Request and String have been there since Feb 2003 and Sept 2003 
respectively.
If you need other ones there then put a request through JIRA.
In the meantime (or instead of) you can always host your own repository.
Create a directory on your webserver and add files just as you would see 
them on ibiblio
For example:
I have my own repo that is accessed via.

http://xxx/maven
I can add a folder for
taglibs
  jars
 //place my jars here (remember to version them like on ibiblio)
and put a:
maven.repo.remote=http://xxx/maven,http://www.ibiblio.org/maven
in my project.properties
In addition to this 'workaround' you can also use: 
http://maven.apache.org/reference/user-guide.html#Overriding_Stated_Dependencies

Hope that helps :)
-Tim
Daniel Draws wrote:

Hi!
Actually I'm developing an J2EE project. And I like the idea to test 
maven. And first I want to say, that I like it.

Now I want to develop the web-tier and I can't find any of the 
jakarta-taglibs (http://jakarta.apache.org/taglibs/index.html). I can 
not beliefe that no developer using maven uses any of them (logging, 
datetime,...).

I don't know, if this is the right place: But is there anybody, who 
can tell me, were to find a remote repository with this libs.
If not: Would it be posible to add the jakarta-taglibs to the 
ibiblio-repository. The normal JIRA-way seems to be not the best, 
because it requires more then 25 requests. And all of the older 
requests for the upload of taglibs are opend since September 03.

Is there any workaround, if there is no posibility for putting the 
libs in a remote repository. I think it should be posible to declare a 
dependency for a zip file and then in the build-pocess this file 
should be unzipped and included in the target.

thx

daniel

-
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: jakarta-taglibs

2004-02-27 Thread Mark R. Diggory
No, we just need to get them up and available in 
/www/www.apache.org/dist/java-repository on minotaur, they'll be 
published onto ibiblio using the rsync Jason's running between the two.

Notice: Apache Projects should all be publishing thier jars onto 
java-repository not via requests to ibiblio/JIRA, if you do submit 
such requests they will now be redirected to use java-repository.

I suspect they should be published under something more like:

.../java-repository/taglibs-standard/jars
.../java-repository/taglibs-jndi/jars
.../java-repository/taglibs-.../jars
-Mark

Tim Chen wrote:

Request and String have been there since Feb 2003 and Sept 2003 
respectively.
If you need other ones there then put a request through JIRA.
In the meantime (or instead of) you can always host your own repository.
Create a directory on your webserver and add files just as you would see 
them on ibiblio
For example:
I have my own repo that is accessed via.

http://xxx/maven
I can add a folder for
taglibs
  jars
 //place my jars here (remember to version them like on ibiblio)
and put a:
maven.repo.remote=http://xxx/maven,http://www.ibiblio.org/maven
in my project.properties
In addition to this 'workaround' you can also use: 
http://maven.apache.org/reference/user-guide.html#Overriding_Stated_Dependencies 

Hope that helps :)
-Tim
Daniel Draws wrote:

Hi!
Actually I'm developing an J2EE project. And I like the idea to test 
maven. And first I want to say, that I like it.

Now I want to develop the web-tier and I can't find any of the 
jakarta-taglibs (http://jakarta.apache.org/taglibs/index.html). I can 
not beliefe that no developer using maven uses any of them (logging, 
datetime,...).

I don't know, if this is the right place: But is there anybody, who 
can tell me, were to find a remote repository with this libs.
If not: Would it be posible to add the jakarta-taglibs to the 
ibiblio-repository. The normal JIRA-way seems to be not the best, 
because it requires more then 25 requests. And all of the older 
requests for the upload of taglibs are opend since September 03.

Is there any workaround, if there is no posibility for putting the 
libs in a remote repository. I think it should be posible to declare a 
dependency for a zip file and then in the build-pocess this file 
should be unzipped and included in the target.

thx

daniel

-
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]
--
Mark Diggory
Software Developer
Harvard MIT Data Center
http://www.hmdc.harvard.edu
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: jakarta-taglibs

2004-02-27 Thread Daniel Draws
Thanx for your help. Licensing should not be a problem in this case. 
The whole jakarta-taglibs project uses the Apache Software License. So 
you can redistribute it in anny form including a public repository.

lots of licensing issues to deal with there, some folks just don't 
want their jars uploaded to ibiblio -- even though you can download 
them for free from the source!

But this makes sharing of a project dificult. The feature I like most 
in maven is the resolution of dependencies. I don't have to share any 
jar, less (bin)-files in cvs ...

Just add the needed directories to your $MAVEN_HOME_LOCAL, for example:
mkdir $MAVEN_HOME_LOCAL/repository/jstl/jars
and stick it in yourself (so to speak)
use dependencies as you normally would if they were on ibiblio.

Daniel Draws wrote:

[...]
Now I want to develop the web-tier and I can't find any of the 
jakarta-taglibs (http://jakarta.apache.org/taglibs/index.html). I can 
not beliefe that no developer using maven uses any of them (logging, 
datetime,...).

I don't know, if this is the right place: But is there anybody, who 
can tell me, were to find a remote repository with this libs.
If not: Would it be posible to add the jakarta-taglibs to the 
ibiblio-repository. The normal JIRA-way seems to be not the best, 
because it requires more then 25 requests. And all of the older 
requests for the upload of taglibs are opend since September 03.

Is there any workaround, if there is no posibility for putting the 
libs in a remote repository. I think it should be posible to declare 
a dependency for a zip file and then in the build-pocess this file 
should be unzipped and included in the target.

[...]


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