Issue1684855

classification
Title: Updated Jython ant task
Type: Severity: normal
Components: None Versions:
Milestone:
process
Status: closed Resolution: rejected
Dependencies: Superseder:
Assigned To: Nosy List: byronf, zyasoft
Priority: normal Keywords: patch

Created on 2007-03-21.02:17:47 by byronf, last changed 2008-09-14.01:26:46 by zyasoft.

Files
File name Uploaded Description Edit Remove
jythontask.patch byronf, 2007-03-21.02:17:47 Jython Task Patch
Messages
msg2694 (view) Author: Byron Foster (byronf) Date: 2007-03-21.02:17:47
The following patch provides an ant task which executes a python script from within an ant build file. An example usage would be as follows:

<jython pythonPath="foo.py">
  <arg value="123"/>
  <arg value="abc"/>
  <defvar name="var1" value="bar"/>
</jython>

This is an update of the same task I submitted a few years ago, but a little simplified.
msg3572 (view) Author: Jim Baker (zyasoft) Date: 2008-09-14.01:26:46
Currently there is no need for this task in Jython's build process. But
it could be interesting for other purposes.
History
Date User Action Args
2008-09-14 01:26:46zyasoftsetstatus: open -> closed
resolution: rejected
messages: + msg3572
nosy: + zyasoft
2007-03-21 02:17:47byronfcreate