/[Apache-SVN]/webservices/axis/trunk/java/buildTest.xml
ViewVC logotype

Log of /webservices/axis/trunk/java/buildTest.xml

Parent Directory Parent Directory | Revision Log Revision Log


Links to HEAD: (view) (annotate)
Sticky Revision:

Revision 557412 - (view) (annotate) - [select for diffs]
Modified Wed Jul 18 22:05:57 2007 UTC (2 years, 4 months ago) by gdaniels
File length: 16085 byte(s)
Diff to previous 531476 (colored)
Make sure arrays always have an itemQName, at least for now.

Also exclude failing test.

Revision 531476 - (view) (annotate) - [select for diffs]
Modified Mon Apr 23 14:18:49 2007 UTC (2 years, 7 months ago) by dug
File length: 15990 byte(s)
Diff to previous 264831 (colored)
remove non-failing exceptions from tests

Revision 264831 - (view) (annotate) - [select for diffs]
Modified Tue Aug 30 19:13:52 2005 UTC (4 years, 2 months ago) by dims
File length: 15838 byte(s)
Diff to previous 259986 (colored)
Move Axis 1.X


Revision 259986 - (view) (annotate) - [select for diffs]
Modified Thu Dec 2 15:28:24 2004 UTC (4 years, 11 months ago) by dims
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 15838 byte(s)
Diff to previous 258767 (colored)
Sometimes you need to set the JIKESPATH before running ant to get things working.

Revision 258767 - (view) (annotate) - [select for diffs]
Modified Fri Jul 23 08:18:12 2004 UTC (5 years, 4 months ago) by stevel
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 15775 byte(s)
Diff to previous 257870 (colored)
adding a description makes this target visible to a -projecthelp call.

Revision 257870 - (view) (annotate) - [select for diffs]
Modified Sun Apr 11 03:08:23 2004 UTC (5 years, 7 months ago) by dims
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 15738 byte(s)
Diff to previous 257863 (colored)
xtra available line

Revision 257863 - (view) (annotate) - [select for diffs]
Modified Sat Apr 10 06:22:10 2004 UTC (5 years, 7 months ago) by dims
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 15840 byte(s)
Diff to previous 257238 (colored)
Fix for AXIS-1293 - build fails without junit-exclude-tests.txt
Fix for AXIS-1292 - Build requires servlet.jar

Revision 257238 - (view) (annotate) - [select for diffs]
Modified Fri Dec 26 15:18:49 2003 UTC (5 years, 11 months ago) by gdaniels
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 15278 byte(s)
Diff to previous 257230 (colored)
The first item here seemed like a very simple change
to make - however once I did it all-tests wouldn't
run, and I gradually teased out all the other stuff
as a part of this process.  The "executive summary"
is that we weren't, and still aren't, handling
typing and array serialization very well in some
cases, although it's much better now.

* Respect the setting of the "send_type_attr" property
  when serializing.  We used to always turn off xsi
  types when in non-encoded mode.  Now instead we
  merely default to no type attributes when literal,
  allowing the property setting, if any, to
  override.

* Make sure property parent chains actually work.  On
  the client, doing a getProperty() on a MessageContext
  gets you MC -> Service -> Call -> Engine properties.
  On the server, it's MC -> Service -> Engine.

* SerializationContext now writes xsi:type onto an
  element if the "writeXmlType" variable is filled in
  when startElement() gets called.  It used to just
  throw the type value into the active Attributes
  object, which caused problems when that Attributes
  object was shared (which happened when serializing
  maxOccurs-style collections with the ArraySerializer;
  we'd end up with an attribute value "foo:bar" which
  would get written on each element, but the namespace
  declaration for "foo" would only be on the first
  one, producing invalid XML (!))

* Rationalize property handling in SerializationContext
  utilizing the property parent hierarchy.

* TypeMapping.getXmlType() now knows whether or not it
  is being used in a SOAP-encoded context, and if not,
  never returns SOAP_ARRAY for random arrays.

