Re: Export Control Data for your product

2011-08-03 Thread Stefan Bodewig
On 2011-08-03, Ettinger, Werner J. (E D EA SPR P 2) wrote: > To comply with the U.S. export control laws we kindly ask you to > provide us with the export relevant data (such as ECCN and CCATS) for > your product: > Apache ANT I hope <http://www.apache.org/licenses/exports

RE: Programatic ANT: Export Build.xml

2011-06-20 Thread Echlin, Robert
> -Original Message- > From: Dark Before Dawn [mailto:dark.before.d...@gmail.com] > Sent: Friday, June 17, 2011 2:29 PM > To: user@ant.apache.org > Subject: Re: Programatic ANT: Export Build.xml > > Am 17.06.2011 17:13, schrieb Dominique Devienne: > > On Thu, Jun 16, 2011 at

Re: Programatic ANT: Export Build.xml

2011-06-17 Thread Dark Before Dawn
Am 17.06.2011 17:13, schrieb Dominique Devienne: On Thu, Jun 16, 2011 at 11:31 PM, Dark Before Dawn wrote: I would like to use apache-ant-1.8.2 in JavaSE, to generate build.xml Files dynamically. Is there a way to export a Project Object as xml File via Writer/Stream? Nope. And I don't

Re: Programatic ANT: Export Build.xml

2011-06-17 Thread Dominique Devienne
On Thu, Jun 16, 2011 at 11:31 PM, Dark Before Dawn wrote: > I would like to use apache-ant-1.8.2 in JavaSE, to generate build.xml Files > dynamically. Is there a way to export a Project Object as xml File via > Writer/Stream? Nope. And I don't think it's possible (or easy) to

Programatic ANT: Export Build.xml

