[jira] Closed: (UIMA-1691) change checkout to export in extract and build scripts

2009-12-02 Thread Marshall Schor (JIRA)

 [ 
https://issues.apache.org/jira/browse/UIMA-1691?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Marshall Schor closed UIMA-1691.


Resolution: Fixed

 change checkout to export in extract and build scripts
 --

 Key: UIMA-1691
 URL: https://issues.apache.org/jira/browse/UIMA-1691
 Project: UIMA
  Issue Type: Improvement
  Components: Build, Packaging and Test
Reporter: Marshall Schor
Assignee: Marshall Schor
Priority: Trivial

 There's no need to keep svn tracking locally when doing builds.  This will 
 make things go slightly faster.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Reopened: (UIMA-5) re-organize docbook project and update ant build scripts

2007-02-12 Thread Michael Baessler (JIRA)

 [ 
https://issues.apache.org/jira/browse/UIMA-5?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michael Baessler reopened UIMA-5:
-


 re-organize docbook project and update ant build scripts
 

 Key: UIMA-5
 URL: https://issues.apache.org/jira/browse/UIMA-5
 Project: UIMA
  Issue Type: Task
  Components: Documentation
Reporter: Marshall Schor
 Assigned To: Marshall Schor
Priority: Minor

 Re-organize docbook project:
 1) not a Java project - no need for java builder / bin dir, etc.
 2) fix build to unzip docbook xml/xsl files once, into non-target spot.
 3) Dropped- not important share images with html and single-html - change 
 build to move to shared spot one up in dir tree.
 4) fix file subtree organization to fit xml build script conventions (get rid 
 of uima/docbook, use docbook/uima instead)

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Closed: (UIMA-5) re-organize docbook project and update ant build scripts

2007-02-12 Thread Michael Baessler (JIRA)

 [ 
https://issues.apache.org/jira/browse/UIMA-5?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Michael Baessler closed UIMA-5.
---

Fix Version/s: 2.1
   Resolution: Fixed

 re-organize docbook project and update ant build scripts
 

 Key: UIMA-5
 URL: https://issues.apache.org/jira/browse/UIMA-5
 Project: UIMA
  Issue Type: Task
  Components: Documentation
Reporter: Marshall Schor
 Assigned To: Marshall Schor
Priority: Minor
 Fix For: 2.1


 Re-organize docbook project:
 1) not a Java project - no need for java builder / bin dir, etc.
 2) fix build to unzip docbook xml/xsl files once, into non-target spot.
 3) Dropped- not important share images with html and single-html - change 
 build to move to shared spot one up in dir tree.
 4) fix file subtree organization to fit xml build script conventions (get rid 
 of uima/docbook, use docbook/uima instead)

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



Build scripts

2007-01-12 Thread Thilo Goetz
I added a small script that I use for testing the distribution: 
uimaj-distr/src/main/build/extractAndBuild.bat/.sh.  If you feel this is 
not a good place to have them, feel free to move them around.  I didn't 
add them to the scripts directory as we probably don't want to 
distribute them, and they're not user scripts of the kind we have in the 
scripts directory.


--Thilo


Re: Build scripts

2007-01-12 Thread Thilo Goetz

Adam Lally wrote:

On 1/12/07, Thilo Goetz [EMAIL PROTECTED] wrote:

I added a small script that I use for testing the distribution:
uimaj-distr/src/main/build/extractAndBuild.bat/.sh.  If you feel this is
not a good place to have them, feel free to move them around.  I didn't
add them to the scripts directory as we probably don't want to
distribute them, and they're not user scripts of the kind we have in the
scripts directory.



I'm OK with the location of the script, but I'm a little concerned
about the use of -Dmaven.test.skip=true.  I'd like to encourage people
to run the unit tests, not make it easier for them to be skipped.

Besides, when compared with building the docbooks, javadocs, etc...
they don't take that long. :-)

-Adam


When I wrote that script, some tests wouldn't pass and the build 
stopped.  Since I was interested in building the distribution, I removed 
the tests.  If our tests are at a stage now where they normally pass, 
let's just remove the switch.


I am surprised how fast the whole thing builds.  The whole extract + 
build + packaging takes barely 10 min on my machine.  I'm sure you all 
still remember the time it took to do a clean extract from cmvc ;-)


