Re: How to automize Ant

2008-09-18 Thread Jan K

I have Apache Activemq.bat file for a mobile application.I need to configure
this file in Apache Ant build.xml file.I am using linux box.can u help me.

Jan K wrote:
 
 Hi,
 
 I am new to apache ant.I just know for what purpose we use ant.Now i need
 to  automize my project with ant.My requirement is Whenever i checkin my
 code,the build and deploy  should be done automatically.Also a
 notification should be send to QA team.Also the build and deploy should be
 carried out automatically in my onsite server also.This should be done for
 all the java projects running in our company.How can i do this,Please help
 me.Please.Thanks in advance.
 

-- 
View this message in context: 
http://www.nabble.com/How-to-automize-Ant-tp19251721p19546615.html
Sent from the Ant - Dev mailing list archive at Nabble.com.


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



How to configure batch file in build.xml

2008-09-18 Thread Jan K

I am new to ant.I need to configure batch file in Ant.I have Apache ActiveMq
installed for my mobile application.I need to include the activemq.bat file
in build.xml.Can you help me how to do this.I tried with exec command.
target name=test 
 exec dir=. executable=cmd spawn=true
   arg line=/c start activemq.bat/
 /exec 
/target

target name=default
antcall target=test /
   
  /target

Let me know what is wrong?
-- 
View this message in context: 
http://www.nabble.com/How-to-configure-batch-file-in-build.xml-tp19547045p19547045.html
Sent from the Ant - Dev mailing list archive at Nabble.com.


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



Re: How to automize Ant

2008-09-17 Thread Jan K

How should i configure activemq.bat file in Apache ant.I am using Ubuntu.

Thorsten Scherler-3 wrote:
 
 On Mon, 2008-09-01 at 03:17 -0700, Jan K wrote:
 Hi,
 Thanks for your quick response.I dont know any of these stuffs.Can you
 please elaborate me in more so that it will be of a great help.Can you
 please put in points as what should i do and how it can be done.Looking
 forward for your reply.
 
 If you do not have any clue about svn/cvs hooks then to set up
 everything by hand is quite a lot. How to write a svn hook that is best
 covered in the svn manual. http://svnbook.red-bean.com/
 
 However I strongly recommend one of the Continuous Integration tools
 that are already out there.
 
 Like said have a look at http://continuum.apache.org/,
 http://cruisecontrol.sourceforge.net/ and https://hudson.dev.java.net/.
 
 Play around with them and choose the one that best fits your needs.
 
 salu2
 
 
 
 
 Thorsten Scherler-3 wrote:
  
  On Mon, 2008-09-01 at 02:40 -0700, Jan K wrote:
  Hi,
  
  I am new to apache ant.I just know for what purpose we use ant.Now i
 need
  to 
  automize my project with ant.My requirement is Whenever i checkin my
  code,the build and deploy  should be done automatically.
  
  Well there are a couple of our of the box tools for that
  http://en.wikipedia.org/wiki/Continuous_Integration
  
  Here on apache there are http://continuum.apache.org/ and
  http://gump.apache.org/ but the list is long as you may see from the
  websites above.
  
  Basically what you need to do (the poor men approach) is create a
  post-commit hook in your svn server that triggers the build. 
  
  The rest is done by your build script.
  
  HTH
  
  salu2
  
  Also a notification
  should be send to QA team.Also the build and deploy should be carried
 out
  automatically in my onsite server also.This should be done for all the
  java
  projects running in our company.How can i do this,Please help
  me.Please.Thanks in advance.
  -- 
  Thorsten Scherler
 thorsten.at.apache.org
  Open Source Java  consulting, training and
 solutions
  
  
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
  
  
  
 
 -- 
 Thorsten Scherler thorsten.at.apache.org
 Open Source Java  consulting, training and solutions
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 

-- 
View this message in context: 
http://www.nabble.com/How-to-automize-Ant-tp19251721p19526638.html
Sent from the Ant - Dev mailing list archive at Nabble.com.


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



How to automize Ant

2008-09-01 Thread Jan K

Hi,

I am new to apache ant.I just know for what purpose we use ant.Now i need to 
automize my project with ant.My requirement is Whenever i checkin my
code,the build and deploy  should be done automatically.Also a notification
should be send to QA team.Also the build and deploy should be carried out
automatically in my onsite server also.This should be done for all the java
projects running in our company.How can i do this,Please help
me.Please.Thanks in advance.
-- 
View this message in context: 
http://www.nabble.com/How-to-automize-Ant-tp19251721p19251721.html
Sent from the Ant - Dev mailing list archive at Nabble.com.


Re: How to automize Ant

2008-09-01 Thread Jan K

Hi,
Thanks for your quick response.I dont know any of these stuffs.Can you
please elaborate me in more so that it will be of a great help.Can you
please put in points as what should i do and how it can be done.Looking
forward for your reply.



Thorsten Scherler-3 wrote:
 
 On Mon, 2008-09-01 at 02:40 -0700, Jan K wrote:
 Hi,
 
 I am new to apache ant.I just know for what purpose we use ant.Now i need
 to 
 automize my project with ant.My requirement is Whenever i checkin my
 code,the build and deploy  should be done automatically.
 
 Well there are a couple of our of the box tools for that
 http://en.wikipedia.org/wiki/Continuous_Integration
 
 Here on apache there are http://continuum.apache.org/ and
 http://gump.apache.org/ but the list is long as you may see from the
 websites above.
 
 Basically what you need to do (the poor men approach) is create a
 post-commit hook in your svn server that triggers the build. 
 
 The rest is done by your build script.
 
 HTH
 
 salu2
 
 Also a notification
 should be send to QA team.Also the build and deploy should be carried out
 automatically in my onsite server also.This should be done for all the
 java
 projects running in our company.How can i do this,Please help
 me.Please.Thanks in advance.
 -- 
 Thorsten Scherler thorsten.at.apache.org
 Open Source Java  consulting, training and solutions
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 

-- 
View this message in context: 
http://www.nabble.com/How-to-automize-Ant-tp19251721p19252177.html
Sent from the Ant - Dev mailing list archive at Nabble.com.


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



Re: How to automize Ant

2008-09-01 Thread Jan K

Hi,
I have downloaded the cruisecontrol.I have cvs.Can you let me know what
should i do next or can you give me any documentation on it.Please guide me.
 

Thorsten Scherler-3 wrote:
 
 On Mon, 2008-09-01 at 02:40 -0700, Jan K wrote:
 Hi,
 
 I am new to apache ant.I just know for what purpose we use ant.Now i need
 to 
 automize my project with ant.My requirement is Whenever i checkin my
 code,the build and deploy  should be done automatically.
 
 Well there are a couple of our of the box tools for that
 http://en.wikipedia.org/wiki/Continuous_Integration
 
 Here on apache there are http://continuum.apache.org/ and
 http://gump.apache.org/ but the list is long as you may see from the
 websites above.
 
 Basically what you need to do (the poor men approach) is create a
 post-commit hook in your svn server that triggers the build. 
 
 The rest is done by your build script.
 
 HTH
 
 salu2
 
 Also a notification
 should be send to QA team.Also the build and deploy should be carried out
 automatically in my onsite server also.This should be done for all the
 java
 projects running in our company.How can i do this,Please help
 me.Please.Thanks in advance.
 -- 
 Thorsten Scherler thorsten.at.apache.org
 Open Source Java  consulting, training and solutions
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 

-- 
View this message in context: 
http://www.nabble.com/How-to-automize-Ant-tp19251721p19264294.html
Sent from the Ant - Dev mailing list archive at Nabble.com.


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