* ArraySerializerFactory gets a constructor which tells
  the serializer which java type and XML type it is
  being configured for.  This allows this information
  to pass through to the ArraySerializer itself.

* Remove the part of ArraySerializer that checks the
  name of the serialized element against a parameter
  in the current operation - we're not always
  serializing a parameter, so this is the wrong place
  for this.

* Respect the default config for sendXsiTypes when
  serializing arrays, and pass type info down to
  SerializationContext.serialize() for members.

* Add an accessor to get the current SOAP_ARRAY type
  from a SOAPConstants.

* Do a better job convert()ing to OctetStream.

* de-main()-ify a couple of junit tests (we used to
  like putting main()s on there, but since you can
  easily run the tests with junit.textui.TestRunner
  anyway, removing it makes test debugging inside
  IDEs much nicer)

* Allow Exceptions thrown by various tests to bubble
  up to the surface so we can see what actually went
  wrong.

* Exclude wsdl/adaptive test from the build and reopen
  bug #18056.  We need to figure out a better way of
  dealing with this.  I set up a framework for it by
  adding an "arrayTypeQNames" Set to SymbolTable, and
  checking against the set when figuring out if
  something is a SOAP array in SchemaUtils - didn't
  quite get it working though.

Revision 257230 - (view) (annotate) - [select for diffs]
Modified Wed Dec 24 12:12:30 2003 UTC (5 years, 11 months ago) by stevel
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 15166 byte(s)
Diff to previous 257222 (colored)
add specification of XSL directory to reporting

Revision 257222 - (view) (annotate) - [select for diffs]
Modified Mon Dec 22 22:47:39 2003 UTC (5 years, 11 months ago) by dims
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 15149 byte(s)
Diff to previous 257221 (colored)
one more

Revision 257221 - (view) (annotate) - [select for diffs]
Modified Mon Dec 22 19:50:17 2003 UTC (5 years, 11 months ago) by dims
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 15086 byte(s)
Diff to previous 257147 (colored)
peppering one more bootclasspath statement hoping to get Gumpy to work.

Revision 257147 - (view) (annotate) - [select for diffs]
Modified Fri Dec 12 13:33:12 2003 UTC (5 years, 11 months ago) by dims
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 15023 byte(s)
Diff to previous 257146 (colored)
fix bad checkin

Revision 257146 - (view) (annotate) - [select for diffs]
Modified Fri Dec 12 12:58:06 2003 UTC (5 years, 11 months ago) by dims
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 15024 byte(s)
Diff to previous 257113 (colored)
try again to fix gump test failures.

Revision 257113 - (view) (annotate) - [select for diffs]
Modified Sun Dec 7 04:05:36 2003 UTC (5 years, 11 months ago) by dims
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 14911 byte(s)
Diff to previous 256949 (colored)
Trying to fix gump failure.

Revision 256949 - (view) (annotate) - [select for diffs]
Modified Wed Nov 19 15:16:16 2003 UTC (6 years ago) by dims
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 14660 byte(s)
Diff to previous 256072 (colored)
Fix for Bug 22423 - 'ant clean functional-tests' does not work

Revision 256072 - (view) (annotate) - [select for diffs]
Modified Thu Mar 13 15:34:19 2003 UTC (6 years, 8 months ago) by dims
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 14552 byte(s)
Diff to previous 255959 (colored)
Test harness will now ignore test cases listed in junit-exclude-tests.txt

Notes:
- Ignoring test//dynamic//PackageTests till XMethods folks fix their TemperatureService.

Revision 255959 - (view) (annotate) - [select for diffs]
Modified Fri Feb 7 19:09:23 2003 UTC (6 years, 9 months ago) by gdaniels
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 14396 byte(s)
Diff to previous 255940 (colored)
Exclude WhiteMesaSOAP12TestSvcTestCase for now

