build failed+ant

View: New views
8 Messages — Rating Filter:   Alert me  

build failed+ant

by srinivas2828 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I am trying to buld webapplication when i typed "ant" command in terminal got message which says
miriyala@VAIO:~/Desktop/myapp$ ant
Buildfile: build.xml

prepare:

compile:
    [javac] Compiling 1 source file to /home/miriyala/Desktop/myapp/build/WEB-INF/classes

BUILD FAILED
/home/miriyala/Desktop/myapp/build.xml:288: /op/apache-tomcat-5.5.27/common/endorsed not found.

Total time: 0 seconds
please take look at build.xml file which  i have uploadedbuild.xml
thanks in advance

Re: build failed+ant

by Whatty :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

The target folder of the copy command doesn't exist, I am going to take a wild stab at it but I would have to say that it is most likely the missing "t" on the folder name "op"

/op/apache-tomcat-5.5.27/common/endorsed

srinivas2828 wrote:
I am trying to buld webapplication when i typed "ant" command in terminal got message which says
miriyala@VAIO:~/Desktop/myapp$ ant
Buildfile: build.xml

prepare:

compile:
    [javac] Compiling 1 source file to /home/miriyala/Desktop/myapp/build/WEB-INF/classes

BUILD FAILED
/home/miriyala/Desktop/myapp/build.xml:288: /op/apache-tomcat-5.5.27/common/endorsed not found.

Total time: 0 seconds
please take look at build.xml file which  i have uploadedbuild.xml
thanks in advance

Re: build failed+ant

by srinivas2828 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

thanks for your reply btw I am not able to understand what you mean and can you explain more clearly


The target folder of the copy command doesn't exist, I am going to take a wild stab at it but I would have to say that it is most likely the missing "t" on the folder name "op"

/op/apache-tomcat-5.5.27/common/endorsed

srinivas2828 wrote:
I am trying to buld webapplication when i typed "ant" command in terminal got message which says
miriyala@VAIO:~/Desktop/myapp$ ant
Buildfile: build.xml

prepare:

compile:
    [javac] Compiling 1 source file to /home/miriyala/Desktop/myapp/build/WEB-INF/classes

BUILD FAILED
/home/miriyala/Desktop/myapp/build.xml:288: /op/apache-tomcat-5.5.27/common/endorsed not found.

Total time: 0 seconds
please take look at build.xml file which  i have uploadedbuild.xml
thanks in advance


Re: build failed+ant

by Whatty :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

What is the path of your tomcat, is it really

/op/apache-tomcat-5.5.27/common/endorsed

or is it

/opt/apache-tomcat-5.5.27/common/endorsed




thanks for your reply btw I am not able to understand what you mean and can you explain more clearly

Whatty wrote:
The target folder of the copy command doesn't exist, I am going to take a wild stab at it but I would have to say that it is most likely the missing "t" on the folder name "op"

/op/apache-tomcat-5.5.27/common/endorsed

srinivas2828 wrote:
I am trying to buld webapplication when i typed "ant" command in terminal got message which says
miriyala@VAIO:~/Desktop/myapp$ ant
Buildfile: build.xml

prepare:

compile:
    [javac] Compiling 1 source file to /home/miriyala/Desktop/myapp/build/WEB-INF/classes

BUILD FAILED
/home/miriyala/Desktop/myapp/build.xml:288: /op/apache-tomcat-5.5.27/common/endorsed not found.

Total time: 0 seconds
please take look at build.xml file which  i have uploadedbuild.xml
thanks in advance

Re: build failed+ant

by srinivas2828 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

tomcat path is /opt/apache-tomcat-5.5.27 only

What is the path of your tomcat, is it really

/op/apache-tomcat-5.5.27/common/endorsed

or is it

/opt/apache-tomcat-5.5.27/common/endorsed




thanks for your reply btw I am not able to understand what you mean and can you explain more clearly

Whatty wrote:
The target folder of the copy command doesn't exist, I am going to take a wild stab at it but I would have to say that it is most likely the missing "t" on the folder name "op"

/op/apache-tomcat-5.5.27/common/endorsed

srinivas2828 wrote:
I am trying to buld webapplication when i typed "ant" command in terminal got message which says
miriyala@VAIO:~/Desktop/myapp$ ant
Buildfile: build.xml

prepare:

compile:
    [javac] Compiling 1 source file to /home/miriyala/Desktop/myapp/build/WEB-INF/classes

BUILD FAILED
/home/miriyala/Desktop/myapp/build.xml:288: /op/apache-tomcat-5.5.27/common/endorsed not found.

Total time: 0 seconds
please take look at build.xml file which  i have uploadedbuild.xml
thanks in advance


Re: build failed+ant

by Francis Galiegue-4 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On Fri, Oct 9, 2009 at 14:40, srinivas2828 <srinivas2828@...> wrote:
>
> tomcat path is /opt/apache-tomcat-5.5.27 only
>

Well then what Whatty said: spelling mistake. You wrote /op instead of /opt.

--

Francis Galiegue
ONE2TEAM
Ingénieur système
Mob : +33 (0) 683 877 875
Tel : +33 (0) 178 945 552
fge@...
40 avenue Raymond Poincaré
75116 Paris

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@...
For additional commands, e-mail: user-help@...


Re: build failed+ant

by srinivas2828 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

 thats great and got one more problem got this message
BUILD FAILED
/home/miriyala/Desktop/myapp/build.xml:380: The content of elements must consist of well-formed character data or markup.

Francis Galiegue-4 wrote:
On Fri, Oct 9, 2009 at 14:40, srinivas2828 <srinivas2828@gmail.com> wrote:
>
> tomcat path is /opt/apache-tomcat-5.5.27 only
>

Well then what Whatty said: spelling mistake. You wrote /op instead of /opt.

--

Francis Galiegue
ONE2TEAM
Ingénieur système
Mob : +33 (0) 683 877 875
Tel : +33 (0) 178 945 552
fge@one2team.com
40 avenue Raymond Poincaré
75116 Paris

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org

Re: build failed+ant

by srinivas2828 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

solved problem and compiled successfully but when I am typing url path it is not coming and when i checked in tomcat container the deployed project  there and i was unable to open and can you tell and here is the build.xml file build.xml or am i typing url wrong? can you make sure with this build.xml file and i am sending web.xml file also and here it isweb.xml
waiting for your replies...

 thats great and got one more problem got this message
BUILD FAILED
/home/miriyala/Desktop/myapp/build.xml:380: The content of elements must consist of well-formed character data or markup.

Francis Galiegue-4 wrote:
On Fri, Oct 9, 2009 at 14:40, srinivas2828 <srinivas2828@gmail.com> wrote:
>
> tomcat path is /opt/apache-tomcat-5.5.27 only
>

Well then what Whatty said: spelling mistake. You wrote /op instead of /opt.

--

Francis Galiegue
ONE2TEAM
Ingénieur système
Mob : +33 (0) 683 877 875
Tel : +33 (0) 178 945 552
fge@one2team.com
40 avenue Raymond Poincaré
75116 Paris

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscribe@ant.apache.org
For additional commands, e-mail: user-help@ant.apache.org