--Thilo


Re: Build scripts

2007-01-12 Thread Adam Lally

On 1/12/07, Thilo Goetz [EMAIL PROTECTED] wrote:

When I wrote that script, some tests wouldn't pass and the build
stopped.  Since I was interested in building the distribution, I removed
the tests.  If our tests are at a stage now where they normally pass,
let's just remove the switch.



The tests pass for me, and hopefully that will always be the normal
state of things.  (Do we still have tests that fail when run with IBM
Java 5, though?  I can't recall if that ever got fixed.)

I'm OK with the script accepting an argument that disables the tests.
Sometimes I do use this flag during development.  It just shouldn't be
the default behavior.

-Adam


Re: Build scripts

2007-01-12 Thread Thilo Goetz

Adam Lally wrote:

On 1/12/07, Thilo Goetz [EMAIL PROTECTED] wrote:

When I wrote that script, some tests wouldn't pass and the build
stopped.  Since I was interested in building the distribution, I removed
the tests.  If our tests are at a stage now where they normally pass,
let's just remove the switch.



The tests pass for me, and hopefully that will always be the normal
state of things.  (Do we still have tests that fail when run with IBM
Java 5, though?  I can't recall if that ever got fixed.)

I'm OK with the script accepting an argument that disables the tests.
Sometimes I do use this flag during development.  It just shouldn't be
the default behavior.

-Adam


Sounds good, I'll add a -notest flag or some such and make running the 
tests the default.  I also have to test this on Linux, actually.  I just 
checked it in without ever testing it.  If anybody tries this before I 
do and finds any problems, please fix or drop me a line.  I don't 
currently have a Linux development machine set up, I was planning on 
doing that next week.


Err, IBM Java 5, now you mention it, I'm not sure I ever fixed that. 
Let me check...


--Thilo



Re: Build scripts

2007-01-12 Thread Marshall Schor

Thilo Goetz wrote:

snip

Err, IBM Java 5, now you mention it, I'm not sure I ever fixed that. 
Let me check...


It's still broken - issue is some test depends on ordering of items 
gotten from a hashmap.  It's broken when running with IBM Java 5.0.  
Works with Sun 5.0 according to Adam


-Marshall



[jira] Updated: (UIMA-5) re-organize docbook project and update ant build scripts

2006-11-23 Thread Marshall Schor (JIRA)
 [ http://issues.apache.org/jira/browse/UIMA-5?page=all ]

Marshall Schor updated UIMA-5:
--

Description: 
Re-organize docbook project:
1) not a Java project - no need for java builder / bin dir, etc.
2) fix build to unzip docbook xml/xsl files once, into non-target spot.
3) Dropped- not important share images with html and single-html - change 
build to move to shared spot one up in dir tree.
4) fix file subtree organization to fit xml build script conventions (get rid 
of uima/docbook, use docbook/uima instead)


  was:
Re-organize docbook project:
1) not a Java project - no need for java builder / bin dir, etc.
2) fix build to unzip docbook xml/xsl files once, into non-target spot.
3) share images with html and single-html - change build to move to shared spot 
one up in dir tree.
4) fix file subtree organization to fit xml build script conventions (get rid 
of uima/docbook, use docbook/uima instead)



 re-organize docbook project and update ant build scripts
 

 Key: UIMA-5
 URL: http://issues.apache.org/jira/browse/UIMA-5
 Project: UIMA
  Issue Type: Task
  Components: Documentation
Reporter: Marshall Schor
 Assigned To: Marshall Schor
Priority: Minor

 Re-organize docbook project:
 1) not a Java project - no need for java builder / bin dir, etc.
 2) fix build to unzip docbook xml/xsl files once, into non-target spot.
 3) Dropped- not important share images with html and single-html - change 
 build to move to shared spot one up in dir tree.
 4) fix file subtree organization to fit xml build script conventions (get rid 
 of uima/docbook, use docbook/uima instead)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Work started: (UIMA-5) re-organize docbook project and update ant build scripts