Revision 255940 - (view) (annotate) - [select for diffs]
Modified Sat Feb 1 19:18:03 2003 UTC (6 years, 9 months ago) by gdaniels
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 14324 byte(s)
Diff to previous 255692 (colored)
This is apparently the right way to make sure the dataset test case
doesn't run by default.

Revision 255692 - (view) (annotate) - [select for diffs]
Modified Thu Nov 21 18:48:48 2002 UTC (7 years ago) by dims
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 14263 byte(s)
Diff to previous 255522 (colored)
Cleanup build to not exec the security functional tests if security jars are not present.

Revision 255522 - (view) (annotate) - [select for diffs]
Modified Thu Oct 17 20:41:10 2002 UTC (7 years, 1 month ago) by tomj
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 14504 byte(s)
Diff to previous 255361 (colored)
Enhancement 9393:
  http://nagoya.apache.org/bugzilla/show_bug.cgi?id=9393

Add the --extraClasses (-e) option to Java2WSDL.

Add the setExtraClasses(String) and setExtraClasses(Class[])
APIs to the Emitter class.

Update the reference documentation to include the --use
and --extraClasses switches.

Reworked the Style.java enumeration class which is refered
to in the docs to a) have the comments be in the Javadoc for
the class and b) escape the angle-brackets so thing show up
in the Javadoc correctly.

Add the extraClasses option to the Java2WSDL ant task.

Add a test case to test the new option (test/wsdl/extra)

In the process, clean up the functional test targets so
they do not start the TCP server, which is only needed for
the test.function tests.  This required some surgery on the
RunAntFunctionTests.java ant thingy.  The attributes were
changed from startTarget1/2 to tcpServerTarget and httpServerTarget.
stopTarget was changed to httpStopTarget.

I fixed up the test/function/build.xml file to not deploy
the whole world.

The test/wsdl/filegen test no longer needs to start
up ANY servers, as all its is doing is testing for file
existence.

NOTE: Any ant guru's out there, if we could prevent the AdminClient from
getting run when there are no deploy/undeploy files, that would be great.

Revision 255361 - (view) (annotate) - [select for diffs]
Modified Mon Sep 30 14:44:54 2002 UTC (7 years, 1 month ago) by dims
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 14449 byte(s)
Diff to previous 255336 (colored)
- Current test harness was running ALL tests with signature signing on (when xml-security is present). This is an overkill
- Switch to old behavior of running just a few tests with signature signing on.

Revision 255336 - (view) (annotate) - [select for diffs]
Modified Thu Sep 26 19:57:40 2002 UTC (7 years, 2 months ago) by seibert
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 14483 byte(s)
Diff to previous 255237 (colored)

Adding back in the inadvertantly remoed "interop3" target

Adding back in the function-tests-secure-only target

Revision 255237 - (view) (annotate) - [select for diffs]
Modified Thu Sep 19 15:58:02 2002 UTC (7 years, 2 months ago) by dims
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 13891 byte(s)
Diff to previous 255221 (colored)
Fixes to build system:

- adding inheritAll and inheritRefs flag to all "<ant" calls and set them to false by default.
- flags can be controlled from properties.xml
- sanitized "<ant" calls such that they have a dir attribute and the ant file attribute has the name of the build file relative to that dir
- cleanup interop a bit
- force a delete of samples/userguide/example6 classes to prevent gump failure.

Revision 255221 - (view) (annotate) - [select for diffs]
Modified Wed Sep 18 14:39:08 2002 UTC (7 years, 2 months ago) by seibert
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 14071 byte(s)
Diff to previous 255216 (colored)

This separates out the junit and functional tests into two targets
so that when you run one, it only does what is needed.

It also makes the comment on "my-forking-ant" a little more friendly

This also fixes the problem that running "ant all" doesn't run junit tests

Revision 255216 - (view) (annotate) - [select for diffs]
Modified Tue Sep 17 22:22:28 2002 UTC (7 years, 2 months ago) by rsitze
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 13158 byte(s)
Diff to previous 255157 (colored)
Previous hack to extend messages proved to be insufficient.
This change is a first step to making messages fully pluggable.