2011-06-16 Thread Dark Before Dawn
Hi there, I would like to use apache-ant-1.8.2 in JavaSE, to generate build.xml Files dynamically. Is there a way to export a Project Object as xml File via Writer/Stream? CodeSnippet: Project p = new Project(); p.setName("test"); p.setDefault("test&quo

RE: SSL keystore export/import with ant tasks.

2009-11-01 Thread Dalton, Tom
2009 15:12 To: Ant Users List Subject: Re: SSL keystore export/import with ant tasks. I don't believe there is a way to do this with pure Ant currently. As you mention, options are exec task or write your own task. The key to writing your own taks would be to find a java implementation of ke

Re: SSL keystore export/import with ant tasks.

2009-10-30 Thread Robert Anderson
eady existing stores are as follows (And if i'm doing > something blatantly wrong, please correct me.). > > *keytool -export -keystore server.store -storepass server -alias Server > -file server.cer > keytool -import -alias Server -file server.cer -keystore client.store > -storep

SSL keystore export/import with ant tasks.

2009-10-15 Thread Max Danielsson
something blatantly wrong, please correct me.). *keytool -export -keystore server.store -storepass server -alias Server -file server.cer keytool -import -alias Server -file server.cer -keystore client.store -storepass nmsclient keytool -export -keystore client.store -storepass client -alias Clie

Re: ECCN/Export Apache Ant

2008-03-13 Thread Stefan Bodewig
e may have restrictions on the import, | possession, use, and/or re-export to another country, of | encryption software. BEFORE using any encryption software, please | check your country's laws, regulations and policies concerning the | import, possession, or use, and re-export of e

Re: ECCN/Export Apache Ant

2008-03-12 Thread Steve Loughran
Tyler Ward wrote: I need some help regarding the ECCN for Apache Ant 1.6.5. The Apache site at HYPERLINK "https://redowa.esri.com/exchweb/bin/redir.asp?URL=http://www.apache.org/lic enses/exports/" \nhttp://www.apache.org/licenses/exports/ lists the ECCN for Ant as 5D002 TSU. Is Ant classifie

ECCN/Export Apache Ant

2008-03-12 Thread Tyler Ward
I need some help regarding the ECCN for Apache Ant 1.6.5. The Apache site at HYPERLINK "https://redowa.esri.com/exchweb/bin/redir.asp?URL=http://www.apache.org/lic enses/exports/" \nhttp://www.apache.org/licenses/exports/ lists the ECCN for Ant as 5D002 TSU. Is Ant classified as 5D002 because i

Re: cvs export issue in ANT

2007-06-14 Thread Chris Velevitch
If you're trying to update an existing working directory use update. I use export whenever I'm building a system for deployment or testing, so I always create a new directory empty. Helps pickup issues like forgetting to check files I've changed. On 14 Jun 2007 08:18:08 -

cvs export issue in ANT

2007-06-14 Thread query
  When I tried to export new revision file from cvs, it is not replacing old file with the new file. It is showing the below error and continues. [cvs] cvs export: move away E:\ANTBUILD\eg\sample.java; it is in the way [cvs] C E:\ANTBUILD\eg\sample.java To export the new file, old file needs

Export Mysql tables as sql in Ant

2007-04-26 Thread Joe Smith
Is there anyway to export tables in mysql as sql statements? I know that DbUnit can export as XML but what about exporting as sql? -- View this message in context: http://www.nabble.com/Export-Mysql-tables-as-sql-in-Ant-tf3653916.html#a10207925 Sent from the Ant - Users mailing list archive at

Re: Pathname issue in cvs export command

2007-04-05 Thread Dominique Devienne
On 5 Apr 2007 06:14:33 -, query <[EMAIL PROTECTED]> wrote: Here, I want to export only gif files in java/gui/images to ${temp}by shortening the pathnames. But it is exorting gif files to ${temp}/java/gui/images. I don't know such a CVS option, but I'm no CVS expert. OTOH

Pathname issue in cvs export command

2007-04-05 Thread query
  Hi, I am using cvs task to export modules. Here, I want to export only gif files in java/gui/images to ${temp}by shortening the pathnames. But it is exorting gif files to ${temp}/java/gui/images. I tried using commanline option -d also. But it is giving error. 1. 2. 3

Re: How to call the export command in LINUX using Ant element.

2006-09-13 Thread Alexey N. Solofnenko
If you really need it, specify it in inside . I myself prefer to set all environment variables before starting ANT - in that case all child processes will get them automatically. - Alexey. Nagender Malik wrote: Hi, How to call the export command in LINUX using Ant element. Regards

AW: How to call the export command in LINUX using Ant element.

2006-09-13 Thread Jan.Materne
simply as each other script BUT: Ant starts a new instance of the command interpreter and AFIAK the export statement would not have any effect for the machine (only for that process). Jan >-Ursprüngliche Nachricht- >Von: Nagender Malik >[mailto:[EMAIL PROTECTED]

How to call the export command in LINUX using Ant element.

2006-09-13 Thread Nagender Malik
Hi, How to call the export command in LINUX using Ant element. Regards, Nagender

Re: Ant script to export projects to a DataBase

2006-06-29 Thread Ben Stringer
On Thu, 2006-06-29 at 19:09 +0530, Deepak Rao wrote: > Hi, > I have to export some projects to database (MySql). > The DB script pertaining to that project is already written in the database. > How can we do this task (of exporting projects ) using the ANT ? > > hope someon

Ant script to export projects to a DataBase

2006-06-29 Thread Deepak Rao
Hi, I have to export some projects to database (MySql). The DB script pertaining to that project is already written in the database. How can we do this task (of exporting projects ) using the ANT ? hope someone has an idea. Thanks and Regards Deepak Rao

export

2005-10-07 Thread Wolfgang Häfelinger
l, have no clue how to do it) is the other way around. I want to be able to "export" the final build script. For example, let's assume that b0.xml just contains this: hello b0.xml and b1.xml shall contain hello b1.xml then I would like to see this (prin

RE: how to export a reference ?

2003-02-28 Thread SimonRichardson2
ginal Message- > From: Romain Rouvoy [mailto:[EMAIL PROTECTED] > Sent: 28 February 2003 13:53 > To: Ant Users List > Subject: Re: how to export a reference ? > > > Hi, > > This option (inheritrefs) is usefull when you want to > export from the root build.xml to

Re: how to export a reference ?

2003-02-28 Thread Romain Rouvoy
Hi, This option (inheritrefs) is usefull when you want to export from the root build.xml to the nested build.xml but I wan't to know how to export from the nested build.xml to the calling root build.xml. =) On Fri, 28 Feb 2003 06:52:53 -0600 "Steve Cohen" <[EMAIL