2006-11-23 Thread Marshall Schor (JIRA)
 [ http://issues.apache.org/jira/browse/UIMA-5?page=all ]

Work on UIMA-5 started by Marshall Schor.

 re-organize docbook project and update ant build scripts
 

 Key: UIMA-5
 URL: http://issues.apache.org/jira/browse/UIMA-5
 Project: UIMA
  Issue Type: Task
  Components: Documentation
Reporter: Marshall Schor
 Assigned To: Marshall Schor
Priority: Minor

 Re-organize docbook project:
 1) not a Java project - no need for java builder / bin dir, etc.
 2) fix build to unzip docbook xml/xsl files once, into non-target spot.
 3) Dropped- not important share images with html and single-html - change 
 build to move to shared spot one up in dir tree.
 4) fix file subtree organization to fit xml build script conventions (get rid 
 of uima/docbook, use docbook/uima instead)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Closed: (UIMA-5) re-organize docbook project and update ant build scripts

2006-11-23 Thread Marshall Schor (JIRA)
 [ http://issues.apache.org/jira/browse/UIMA-5?page=all ]

Marshall Schor closed UIMA-5.
-


 re-organize docbook project and update ant build scripts
 

 Key: UIMA-5
 URL: http://issues.apache.org/jira/browse/UIMA-5
 Project: UIMA
  Issue Type: Task
  Components: Documentation
Reporter: Marshall Schor
 Assigned To: Marshall Schor
Priority: Minor

 Re-organize docbook project:
 1) not a Java project - no need for java builder / bin dir, etc.
 2) fix build to unzip docbook xml/xsl files once, into non-target spot.
 3) Dropped- not important share images with html and single-html - change 
 build to move to shared spot one up in dir tree.
 4) fix file subtree organization to fit xml build script conventions (get rid 
 of uima/docbook, use docbook/uima instead)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Resolved: (UIMA-5) re-organize docbook project and update ant build scripts

2006-11-23 Thread Marshall Schor (JIRA)
 [ http://issues.apache.org/jira/browse/UIMA-5?page=all ]

Marshall Schor resolved UIMA-5.
---

Resolution: Fixed

 re-organize docbook project and update ant build scripts
 

 Key: UIMA-5
 URL: http://issues.apache.org/jira/browse/UIMA-5
 Project: UIMA
  Issue Type: Task
  Components: Documentation
Reporter: Marshall Schor
 Assigned To: Marshall Schor
Priority: Minor

 Re-organize docbook project:
 1) not a Java project - no need for java builder / bin dir, etc.
 2) fix build to unzip docbook xml/xsl files once, into non-target spot.
 3) Dropped- not important share images with html and single-html - change 
 build to move to shared spot one up in dir tree.
 4) fix file subtree organization to fit xml build script conventions (get rid 
 of uima/docbook, use docbook/uima instead)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Created: (UIMA-5) re-organize docbook project and update ant build scripts

2006-11-13 Thread Marshall Schor (JIRA)
re-organize docbook project and update ant build scripts


 Key: UIMA-5
 URL: http://issues.apache.org/jira/browse/UIMA-5
 Project: UIMA
  Issue Type: Task
  Components: Documentation
Reporter: Marshall Schor
Priority: Minor


Re-organize docbook project:
1) not a Java project - no need for java builder / bin dir, etc.
2) fix build to unzip docbook xml/xsl files once, into non-target spot.
3) share images with html and single-html - change build to move to shared spot 
one up in dir tree.
4) fix file subtree organization to fit xml build script conventions (get rid 
of uima/docbook, use docbook/uima instead)


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira




[jira] Assigned: (UIMA-5) re-organize docbook project and update ant build scripts

2006-11-13 Thread Marshall Schor (JIRA)
 [ http://issues.apache.org/jira/browse/UIMA-5?page=all ]

Marshall Schor reassigned UIMA-5:
-

Assignee: Marshall Schor

 re-organize docbook project and update ant build scripts
 

 Key: UIMA-5
 URL: http://issues.apache.org/jira/browse/UIMA-5
 Project: UIMA
  Issue Type: Task
  Components: Documentation
Reporter: Marshall Schor
 Assigned To: Marshall Schor
Priority: Minor

 Re-organize docbook project:
 1) not a Java project - no need for java builder / bin dir, etc.
 2) fix build to unzip docbook xml/xsl files once, into non-target spot.
 3) share images with html and single-html - change build to move to shared 
 spot one up in dir tree.
 4) fix file subtree organization to fit xml build script conventions (get rid 
 of uima/docbook, use docbook/uima instead)

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira