Commit Graph

3040 Commits

Author SHA1 Message Date
Josh Long
a6ed81ffbe updated the pom.xml file 2010-05-26 03:33:24 +00:00
Chris Beams
d2dab0b7c0 added instruction to emit warnings on redundant casts 2010-05-25 23:18:36 +00:00
Chris Beams
e5219dfe8f eliminated all compiler warnings throughout all projects
updated pom to emit compiler warnings so that any new ones become obvious
added serialVersionUID to classes that could reasonably need to be serialized (GenericMessage, MessageHeaders, etc)
@SuppressWarnings("serial") on all others
@SuppressWarnings("unused") on private static classes used as spring beans for testing (their methods never get called from java)
eliminated all redundant casting
introducted generics metadata where raw types were still being used
changed public API on several FactoryBeans (by adding <Type> information to 'implements FactoryBean' clause)
2010-05-25 23:18:25 +00:00
Chris Beams
8599343832 removing empty org.springframework.integration.* directories 2010-05-25 16:27:13 +00:00
Chris Beams
47b91dc7fd removed all build.xml and ivy.xml files 2010-05-25 13:22:00 +00:00
Chris Beams
c08a7a657e renamed modules org.springframework.integration.* -> spring-integration-*
@Ignore'd SimpleTcpNetOutboundGatewayTests#testOutboundClose() to avoid failure; this failure is correlated to the module name change, but hard to understand how it would be caused by it
2010-05-25 13:21:25 +00:00
Chris Beams
b97b2fb090 removed spring build artifacts and externals 2010-05-25 12:12:41 +00:00
Mark Fisher
41e55caf36 INT-1148 Added test for independent ThreadLocalChannel instances after changes in https://fisheye.springsource.org/changelog/spring-integration/?cs=3205 2010-05-24 19:08:23 +00:00
Chris Beams
d9123c968d removed exclusion for PropertyPlaceholderConfigurer 2010-05-24 17:51:22 +00:00
Chris Beams
f1b9b1b51d added spring-javadoc css for s2 green L&F; updated pom to reflect; removed old javadoc L&F 2010-05-24 17:51:21 +00:00
Gary Russell
0e2d4acd61 INT-1145 Remove timing hole in test case where the "server" had not yet closed the socket before we attempted to send the next message. 2010-05-24 17:08:30 +00:00
Mark Fisher
0fb845ed4d made the ThreadLocalMessageHolder non-static 2010-05-24 15:57:50 +00:00
Mark Fisher
b90061bf47 updated POM descriptions to be consistent with 'Support' 2010-05-24 14:52:34 +00:00
Mark Fisher
57eddef9d9 renamed MultiMethodGatewayConfig to MultiMethodGatewayConfigTests 2010-05-24 14:50:39 +00:00
Gary Russell
89705c4fe0 INT-1145 Retry Write After Socket Close and Clean up Reader in o/b Gateway 2010-05-24 14:36:09 +00:00
Mark Fisher
a2c70f53fb renamed RegexUtilsTest to RegexUtilsTests 2010-05-24 14:28:56 +00:00
Mark Fisher
9540eaf508 renamed AbstractReplyProducingMessageHandlerTest to AbstractReplyProducingMessageHandlerTests 2010-05-24 14:25:57 +00:00
Mark Fisher
00886c6f67 renamed AggregateMessageDeliveryExceptionTest to AggregateMessageDeliveryExceptionTests 2010-05-24 14:24:24 +00:00
Mark Fisher
ba7c600d7e renamed ConstructorAutowireTest to ConstructorAutowireTests 2010-05-24 14:22:42 +00:00
Mark Fisher
9cf953c677 renamed AggregationResendTest to AggregationResendTests 2010-05-24 14:18:48 +00:00
Mark Fisher
25849540ae renamed RecursiveLeafOnlyDirectoryScannerTest to RecursiveLeafOnlyDirectoryScannerTests 2010-05-24 14:15:46 +00:00
Mark Fisher
819ae54905 updated configuration of bean in separate test that depended on MockHandlerTests (just renamed from MockHandlerTest) 2010-05-24 14:04:01 +00:00
Mark Fisher
d8c1d01f3c renamed MockHandlerTest to MockHandlerTests 2010-05-24 13:56:25 +00:00
Mark Fisher
c4167b1939 renamed PNamespaceTest to PNamespaceTests 2010-05-23 15:12:57 +00:00
Gary Russell
dfe7f06d5d Change name in ip pom.xml from 'Spring Integration UDP Adapters' to 'Spring Integration TCP and UDP Support' 2010-05-22 20:23:30 +00:00
Chris Beams
57ab060e23 temporarily re-adding spring-integration-reference to keep the nightly ant build happy 2010-05-21 10:22:00 +00:00
Chris Beams
f9ae5761dc touched up javadoc overview 2010-05-20 18:23:08 +00:00
Chris Beams
233994116c eliminated all javadoc warnings; no API changes, with the exception of adding generics metadata to GatewayProxyFactoryBean (now 'implements FactoryBean<Object>'). 2010-05-20 17:50:32 +00:00
Chris Beams
cf6027e3b7 javadoc build infrastructure in place; mvn site will aggregate all javadoc under ${basedir}/target/site/apidocs. note that this is not (yet) in line with the s2 'green' l&f for javadoc; that will come later. 2010-05-20 17:49:39 +00:00
Chris Beams
1df136848e bundlor integration with the Maven build is complete; happens as part of the normal compile lifecycle (read: no special invocation necessary) 2010-05-20 11:08:11 +00:00
Chris Beams
83cac18b6e * unified parent and root poms (eliminates the need for spring-integration-parent, however it's still there to make spring-build happy in the meantime)
* incremental progress on getting docbkx working
  - downgraded docbook 4.5 -> 4.4 because of "URI is not file" errors (`find src/docbkx/*.xml | xargs grep -l '4\.5' | xargs perl -p -i -e 's/4\.5/4.4/g'`)
  - eliminated spring-integration-reference in favor of idiomatic src/docbkx under project root
  - using xsl from spring-ws to get things working. need to figure out how to integrate previous xsl, however (it's still there), because the L&F is quite different now
  - upgraded version of docbkx plugin to 2.0.9
2010-05-20 09:37:33 +00:00
David Syer
e2e12980af INT-1140: fix bug in the unit test 2010-05-19 10:31:05 +00:00
Chris Beams
43310c9cab general pom cleanup
* normalizing version placeholders to use ${groupId}.version as a naming convention e.g.: 'org.springframework.version'
* added properties to parent pom <properties/> section
* spaces -> tabs
* removed empty newlines in poms (favor comments instead of newlines)
* gave all samples nice <name>s
* included ws-inbound-gateway in the samples parent pom <modules> section
* samples now try to run any **/*Tests.java, as per our general conventions
2010-05-19 09:41:37 +00:00
David Syer
b6c0d4f5ad INT-1140: register callbacks in setter 2010-05-16 13:19:44 +00:00
David Syer
6302f21460 INT-1082: Add another test for header expressions 2010-05-15 10:41:39 +00:00
David Syer
44ddbb8f92 INT-1082: Add tests for header expressions 2010-05-15 03:25:19 +00:00
Chris Beams
657d173fe7 mv .jdbc src/main/resources/**/* -> src/test/java/**/* 2010-05-14 16:05:12 +00:00
Chris Beams
3bcb5a726a Added log4j to maven build at test time to avoid spurious INFO logging
Updated log4j.xml files to quell debug/info output
Moved src/test/resources/**/* -> src/main/resources/**/* for the time being to fix the jdbc build
Eliminated several System.out.println calls in tests
2010-05-14 15:34:17 +00:00
Iwein Fuld
761b0ff9f2 INT-1137: added example of prevent-duplicates and an extra comment about filename-pattern 2010-05-12 17:26:49 +00:00
Iwein Fuld
3377dec0cd added .settings to .gitignore 2010-05-12 17:26:42 +00:00
Mark Fisher
cf8b66436d excluding optional jackson JARs from packaged lib 2010-05-09 00:55:43 +00:00
Mark Fisher
ca68a053bb replaced custom router with header-value-router (now that the 'apply-sequence' attribute is supported) 2010-05-08 23:56:42 +00:00
Mark Fisher
bd5fadf6d0 INT-1136 the 'router' element now supports 'mapping' sub-elements (mapping the returned 'value' to a 'channel' reference) 2010-05-08 23:29:57 +00:00
Mark Fisher
58c5138ec0 replaced Transformer object with a SpEL expression 2010-05-08 22:35:42 +00:00
Mark Fisher
4388226bdc formatting 2010-05-08 20:57:49 +00:00
Mark Fisher
293f599770 LoanBroker now uses headers added by the gateway instead of accessing history events. 2010-05-08 20:50:34 +00:00
Mark Fisher
f4893a85a6 formatting 2010-05-08 20:33:11 +00:00
Mark Fisher
ed959d418f removed timeout from Aggregator annotation 2010-05-08 20:24:29 +00:00
Mark Fisher
f163148981 INT-1134 added namespace support for the <header-filter/> element 2010-05-08 20:13:45 +00:00
Mark Fisher
730c634c46 INT-1135 added HeaderFilter 2010-05-08 19:54:27 +00:00