Revision 255157 - (view) (annotate) - [select for diffs]
Modified Thu Sep 12 13:18:23 2002 UTC (7 years, 2 months ago) by dims
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 13059 byte(s)
Diff to previous 255142 (colored)
collapse excludes.

Revision 255142 - (view) (annotate) - [select for diffs]
Modified Wed Sep 11 20:36:16 2002 UTC (7 years, 2 months ago) by seibert
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 15083 byte(s)
Diff to previous 255141 (colored)

A badly needed update of the junit-functional target

Revision 255141 - (view) (annotate) - [select for diffs]
Modified Wed Sep 11 20:30:13 2002 UTC (7 years, 2 months ago) by seibert
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 14461 byte(s)
Diff to previous 255128 (colored)

Removed the redundant PackageTest inclusion

This was a debate a few days ago, and after looking more closely, I realized I
included this include in the wrong place.

Should shave a few minutes off of a functional-tests run

Revision 255128 - (view) (annotate) - [select for diffs]
Modified Wed Sep 11 14:35:38 2002 UTC (7 years, 2 months ago) by dims
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 14516 byte(s)
Diff to previous 255103 (colored)
Added a "fork" option for ForEachTask to overcome memory problems.

Revision 255103 - (view) (annotate) - [select for diffs]
Modified Mon Sep 9 20:57:06 2002 UTC (7 years, 2 months ago) by seibert
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 14410 byte(s)
Diff to previous 255092 (colored)

Removed bad references (now the the components are all in place)

Fixed the dependancies to make them "shallower"

Revision 255092 - (view) (annotate) - [select for diffs]
Modified Mon Sep 9 16:48:08 2002 UTC (7 years, 2 months ago) by seibert
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 16505 byte(s)
Diff to previous 255091 (colored)

Exclude the httpunit test for now

Revision 255091 - (view) (annotate) - [select for diffs]
Modified Mon Sep 9 16:42:42 2002 UTC (7 years, 2 months ago) by seibert
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 16460 byte(s)
Diff to previous 255090 (colored)

Changed include to exclude

Revision 255090 - (view) (annotate) - [select for diffs]
Modified Mon Sep 9 16:37:27 2002 UTC (7 years, 2 months ago) by dims
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 16460 byte(s)
Diff to previous 255088 (colored)
Ignore httpunit build.xml for now...

Revision 255088 - (view) (annotate) - [select for diffs]
Modified Mon Sep 9 15:24:32 2002 UTC (7 years, 2 months ago) by seibert
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 16401 byte(s)
Diff to previous 255057 (colored)

Okay, here it is.

Everyone, ASAIHP (As Soon As Is Humanly Possible) please refresh their CVS
tree, and exec:

ant clean functional-tests

I'm on IRC all day.  Let me know if it doesn't work for you.

Revision 255057 - (view) (annotate) - [select for diffs]
Modified Thu Sep 5 17:54:23 2002 UTC (7 years, 2 months ago) by seibert
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 16447 byte(s)
Diff to previous 255037 (colored)

Corrected two more axis.home syntax problems

Revision 255037 - (view) (annotate) - [select for diffs]
Modified Wed Sep 4 19:10:39 2002 UTC (7 years, 2 months ago) by seibert
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 17105 byte(s)
Diff to previous 254958 (colored)

Corrected bad path reference (added the axis.home syntax)

Revision 254958 - (view) (annotate) - [select for diffs]
Modified Tue Aug 27 16:20:47 2002 UTC (7 years, 2 months ago) by seibert
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 17094 byte(s)
Diff to previous 254912 (colored)

Some cleanup

Revision 254912 - (view) (annotate) - [select for diffs]
Modified Fri Aug 23 16:09:20 2002 UTC (7 years, 3 months ago) by seibert
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 17141 byte(s)
Diff to previous 254896 (colored)

Removed redundant dependancy on "compile"

Revision 254896 - (view) (annotate) - [select for diffs]
Modified Thu Aug 22 17:52:52 2002 UTC (7 years, 3 months ago) by seibert
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 17149 byte(s)
Diff to previous 254872 (colored)

Modified to reflect new component build file names

Revision 254872 - (view) (annotate) - [select for diffs]
Modified Tue Aug 20 15:27:54 2002 UTC (7 years, 3 months ago) by seibert
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 15076 byte(s)
Diff to previous 254818 (colored)

Updated for final passes... I hope...

Changed path references to be relative to ${axis.home}

Revision 254818 - (view) (annotate) - [select for diffs]
Modified Wed Aug 14 16:35:31 2002 UTC (7 years, 3 months ago) by seibert
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 15852 byte(s)
Diff to previous 254810 (colored)

Reorganized some of my internal tasks building and tried to fix the tabs->spaces problems

Revision 254810 - (view) (annotate) - [select for diffs]
Modified Wed Aug 14 06:26:50 2002 UTC (7 years, 3 months ago) by stevel
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 15726 byte(s)
Diff to previous 254806 (colored)
fancy reporting code pulled from httpunit. Nb, why is the test reporting dir not under build/ ? seems to me it is another artifact that clean should clean up.

Revision 254806 - (view) (annotate) - [select for diffs]
Modified Wed Aug 14 05:30:15 2002 UTC (7 years, 3 months ago) by stevel
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 15273 byte(s)
Diff to previous 254805 (colored)
tab to space fixup,

Revision 254805 - (view) (annotate) - [select for diffs]
Modified Wed Aug 14 05:28:35 2002 UTC (7 years, 3 months ago) by stevel
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 15178 byte(s)
Diff to previous 254778 (colored)
because you shouldnt double resolve a path as windows hates it and ant reports an uninformative message

Revision 254778 - (view) (annotate) - [select for diffs]
Modified Fri Aug 9 19:53:45 2002 UTC (7 years, 3 months ago) by seibert
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 15188 byte(s)
Diff to previous 254773 (colored)

Changed all of my "Them" tasks to something more meaningful

Revision 254773 - (view) (annotate) - [select for diffs]
Modified Fri Aug 9 14:57:10 2002 UTC (7 years, 3 months ago) by seibert
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 14199 byte(s)
Diff to previous 254769 (colored)

I have added the architecture for my batchTest grouping (the first logical
expansion of the component framework).  It works by:
	1) Gathering all buildComponent.xml file names
	2) Starting the server
	3) calling the implicit junit-component target of each buildComponent.xml file
	4) Stopping the server

This very closely mimics the running of the current functional-tests target

Revision 254769 - (view) (annotate) - [select for diffs]
Modified Fri Aug 9 00:20:48 2002 UTC (7 years, 3 months ago) by stevel
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 13666 byte(s)
Diff to previous 254768 (colored)
backing out of tabs to spaces; whatever my space setting was, it made things worse

Revision 254768 - (view) (annotate) - [select for diffs]
Modified Fri Aug 9 00:17:06 2002 UTC (7 years, 3 months ago) by stevel
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 13762 byte(s)
Diff to previous 254756 (colored)
tabs to spaces

Revision 254756 - (view) (annotate) - [select for diffs]
Modified Wed Aug 7 20:24:54 2002 UTC (7 years, 3 months ago) by seibert
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 13666 byte(s)
Diff to previous 254745 (colored)

 Make the top-level structures component compliant

Revision 254745 - (view) (annotate) - [select for diffs]
Modified Wed Aug 7 17:40:40 2002 UTC (7 years, 3 months ago) by seibert
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 13413 byte(s)
Diff to previous 254742 (colored)

You can do the following to see the componetized execution in action

ant -buildfile buildTest.xml matt

Revision 254742 - (view) (annotate) - [select for diffs]
Modified Wed Aug 7 16:40:13 2002 UTC (7 years, 3 months ago) by seibert
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 13408 byte(s)
Diff to previous 254715 (colored)

Removed the duplicated targets that were abstracted into the last xmls/targets.xml
file alteration

