empty ear's from ear:ear

2005-03-31 Thread Durham David R Jr Contr 805 CSPTS/SCE
Forgive my lack of knowledge on what is probably a very simple problem.

I've got a project with the following directory structure:

/projectRoot
/resources
*.jsp
/src
/packages/*.java
/tests/
/WEB-INF/*.xml
maven.xml
project.properties
project.xml


This seems like a decent directory structure.

What are the minimum properties/configurations that I need so that
ear:ear will build a functional ear file. 

Right now I've got this in project.properties:

maven.src.dir=${basedir}

maven.war.classes.dir=${maven.war.webapp.dir}/WEB-INF/classes
maven.war.src=${maven.src.dir}/resources

maven.ear.appxml.version=1.4
maven.final.name=projectName-spring-prototype


In project.xml I have some dependencies with the war.bundle property set
to true.  maven.xml is basically empty.

When I run ear:ear I get an ear that only contains non .java files from
the 'src' directory.

I'm thinking that maybe I need to do a pregoal that does a war:war and
then perhaps add a  with ear.bundle set to true, but I'm not
sure exactly how to do that.  If that's a good way to do it, does anyone
have an example config for this.  Otherwise, maybe there is someother
way to do what I need?


Thanks,

Dave







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



RE: ANT FTP with Maven

2005-03-31 Thread Arnaud HERITIER
It'll not help you but we have a similar problem with the site plugin : 
http://jira.codehaus.org/browse/MPSITE-22

# Arnaud :-(
 

> -Message d'origine-
> De : dan tran [mailto:[EMAIL PROTECTED] 
> Envoyé : jeudi 31 mars 2005 16:15
> À : Maven Users List
> Objet : Re: ANT FTP with Maven
> 
> Did you load the ftp's ant task?  if you dont, it will not 
> work inside maven.
> Check out the archive for instructions on how to load it
> 
> -D
> 
> On Mar 31, 2005 5:41 AM, GOKULAM Jayaram 
> <[EMAIL PROTECTED]> wrote:
> > Hi Kenney,
> > 
> > I tried the whole day, in repeating the same from my 
> windows machine 
> > using, an absolute path and to create a directory in the 
> linux machine.
> > I was unsuccessful.
> > 
> > I tried with in stalling FTP clients on my windows machine,
> > 
> > Then adding the following jars in the Project.xml 
> dependencies after 
> > having placed them in my local repository NetComponents.jar 
> > commons-net-1.3.0.jar jakarta-oro-2.0.8.jar
> > 
> > Still I don't seem to get the FTP mkdir working.
> > 
> > Please guide me to make this work.
> > 
> > Thanks in advance,
> > Jayaram
> > 
> > -Original Message-
> > From: Kenney Westerhof [mailto:[EMAIL PROTECTED]
> > Sent: Wednesday, March 30, 2005 8:40 PM
> > To: Maven Users List
> > Cc: [EMAIL PROTECTED]
> > Subject: RE: ANT FTP with Maven
> > 
> > On Wed, 30 Mar 2005, GOKULAM Jayaram wrote:
> > 
> > > Hi kenney,
> > >
> > > I referred the manual of ANT
> > >
> > > http://ant.apache.org/manual/OptionalTasks/ftp.html
> > >
> > > Which says that create directory will create a remote directory
> > beneath
> > > the default root directory.
> > >
> > > Can you please let me know, which is the default root 
> directory in 
> > > linux?
> > > I believe it is /root, if that's the case, my FTP mkdir 
> still does 
> > > not work.
> > 
> > The ant manual is wrong - the name should be 'default home 
> directory'.
> > At least, if you log in as a normal user. Then you can 
> wander all over 
> > the entire filesystem. If you use an anonymous account, you 
> can only 
> > see a part of the filesystem.
> > 
> > If you'd try this:
> > 
> >>   userid="${maven.remote.user}" 
> password="${maven.remote.password}"
> >   remotedir="/tmp/TEST"
> >/>
> > 
> > then the directory /tmp/TEST should be created.
> > 
> > > What should be the problem?
> > 
> > My guess is that you work on a windows machine, and 
> ${maven.build.dir} 
> > is something like
> > 
> > C:\Documents\ And\ Settings\YourUserName\Desktop\Work\YourProject
> > 
> > which is not a valid unix path.
> > 
> > You should have a path like
> > 
> >/path/to/directory/you/want/to/create
> > 
> > for an absolute path, or
> > 
> >directory/in/your/home/directory .
> > 
> > Usually the ftp task is used for publishing websites and artifacts.
> > (see maven-jar-plugin et.al.)
> > You can test this all out using ${maven.build.dir} and 
> > trying to create that directory by hand using the windows 
> ftp client.
> > But that's probably not the directory you want to create.
> > 
> > O, and about your signature: ofcourse, I understand it's 
> something you 
> > cannot change - just wanted to point out that that policy makes no 
> > sense when you send mail to an archived list ;)
> > 
> > Greetings,
> > 
> >Kenney Westerhof
> > 
> > >
> > > Thanks in advance,
> > > Jayaram
> > >
> > > -Original Message-
> > > From: Kenney Westerhof [mailto:[EMAIL PROTECTED]
> > > Sent: Wednesday, March 30, 2005 6:15 PM
> > > To: Maven Users List
> > > Cc: [EMAIL PROTECTED]
> > > Subject: Re: ANT FTP with Maven
> > >
> > > On Wed, 30 Mar 2005, GOKULAM Jayaram wrote:
> > >
> > > Hi,
> > >
> > > first of all: you might consider leaving the 
> confidentiality footer
> > out,
> > > since this email is addressed to a list, not a person, and is 
> > > readable by the whole world :)
> > >
> > > As you can read in 
> > > http://ant.apache.org/manual/OptionalTasks/ftp.html
> > > nested fileset attributes are ignored in the ftp task. Instead it 
> > > wil mkdir the ${maven.remote.dir}, but that probably already
> > exists,
> > > so nothing is printed/done.
> > >
> > > - Kenney
> > >
> > > > Hi all,
> > > >
> > > > Am trying to connect to FTP server of windows to linux, using a
> > > ant:ftp
> > > > from Maven.
> > > >
> > > >
> > > >
> > > > When I run the above goal, it just displays the task on the 
> > > > console,
> > > and
> > > > it is not creating a directory as I wanted to.
> > > >
> > > > 
> > > >
> > > >
> > > >   
> > > >
> > > >   
> > > >
> > > > 
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Any help on the above issue would be great.
> > > >
> > > >
> > > >
> > > > Thanks in advance.
> > > >
> > > >
> > > >
> > > > Jayaram
> > > >
> > > > Confidentiality Statement:
> > > >
> > > > This message is intended only for the individual or entity to 
> > > > which
> > it
> > > is addressed. It may contain privileged, confidential 

Re: maven -P broken?

2005-03-31 Thread Erik Husby
dan tran wrote:
Hello,
maven -P maven-plugin-plugin 
maven -P maven-jar-plugin

show no usage text, is it a bug?
 

On my systems its
I:\>maven -P plugin
__  __
|  \/  |__ _Apache__ ___
| |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
|_|  |_\__,_|\_/\___|_||_|  v. 1.0.2
Goals in plugin
===
[plugin]Build a plugin jar
 download  ... download and install a plugin from a 
remote
   repo
 download-artifact  .. download a plugin from a remote repo
 generate-docs  .. Generate navigation, goals and 
properties
   docs
 generate-goals  . Generate goals.xml for the plugin
 generate-navigation   Generate navigation.xml for the plugin
 generate-properties   Generate properties.xml for the plugin
 install   Install the plugin jar, prepare Maven to
   expand it locally and clear caches
 install-now   Build a plugin and load it into the
   currently running instance of Maven.
 plugin  . Build a plugin jar
 uninstall  .. Uninstall all versions of the plugin
 uninstall-now  .. Uninstall all versions of the plugin,
   including those in the currently running
   instance of Maven

Undocumented goals :
 plugin:repository-deploy
 plugin:repository-deploy-snapshot
 plugin:repository-install
 plugin:repository-install-snapshot
 plugin:test
Maven Plugin management plugin.
I:\>
--
Erik Husby
Senior Software Engineer
Broad Institute of MIT and Harvard 
Rm. 2192  320 Charles St, Cambridge, MA 02141-2023
mobile: 781.354.6669, office: 617.258.9227, 
email: [EMAIL PROTECTED]  AIM: ErikAtBroad

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


maven -P broken?

2005-03-31 Thread dan tran
Hello,

maven -P maven-plugin-plugin 
maven -P maven-jar-plugin

show no usage text, is it a bug?


-Dan




M:\vbdev-uscud-rdxp3-build-bootstraps\SCM\everest>maven -P maven-plugin-plugin
 __  __
|  \/  |__ _Apache__ ___
| |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
|_|  |_\__,_|\_/\___|_||_|  v. 1.0.2

Goals in maven-plugin-plugin


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



Re: How to run tests only after building a war file?

2005-03-31 Thread Siegfried Goeschl
[EMAIL PROTECTED] wrote:
Hi,
after being able to run my htmlunit tests (thanks to vincent for
the dependency hint!) I am just struggling with the order, when 
the unit tests are run.
As I have a seperate project to build the war, I thought it would 
be intended to have the testcases for this war inside this project.
Unfortunately the war:webapp goal depends on having test:test
goal run before. 
So would you recommend to create an additional project just containing
the (functional) tests for the (running) web application?
 

Yes - it fits nicely to the way Maven is doing things and in the long 
run you accumulate enough test code to justify an independent project. 
And if you feel bored writing HTMLUnit tests you can also switch to 
Canoo WebTest  ;-)

[My first try included a preGoal for test:test which contained 
an attainGoal to "tomcat:deploy". Unfortunately this resulted 
in an endless loop within maven.]
Yours
Stefan

__
Switch to Netscape Internet Service.
As low as $9.95 a month -- Sign up today at http://isp.netscape.com/register
Netscape. Just the Net You Need.
New! Netscape Toolbar for Internet Explorer
Search from anywhere on the Web and block those annoying pop-ups.
Download now at http://channels.netscape.com/ns/search/install.jsp
-
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: howto start HSQLDB before test ?

2005-03-31 Thread Laurent Petit
Nicolas De Loof wrote:
I'd like to test my DAO using dbUnit. I've setup an in memory HSQLDB 
in the test setUp() and it works fine, but the DB is started and 
created before every test is run (I'm using fork=true, maybee it can 
explain ?).

I'd like to setup my build process to startup the HSQLDB as Server in 
a parallel process and apply the schema as a test pregoal, and stop it 
as a postGoal. Having this, setUp() should only connect to running DB.

Does anyone use such a build scenario and can share maven.xml ?
Nico.
Hello,
For now on our project, we start a separate maven shell with the 
following goal :
   
   Starting HSQLDB Server
   
   classpathref="maven.dependency.classpath"
   fork="true">
   
   
   
   
   
   HSQLDB Server Started
   

If does work, but has the same workaround you're trying to avoid : a 
manual "start" operation.

if you find something, please tell.
--
Laurent
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


howto start HSQLDB before test ?

2005-03-31 Thread Nicolas De Loof
Hi,
I've searched the archive for a solution to my problem without result :
I'd like to test my DAO using dbUnit. I've setup an in memory HSQLDB in 
the test setUp() and it works fine, but the DB is started and created 
before every test is run (I'm using fork=true, maybee it can explain ?).

I'd like to setup my build process to startup the HSQLDB as Server in a 
parallel process and apply the schema as a test pregoal, and stop it as 
a postGoal. Having this, setUp() should only connect to running DB.

Does anyone use such a build scenario and can share maven.xml ?
Nico.
This message contains information that may be privileged or confidential and is 
the property of the Capgemini Group. It is intended only for the person to whom 
it is addressed. If you are not the intended recipient,  you are not authorized 
to read, print, retain, copy, disseminate,  distribute, or use this message or 
any part thereof. If you receive this  message in error, please notify the 
sender immediately and delete all  copies of this message.
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


How to run tests only after building a war file?

2005-03-31 Thread shoening
Hi,
after being able to run my htmlunit tests (thanks to vincent for
the dependency hint!) I am just struggling with the order, when 
the unit tests are run.
As I have a seperate project to build the war, I thought it would 
be intended to have the testcases for this war inside this project.
Unfortunately the war:webapp goal depends on having test:test
goal run before. 
So would you recommend to create an additional project just containing
the (functional) tests for the (running) web application?
[My first try included a preGoal for test:test which contained 
an attainGoal to "tomcat:deploy". Unfortunately this resulted 
in an endless loop within maven.]
Yours
Stefan


__
Switch to Netscape Internet Service.
As low as $9.95 a month -- Sign up today at http://isp.netscape.com/register

Netscape. Just the Net You Need.

New! Netscape Toolbar for Internet Explorer
Search from anywhere on the Web and block those annoying pop-ups.
Download now at http://channels.netscape.com/ns/search/install.jsp

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



Re: ANT FTP with Maven

2005-03-31 Thread dan tran
Did you load the ftp's ant task?  if you dont, it will not work inside maven.
Check out the archive for instructions on how to load it

-D

On Mar 31, 2005 5:41 AM, GOKULAM Jayaram <[EMAIL PROTECTED]> wrote:
> Hi Kenney,
> 
> I tried the whole day, in repeating the same from my windows machine
> using, an absolute path and to create a directory in the linux machine.
> I was unsuccessful.
> 
> I tried with in stalling FTP clients on my windows machine,
> 
> Then adding the following jars in the Project.xml dependencies after
> having placed them in my local repository
> NetComponents.jar
> commons-net-1.3.0.jar
> jakarta-oro-2.0.8.jar
> 
> Still I don't seem to get the FTP mkdir working.
> 
> Please guide me to make this work.
> 
> Thanks in advance,
> Jayaram
> 
> -Original Message-
> From: Kenney Westerhof [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, March 30, 2005 8:40 PM
> To: Maven Users List
> Cc: [EMAIL PROTECTED]
> Subject: RE: ANT FTP with Maven
> 
> On Wed, 30 Mar 2005, GOKULAM Jayaram wrote:
> 
> > Hi kenney,
> >
> > I referred the manual of ANT
> >
> > http://ant.apache.org/manual/OptionalTasks/ftp.html
> >
> > Which says that create directory will create a remote directory
> beneath
> > the default root directory.
> >
> > Can you please let me know, which is the default root directory in
> > linux?
> > I believe it is /root, if that's the case, my FTP mkdir still does not
> > work.
> 
> The ant manual is wrong - the name should be 'default home directory'.
> At least, if you log in as a normal user. Then you can wander all over
> the entire filesystem. If you use an anonymous account, you can only
> see a part of the filesystem.
> 
> If you'd try this:
> 
>  userid="${maven.remote.user}" password="${maven.remote.password}"
>   remotedir="/tmp/TEST"
>/>
> 
> then the directory /tmp/TEST should be created.
> 
> > What should be the problem?
> 
> My guess is that you work on a windows machine, and ${maven.build.dir}
> is something like
> 
> C:\Documents\ And\ Settings\YourUserName\Desktop\Work\YourProject
> 
> which is not a valid unix path.
> 
> You should have a path like
> 
>/path/to/directory/you/want/to/create
> 
> for an absolute path, or
> 
>directory/in/your/home/directory
> .
> 
> Usually the ftp task is used for publishing websites and artifacts.
> (see maven-jar-plugin et.al.)
> You can test this all out using ${maven.build.dir}
> and trying to create that directory by hand using the windows ftp
> client.
> But that's probably not the directory you want to create.
> 
> O, and about your signature: ofcourse, I understand it's something you
> cannot change - just wanted to point out that that policy makes no sense
> when you send mail to an archived list ;)
> 
> Greetings,
> 
>Kenney Westerhof
> 
> >
> > Thanks in advance,
> > Jayaram
> >
> > -Original Message-
> > From: Kenney Westerhof [mailto:[EMAIL PROTECTED]
> > Sent: Wednesday, March 30, 2005 6:15 PM
> > To: Maven Users List
> > Cc: [EMAIL PROTECTED]
> > Subject: Re: ANT FTP with Maven
> >
> > On Wed, 30 Mar 2005, GOKULAM Jayaram wrote:
> >
> > Hi,
> >
> > first of all: you might consider leaving the confidentiality footer
> out,
> > since this email is addressed to a list, not a person, and is readable
> > by the whole world :)
> >
> > As you can read in http://ant.apache.org/manual/OptionalTasks/ftp.html
> > nested fileset attributes are ignored in the ftp task. Instead
> > it wil mkdir the ${maven.remote.dir}, but that probably already
> exists,
> > so nothing is printed/done.
> >
> > - Kenney
> >
> > > Hi all,
> > >
> > > Am trying to connect to FTP server of windows to linux, using a
> > ant:ftp
> > > from Maven.
> > >
> > >
> > >
> > > When I run the above goal, it just displays the task on the console,
> > and
> > > it is not creating a directory as I wanted to.
> > >
> > > 
> > >
> > >
> > >   
> > >
> > >   
> > >
> > > 
> > >
> > >
> > >
> > >
> > >
> > > Any help on the above issue would be great.
> > >
> > >
> > >
> > > Thanks in advance.
> > >
> > >
> > >
> > > Jayaram
> > >
> > > Confidentiality Statement:
> > >
> > > This message is intended only for the individual or entity to which
> it
> > is addressed. It may contain privileged, confidential information
> which
> > is exempt from disclosure under applicable laws. If you are not the
> > intended recipient, please note that you are strictly prohibited from
> > disseminating or distributing this information (other than to the
> > intended recipient) or copying this information. If you have received
> > this communication in error, please notify us immediately by return
> > email.
> > >
> > >
> >
> > --
> > Kenney Westerhof
> > http://www.neonics.com
> > GPG public key: http://www.gods.nl/~forge/kenneyw.key
> >
> > -
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED

RE: ANT FTP with Maven

2005-03-31 Thread GOKULAM Jayaram
Hi Kenney,

I tried the whole day, in repeating the same from my windows machine
using, an absolute path and to create a directory in the linux machine.
I was unsuccessful. 

I tried with in stalling FTP clients on my windows machine, 

Then adding the following jars in the Project.xml dependencies after
having placed them in my local repository
NetComponents.jar
commons-net-1.3.0.jar
jakarta-oro-2.0.8.jar


Still I don't seem to get the FTP mkdir working.

Please guide me to make this work.

Thanks in advance,
Jayaram


-Original Message-
From: Kenney Westerhof [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, March 30, 2005 8:40 PM
To: Maven Users List
Cc: [EMAIL PROTECTED]
Subject: RE: ANT FTP with Maven

On Wed, 30 Mar 2005, GOKULAM Jayaram wrote:

> Hi kenney,
>
> I referred the manual of ANT
>
> http://ant.apache.org/manual/OptionalTasks/ftp.html
>
> Which says that create directory will create a remote directory
beneath
> the default root directory.
>
> Can you please let me know, which is the default root directory in
> linux?
> I believe it is /root, if that's the case, my FTP mkdir still does not
> work.

The ant manual is wrong - the name should be 'default home directory'.
At least, if you log in as a normal user. Then you can wander all over
the entire filesystem. If you use an anonymous account, you can only
see a part of the filesystem.

If you'd try this:

   

then the directory /tmp/TEST should be created.

> What should be the problem?

My guess is that you work on a windows machine, and ${maven.build.dir}
is something like

 C:\Documents\ And\ Settings\YourUserName\Desktop\Work\YourProject

which is not a valid unix path.

You should have a path like

/path/to/directory/you/want/to/create

for an absolute path, or

directory/in/your/home/directory
.

Usually the ftp task is used for publishing websites and artifacts.
(see maven-jar-plugin et.al.)
You can test this all out using ${maven.build.dir}
and trying to create that directory by hand using the windows ftp
client.
But that's probably not the directory you want to create.

O, and about your signature: ofcourse, I understand it's something you
cannot change - just wanted to point out that that policy makes no sense
when you send mail to an archived list ;)

Greetings,

Kenney Westerhof


>
> Thanks in advance,
> Jayaram
>
> -Original Message-
> From: Kenney Westerhof [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, March 30, 2005 6:15 PM
> To: Maven Users List
> Cc: [EMAIL PROTECTED]
> Subject: Re: ANT FTP with Maven
>
> On Wed, 30 Mar 2005, GOKULAM Jayaram wrote:
>
> Hi,
>
> first of all: you might consider leaving the confidentiality footer
out,
> since this email is addressed to a list, not a person, and is readable
> by the whole world :)
>
> As you can read in http://ant.apache.org/manual/OptionalTasks/ftp.html
> nested fileset attributes are ignored in the ftp task. Instead
> it wil mkdir the ${maven.remote.dir}, but that probably already
exists,
> so nothing is printed/done.
>
> - Kenney
>
> > Hi all,
> >
> > Am trying to connect to FTP server of windows to linux, using a
> ant:ftp
> > from Maven.
> >
> >
> >
> > When I run the above goal, it just displays the task on the console,
> and
> > it is not creating a directory as I wanted to.
> >
> > 
> >
> >
> >   
> >
> >   
> >
> > 
> >
> >
> >
> >
> >
> > Any help on the above issue would be great.
> >
> >
> >
> > Thanks in advance.
> >
> >
> >
> > Jayaram
> >
> > Confidentiality Statement:
> >
> > This message is intended only for the individual or entity to which
it
> is addressed. It may contain privileged, confidential information
which
> is exempt from disclosure under applicable laws. If you are not the
> intended recipient, please note that you are strictly prohibited from
> disseminating or distributing this information (other than to the
> intended recipient) or copying this information. If you have received
> this communication in error, please notify us immediately by return
> email.
> >
> >
>
> --
> Kenney Westerhof
> http://www.neonics.com
> GPG public key: http://www.gods.nl/~forge/kenneyw.key
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
> Confidentiality Statement:
>
> This message is intended only for the individual or entity to which it
is addressed. It may contain privileged, confidential information which
is exempt from disclosure under applicable laws. If you are not the
intended recipient, please note that you are strictly prohibited from
disseminating or distributing this information (other than to the
intended recipient) or copying this information. If you have received
this communication in error, please notify us immediately by return
email.
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For ad

=?ISO-8859-1?Q?R=E9f=2E_=3A_Telnet_task_and_maven_1=2E0=2E2?=

2005-03-31 Thread fabrice . belingard




GREAT, someone has eventually found the solution!
Smart :o)

Thx a lot for the tip!!

Best regards,
Fabrice



   
 Kaloyan Enimanev  
  users@maven.apache.org  
cc
 31/03/2005 14:22  
 Objet
   Telnet task and maven 1.0.2 
 Veuillez  
répondre à 
 Maven Users List  
 <[EMAIL PROTECTED]  
 che.org>  
   
   




Hi boys, yesterday I was able to run the "ant:telnet" task under Maven.
Several people complained around that they were helpless on this topic
in the mailing list so I thought it is a good idea to tell them what's the
problem.


Since Ant 1.5.3 relias on NetComponents.jar you have to download it and
add it to the dependencies.
I've got these in my project.xml


  netcomponents
  netcomponents
  1.3.8
  
root
  



And then in my Maven.xml I added

  

  
  

  

  





























  


Did you get it ? :)
The documentation states you should call telnet like this

writestirng
readstring


but the IMPLEMENTATION does like this





best regards to all of you ,
 Kaloyan
--
Keep In Touch With Your Life Sensors


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



Re: Maven 1.1-Snapshot: Unsatisfied dependencies

2005-03-31 Thread Brett Porter
you need to find where you have specified your own maven.repo.remote
in a build.properties and comment it out - cvs.apache.org/repository
needs to be in the list (as it is in the Maven SVN tree).

http://cvs.apache.org/repository/maven/jars/ contains the JAR.

- Brett


On Thu, 31 Mar 2005 14:54:46 +0200, Volker Füßler <[EMAIL PROTECTED]> wrote:
> Hello,
> 
> I want to try out maven-1.1-snapshot because I need ANT 1.6.2 support. I
> have successfully built and installed maven-1.1-snapshot.
> 
> I took an existing project and tried to build it with maven-1.1 but it
> always stop because it can't satisfy some maven-dependencies:
> 
> wagon-ssh-external-1.0-alpha-2-SNAPSHOT.jar
> 
> When i run maven with -X, I get the following:
> 
> http://www.ibiblio.org/maven//maven/jars/wagon-ssh-external-1.0-alpha-2-SNAPSHOT.jar
> - Status code: 404
> File not found on one of the repos
> org.apache.maven.wagon.ResourceDoesNotExistException: File:
> http://www.ibiblio.org/maven//maven/jars/wagon-ssh-external-1.0-alpha-2-SNAPSHOT.jar
> does not exist
>...
> 
> Has anyone an idea how to get this to work?
> 
> Thank you for your help
> 
> regards, Volker
> 
> -
> 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]



Maven 1.1-Snapshot: Unsatisfied dependencies

2005-03-31 Thread =?ISO-8859-15?Q?Volker_F=FC=DFler?=
Hello,
I want to try out maven-1.1-snapshot because I need ANT 1.6.2 support. I 
have successfully built and installed maven-1.1-snapshot.

I took an existing project and tried to build it with maven-1.1 but it 
always stop because it can't satisfy some maven-dependencies:

wagon-ssh-external-1.0-alpha-2-SNAPSHOT.jar
When i run maven with -X, I get the following:
http://www.ibiblio.org/maven//maven/jars/wagon-ssh-external-1.0-alpha-2-SNAPSHOT.jar 
- Status code: 404
File not found on one of the repos
org.apache.maven.wagon.ResourceDoesNotExistException: File: 
http://www.ibiblio.org/maven//maven/jars/wagon-ssh-external-1.0-alpha-2-SNAPSHOT.jar 
does not exist
  ...

Has anyone an idea how to get this to work?
Thank you for your help
regards, Volker
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Telnet task and maven 1.0.2

2005-03-31 Thread dan tran
Finally!!! Big Thanks

-D

On Mar 31, 2005 4:22 AM, Kaloyan Enimanev
<[EMAIL PROTECTED]> wrote:
> Hi boys, yesterday I was able to run the "ant:telnet" task under Maven.
> Several people complained around that they were helpless on this topic
> in the mailing list so I thought it is a good idea to tell them what's the
> problem.
> 
> Since Ant 1.5.3 relias on NetComponents.jar you have to download it and
> add it to the dependencies.
> I've got these in my project.xml
> 
>
>  netcomponents
>  netcomponents
>  1.3.8
>  
>root
>  
>
> 
> And then in my Maven.xml I added
> 
>   classname="org.apache.tools.ant.taskdefs.optional.net.TelnetTask">
>
>   location="${plugin.getDependencyPath('netcomponents:netcomponents')}"/>
>  
>
>  
> 
>   timeout="1000">
>
>
>
>
>
>
>
>
>
>
>
> 
>
>
>
> 
>
>
> 
>
>
>
> 
>
>
>
>
> 
>
>  
> 
> Did you get it ? :)
> The documentation states you should call telnet like this
> 
>writestirng
>readstring
> 
> 
> but the IMPLEMENTATION does like this
> 
>
>
> 
> 
> best regards to all of you ,
> Kaloyan
> --
> Keep In Touch With Your Life Sensors
>

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



RE: Targeting multiple appservers

2005-03-31 Thread Vincent Massol


> -Original Message-
> From: Nicolas Chalumeau [mailto:[EMAIL PROTECTED]
> Sent: jeudi 31 mars 2005 14:16
> To: Maven Users List; [EMAIL PROTECTED]
> Subject: Re: Targeting multiple appservers
> 
> I imagine you can ask Vincent if there was evolution since 2003 (he
> read this list so he can aswer...)

I haven't improved it since 2003... :-) So far this structure has fulfilled
my needs. There's of course a lot of possible improvements.

[snip]

-Vincent

_

Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !

Yahoo! Mail : http://fr.mail.yahoo.com


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



RE: Dependencies for HtmlUnit

2005-03-31 Thread Vincent Massol
Even better: http://htmlunit.sourceforge.net/dependencies.html

-Vincent

> -Original Message-
> From: Nicolas Chalumeau [mailto:[EMAIL PROTECTED]
> Sent: jeudi 31 mars 2005 14:18
> To: Maven Users List
> Subject: Re: Dependencies for HtmlUnit
> 
> For the dependancies a good thing is to look in the pom of this
> project : http://www.ibiblio.org/maven/htmlunit/poms/
> 
> Nicolas,
> 
> On Thu, 31 Mar 2005 04:42:15 -0500, [EMAIL PROTECTED]
> <[EMAIL PROTECTED]> wrote:
> > Hi all,
> > I am just trying to get a maven project running which uses htmlunit.
> > I just need to know, which dependencies I need to include into my
> > project, when I want to run JUnit testcases which are implemented by
> > htmlunit.
> > After adding a couple of dependencies I am getting the
> > exception below - I guess I am still missing something.
> > BTW: Is there any easy way to find out all dependencies I need to
> include?
> > Yours
> > Stefan
> >
> > Testcase: testIndexPage(dcs.rechnungen.webapp.TestIndexPage): Caused an
> ERROR
> > null
> > org.apache.xerces.xni.XNIException
> >   at
> org.cyberneko.html.HTMLScanner$ContentScanner.scan(HTMLScanner.java:1860)
> >   at org.cyberneko.html.HTMLScanner.scanDocument(HTMLScanner.java:789)
> >   at
> org.cyberneko.html.HTMLConfiguration.parse(HTMLConfiguration.java:478)
> >   at
> org.cyberneko.html.HTMLConfiguration.parse(HTMLConfiguration.java:431)
> >   at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
> >   at
> com.gargoylesoftware.htmlunit.html.HTMLParser$HtmlUnitDOMBuilder.parse(HTM
> LParser.java:332)
> >   at
> com.gargoylesoftware.htmlunit.html.HTMLParser.parse(HTMLParser.java:257)
> >   at
> com.gargoylesoftware.htmlunit.DefaultPageCreator.createHtmlPage(DefaultPag
> eCreator.java:115)
> >   at
> com.gargoylesoftware.htmlunit.DefaultPageCreator.createPage(DefaultPageCre
> ator.java:84)
> >   at
> com.gargoylesoftware.htmlunit.WebClient.loadWebResponseInto(WebClient.java
> :694)
> >   at com.gargoylesoftware.htmlunit.WebClient.getPage(WebClient.java:361)
> >   at com.gargoylesoftware.htmlunit.WebClient.getPage(WebClient.java:400)
> >   at
> dcs.rechnungen.webapp.TestIndexPage.testIndexPage(TestIndexPage.java:27)
> >   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> >   at
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:
> 39)
> >   at
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorIm
> pl.java:25)
> >
> > __
> > Switch to Netscape Internet Service.
> > As low as $9.95 a month -- Sign up today at
> http://isp.netscape.com/register
> >
> > Netscape. Just the Net You Need.
> >
> > New! Netscape Toolbar for Internet Explorer
> > Search from anywhere on the Web and block those annoying pop-ups.
> > Download now at http://channels.netscape.com/ns/search/install.jsp
> >
> > -
> > 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]



Telnet task and maven 1.0.2

2005-03-31 Thread Kaloyan Enimanev
Hi boys, yesterday I was able to run the "ant:telnet" task under Maven.
Several people complained around that they were helpless on this topic 
in the mailing list so I thought it is a good idea to tell them what's the 
problem.


Since Ant 1.5.3 relias on NetComponents.jar you have to download it and 
add it to the dependencies.
I've got these in my project.xml


  netcomponents
  netcomponents
  1.3.8
  
root
   



And then in my Maven.xml I added 

  

  
  

   
 
  















 











 

   


Did you get it ? :)
The documentation states you should call telnet like this

writestirng
readstring


but the IMPLEMENTATION does like this





best regards to all of you ,
 Kaloyan
--
Keep In Touch With Your Life Sensors

Re: Dependencies for HtmlUnit

2005-03-31 Thread Nicolas Chalumeau
For the dependancies a good thing is to look in the pom of this
project : http://www.ibiblio.org/maven/htmlunit/poms/

Nicolas,

On Thu, 31 Mar 2005 04:42:15 -0500, [EMAIL PROTECTED]
<[EMAIL PROTECTED]> wrote:
> Hi all,
> I am just trying to get a maven project running which uses htmlunit.
> I just need to know, which dependencies I need to include into my
> project, when I want to run JUnit testcases which are implemented by
> htmlunit.
> After adding a couple of dependencies I am getting the
> exception below - I guess I am still missing something.
> BTW: Is there any easy way to find out all dependencies I need to include?
> Yours
> Stefan
> 
> Testcase: testIndexPage(dcs.rechnungen.webapp.TestIndexPage): Caused an ERROR
> null
> org.apache.xerces.xni.XNIException
>   at org.cyberneko.html.HTMLScanner$ContentScanner.scan(HTMLScanner.java:1860)
>   at org.cyberneko.html.HTMLScanner.scanDocument(HTMLScanner.java:789)
>   at org.cyberneko.html.HTMLConfiguration.parse(HTMLConfiguration.java:478)
>   at org.cyberneko.html.HTMLConfiguration.parse(HTMLConfiguration.java:431)
>   at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
>   at 
> com.gargoylesoftware.htmlunit.html.HTMLParser$HtmlUnitDOMBuilder.parse(HTMLParser.java:332)
>   at com.gargoylesoftware.htmlunit.html.HTMLParser.parse(HTMLParser.java:257)
>   at 
> com.gargoylesoftware.htmlunit.DefaultPageCreator.createHtmlPage(DefaultPageCreator.java:115)
>   at 
> com.gargoylesoftware.htmlunit.DefaultPageCreator.createPage(DefaultPageCreator.java:84)
>   at 
> com.gargoylesoftware.htmlunit.WebClient.loadWebResponseInto(WebClient.java:694)
>   at com.gargoylesoftware.htmlunit.WebClient.getPage(WebClient.java:361)
>   at com.gargoylesoftware.htmlunit.WebClient.getPage(WebClient.java:400)
>   at dcs.rechnungen.webapp.TestIndexPage.testIndexPage(TestIndexPage.java:27)
>   at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>   at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
>   at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
> 
> __
> Switch to Netscape Internet Service.
> As low as $9.95 a month -- Sign up today at http://isp.netscape.com/register
> 
> Netscape. Just the Net You Need.
> 
> New! Netscape Toolbar for Internet Explorer
> Search from anywhere on the Web and block those annoying pop-ups.
> Download now at http://channels.netscape.com/ns/search/install.jsp
> 
> -
> 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: Targeting multiple appservers

2005-03-31 Thread Nicolas Chalumeau
I imagine you can ask Vincent if there was evolution since 2003 (he
read this list so he can aswer...)

In fact it his an elegant solution as you can produce one artifact per
ear (it is the maven politic too) for each server kind/environement.
The specific goes in application and you reuse module (jar/war/...)
who are généric by definition.

It is the structure I use in my compagny and using multiproject with
it make that our maven.xml his "very" small.

Nicolas,


On Thu, 31 Mar 2005 12:45:50 +0200, Georg Köster <[EMAIL PROTECTED]> wrote:
> Thanks Nicolas! I imagined this easier than that, taken into
> consideration that the article dated from 2003 I hoped that something
> orthogonal to projects had been introduced to manage portability...
> 
> Georg
> 
> Nicolas Chalumeau wrote:
> > One good this is to have in-container tests : look at cactus
> > (jakarat.apache.org/cactus), it allow you to run the test in multiple
> > server.
> >
> > A great pdf talk about a possible structuration (it's not the "unique"
> > one) : http://www.pivolis.com/pdf/J2EE_projects_Maven_V1.1.pdf
> >
> > Nicolas,
> >
> > On Wed, 30 Mar 2005 17:16:04 +0200, Georg Köster <[EMAIL PROTECTED]> wrote:
> >
> >>Hello!
> >>
> >>First of all I want to thank this community for this wonderful tool.
> >>Declaration of the dependencies and standardization is necessary to
> >>manage ever growing complexity.
> >>
> >>Common problems occur when multiple application servers (or even
> >>multiple releases of a single appserver) are targeted:
> >>  - jars coming with the server change/are added/move (for example
> >>servlet-api.jar of jboss)
> >>  - deployment descriptors need to be adapted and xdoclet parameterized
> >>accordingly
> >>
> >>The question arising is: how can maven help under these conditions? Do I
> >>really need to have special versions of the project.xml for every server?
> >>I saw some previous threads on the subject:
> >>
> >>http://marc.theaimsgroup.com/?l=turbine-maven-user&m=105380442001158&w=2
> >>http://marc.theaimsgroup.com/?l=turbine-maven-user&m=108594807801677&w=2
> >>
> >>But answers where not very promising/absent.
> >>Has the situation changed?
> >>Are there any experiences?
> >>
> >>Thanks in advance!
> >>
> >>Georg Köster
> >>
> >>-
> >>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]
> 
>

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



RE: jaxb plugin

2005-03-31 Thread Adam Hardy
Regarding the [EMAIL PROTECTED] I have just seen
now just before I sent this here that the sourceforge list accepted my
posting, although I didn't see it for at least 90 minutes for whatever
reason. Sorry for the cross-posting. 

The subscribe address though definitely did not work. 



-Original Message-
From: Adam Hardy 
Sent: 31 March 2005 12:46
To: Maven Users List
Cc: David O'Flanagan (CAPE)
Subject: FW: jaxb plugin


I wasn't able to subscribe or submit to
[EMAIL PROTECTED] - I don't think I was doing
anything stupid - I received 'Unrouteable address' errors.


http://www.bbc.co.uk/

This e-mail (and any attachments) is confidential and may contain
personal views which are not the views of the BBC unless specifically
stated.
If you have received it in error, please delete it from your system. 
Do not use, copy or disclose the information in any way nor act in
reliance on it and notify the sender immediately. Please note that the
BBC monitors e-mails sent or received. 
Further communication will signify your consent to this.

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



FW: jaxb plugin

2005-03-31 Thread Adam Hardy
I wasn't able to subscribe or submit to
[EMAIL PROTECTED] - I don't think I was doing
anything stupid - I received 'Unrouteable address' errors.

Anyway, both David O'Flanagan and myself have been using JAXB and I
thought I'd send you the latest & greatest (mostly David's work) which
you might want to use to update the jaxb plugin on sourceforge. It adds
an extra parameters to give it more flexibility, e.g. on the package for
the generated classes. Plus comments for JAXB 1.5.



  
  




  












  


${ct.jaxb.schemas}


  
  
  
Please make sure that ct.jaxb.src.dir is set.
  
  
  
Please make sure that ct.jaxb.package.name is set.
  

  
  
  


  



http://www.bbc.co.uk/

This e-mail (and any attachments) is confidential and may contain
personal views which are not the views of the BBC unless specifically
stated.
If you have received it in error, please delete it from your system. 
Do not use, copy or disclose the information in any way nor act in
reliance on it and notify the sender immediately. Please note that the
BBC monitors e-mails sent or received. 
Further communication will signify your consent to this.

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



Re: maven to build eclipse plugin?

2005-03-31 Thread Milos Kleint
Benedict Heal wrote:
Does anyone have an example of a POM to build an Eclipse plugin using 
Maven?
It seems a pity to have to do it by steam.
Thanks,
Benedict

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
check 
http://mevenide.codehaus.org/maven-eclipse-plugin-plugin/index.html for 
a maven plugin to create an eclipse plugin.. mevenide's own  projects 
could be used as examples..

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


maven to build eclipse plugin?

2005-03-31 Thread Benedict Heal
Does anyone have an example of a POM to build an Eclipse plugin using Maven?
It seems a pity to have to do it by steam.
Thanks,
Benedict
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: Targeting multiple appservers

2005-03-31 Thread =?ISO-8859-1?Q?Georg_K=F6ster?=
Thanks Nicolas! I imagined this easier than that, taken into 
consideration that the article dated from 2003 I hoped that something 
orthogonal to projects had been introduced to manage portability...

Georg
Nicolas Chalumeau wrote:
One good this is to have in-container tests : look at cactus
(jakarat.apache.org/cactus), it allow you to run the test in multiple
server.
A great pdf talk about a possible structuration (it's not the "unique"
one) : http://www.pivolis.com/pdf/J2EE_projects_Maven_V1.1.pdf
Nicolas,
On Wed, 30 Mar 2005 17:16:04 +0200, Georg Köster <[EMAIL PROTECTED]> wrote:
Hello!
First of all I want to thank this community for this wonderful tool.
Declaration of the dependencies and standardization is necessary to
manage ever growing complexity.
Common problems occur when multiple application servers (or even
multiple releases of a single appserver) are targeted:
 - jars coming with the server change/are added/move (for example
servlet-api.jar of jboss)
 - deployment descriptors need to be adapted and xdoclet parameterized
accordingly
The question arising is: how can maven help under these conditions? Do I
really need to have special versions of the project.xml for every server?
I saw some previous threads on the subject:
http://marc.theaimsgroup.com/?l=turbine-maven-user&m=105380442001158&w=2
http://marc.theaimsgroup.com/?l=turbine-maven-user&m=108594807801677&w=2
But answers where not very promising/absent.
Has the situation changed?
Are there any experiences?
Thanks in advance!
Georg Köster
-
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]


maven-jxr plugin

2005-03-31 Thread Stephen Gray
Hi,

I have a problem with my jxr-plugin. It generates ok but the links to the
classes arebroken. Thelink is using the following address
xref/com/nexala/db/a.html when it should be
xref/jarsrc/com/nexala/db/a.html. Why is this happening and can
change it?

Thanks



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



Dependencies for HtmlUnit

2005-03-31 Thread shoening
Hi all,
I am just trying to get a maven project running which uses htmlunit.
I just need to know, which dependencies I need to include into my 
project, when I want to run JUnit testcases which are implemented by 
htmlunit.
After adding a couple of dependencies I am getting the 
exception below - I guess I am still missing something.
BTW: Is there any easy way to find out all dependencies I need to include?
Yours
Stefan

Testcase: testIndexPage(dcs.rechnungen.webapp.TestIndexPage): Caused an ERROR
null
org.apache.xerces.xni.XNIException
  at org.cyberneko.html.HTMLScanner$ContentScanner.scan(HTMLScanner.java:1860)
  at org.cyberneko.html.HTMLScanner.scanDocument(HTMLScanner.java:789)
  at org.cyberneko.html.HTMLConfiguration.parse(HTMLConfiguration.java:478)
  at org.cyberneko.html.HTMLConfiguration.parse(HTMLConfiguration.java:431)
  at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
  at 
com.gargoylesoftware.htmlunit.html.HTMLParser$HtmlUnitDOMBuilder.parse(HTMLParser.java:332)
  at com.gargoylesoftware.htmlunit.html.HTMLParser.parse(HTMLParser.java:257)
  at 
com.gargoylesoftware.htmlunit.DefaultPageCreator.createHtmlPage(DefaultPageCreator.java:115)
  at 
com.gargoylesoftware.htmlunit.DefaultPageCreator.createPage(DefaultPageCreator.java:84)
  at 
com.gargoylesoftware.htmlunit.WebClient.loadWebResponseInto(WebClient.java:694)
  at com.gargoylesoftware.htmlunit.WebClient.getPage(WebClient.java:361)
  at com.gargoylesoftware.htmlunit.WebClient.getPage(WebClient.java:400)
  at dcs.rechnungen.webapp.TestIndexPage.testIndexPage(TestIndexPage.java:27)
  at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)


__
Switch to Netscape Internet Service.
As low as $9.95 a month -- Sign up today at http://isp.netscape.com/register

Netscape. Just the Net You Need.

New! Netscape Toolbar for Internet Explorer
Search from anywhere on the Web and block those annoying pop-ups.
Download now at http://channels.netscape.com/ns/search/install.jsp

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



[APPSERVER] tomcat install corrupted

2005-03-31 Thread Alexandre Touret
Hi,
I am trying to use the appserver plugin for use it with tomcat 4.1.27.
I ran appserver:install and all the JAR copied into my 
${maven.appserver.dir}directory are corrupted!

For an example, I cant open bootstrap.jar .
My configuration
maven 1.0.2
J2SE SUN 1.4.2_07 

Thanks in advance for you help!
Alexandre
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


Re: changelog report links

2005-03-31 Thread Gisbert Amm
What do the bonsai URLs look like?
Regards,
Gisbert Amm
Stephen Gray wrote:
Thanks very much. Is it possible to use bonsai or does viewcvs have to be
used?

-
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: changelog report links

2005-03-31 Thread Stephen Gray
Thanks very much. Is it possible to use bonsai or does viewcvs have to be
used?



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



Re: simple config query ...

2005-03-31 Thread Andrei Szabo
 
 You could put the following in your project.xml:


 servletapi
 servletapi
 2.4-20040521


 Andrei

--- goffredo <[EMAIL PROTECTED]> wrote:
> Hi,
> 
> I am sure this has been discussed before, so sorry
> for the repetition.
> I obtain this error from my first build of a
> particlar application on
> my machine:
> 
> >
>
C:\MelbourneNursingJava\users_from_e\nursing_rates\src\SampleServlet.java:12:
> > package javax.servlet.http does not exist import
> javax.servlet.http.*;
> 
> I have all sorts of servlet stuff on my machine, but
> I don't know how to
> include it in the Maven project.xml file. Can't I
> just set TOMCAT_HOME somewhere
> ?
> This error does not refer to a complete webapp, but
> simply to a sample
> servlet file that otherwise compiles fine under my
> IDE. I would simply like
> to include all the relevant javax.* jars and forget
> about it.
> 
> Any help appreciated.
> Regards
> Goffredo
> 
> 
> 
>
-
> To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> For additional commands, e-mail:
> [EMAIL PROTECTED]
> 
> 



__ 
Do you Yahoo!? 
Make Yahoo! your home page 
http://www.yahoo.com/r/hs

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