Revision 254715 - (view) (annotate) - [select for diffs]
Modified Sun Aug 4 03:05:41 2002 UTC (7 years, 3 months ago) by rsitze
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 17089 byte(s)
Diff to previous 254694 (colored)
Move build.properties override to common properties.xml file.

Revision 254694 - (view) (annotate) - [select for diffs]
Modified Thu Aug 1 18:23:21 2002 UTC (7 years, 3 months ago) by seibert
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 17103 byte(s)
Diff to previous 254690 (colored)

Now we have 100% success on the tests that are being run

Revision 254690 - (view) (annotate) - [select for diffs]
Modified Thu Aug 1 16:06:13 2002 UTC (7 years, 3 months ago) by seibert
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 16330 byte(s)
Diff to previous 254680 (colored)

Changed dependancy on functional-tests to include test compilation

Revision 254680 - (view) (annotate) - [select for diffs]
Modified Tue Jul 30 15:35:09 2002 UTC (7 years, 3 months ago) by seibert
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 16322 byte(s)
Diff to previous 254670 (colored)

Added the obligatory copyright and "love me" tags to the top of the files to
establish their purpose, origin, and author.

Revision 254670 - (view) (annotate) - [select for diffs]
Modified Mon Jul 29 20:42:27 2002 UTC (7 years, 3 months ago) by seibert
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 15406 byte(s)
Diff to previous 254636 (colored)

Implemented new generic targets calls
Removed general dependancy on buildSamples in preference for component access

Revision 254636 - (view) (annotate) - [select for diffs]
Modified Tue Jul 23 23:47:04 2002 UTC (7 years, 4 months ago) by stevel
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 19914 byte(s)
Diff to previous 254629 (colored)
added more control of where things go; the property file should manage everything

Revision 254629 - (view) (annotate) - [select for diffs]
Modified Tue Jul 23 18:44:16 2002 UTC (7 years, 4 months ago) by stevel
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 19905 byte(s)
Diff to previous 254628 (colored)
rollback to ant1.4 compliance

Revision 254628 - (view) (annotate) - [select for diffs]
Modified Tue Jul 23 16:17:12 2002 UTC (7 years, 4 months ago) by scheu
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 19813 byte(s)
Diff to previous 254619 (colored)
Following changes made:

  * Fix for Bugzilla 11084, Stub variable collisions.
    The local variables are prepended with _.
    Removed qname variables that were generated for each parameter name.

  * Common code in the stub/skeleton/deploy writers for getting the
    qname type is combined in the new Utils.getXSIType(TypeEntry)
    method.  This change eliminates a lot of code and potential flaws.

  * Various minor changes to make the code more readable.

PR:
Obtained from:
Submitted by:
Reviewed by:

Revision 254619 - (view) (annotate) - [select for diffs]
Modified Tue Jul 23 01:14:23 2002 UTC (7 years, 4 months ago) by stevel
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 19812 byte(s)
Diff to previous 254617 (colored)
removed unneeded duplication of <property env>l titied up another test then cleaned up some target defns w/ descriptions and word wrap. probability of anythign breaking, pretty much minimal, only the debug condition underwent any effective change as now yes and true are also valid, and case is not important either.

...dunno what having env.debug does anyway. if you want debugging, set it in your own properites or to true on the command line

Revision 254617 - (view) (annotate) - [select for diffs]
Modified Tue Jul 23 01:06:10 2002 UTC (7 years, 4 months ago) by stevel
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 19822 byte(s)
Diff to previous 254616 (colored)
a quick raid by the tab-to-space police.

Revision 254616 - (view) (annotate) - [select for diffs]
Added Mon Jul 22 20:14:25 2002 UTC (7 years, 4 months ago) by butek
Original Path: webservices/axis1/trunk/java/buildTest.xml
File length: 19787 byte(s)
Phase I of Matt Seibert's test rearchitecture.

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a

apache@apache.org
ViewVC Help
Powered by ViewVC 1.1.2