Commit Graph

84 Commits

Author SHA1 Message Date
Mark Fisher
54387d3547 polishing 2010-11-14 22:36:38 -05:00
Mark Fisher
352f5f5f73 Fixed issue with generics in List vs. array within CompositeFileListFilter's filterFiles() method. Also removed unnecessary 'filterReferences' option on FileListFilterFactoryBean (can use CompositeFileListFilter for that). The 'filterReference' property is now just 'filter', and the factory's product is now called 'result'. 2010-11-13 10:27:16 -05:00
Mark Fisher
c5f1e9d8e4 avoiding vararg/generic warning 2010-11-13 08:53:09 -05:00
Chris Beams
536fda2200 Check in Gradle-generated poms for convenience (INT-1609)
For ease of use by those (a) more familiar with Maven or (b) relying
on m2eclipse support within Eclipse/STS, generated poms are now checked
in. Changes to these files will be overwritted on subsequent gradle
builds.

Any changes to project dependencies should first be reflected in
build.gradle; then run `gradle generatePom` or simply `gradle build`
to see the change reflected in the pom(s).

Note that org.springframework.integration.ip.tcp.TcpInboundGatewayTests
currently fails when running `mvn clean test` from the root. This
problem does not manifest when running `gradle clean test`. The latter
is what's most important; Gary has been contacted to take a look at the
former.

Issues resolved:
    INT-1609, INT-1610, INT-1611
2010-11-12 23:27:32 -08:00
Iwein Fuld
f77982a33e INT-1542: Add file-regex attribute to file:inbound-channel-adapter 2010-11-12 15:46:36 +01:00
Chris Beams
ee34695bc4 Merge branch 'master' into buildSrc-extraction
Conflicts:
	spring-integration-twitter/src/main/java/org/springframework/integration/twitter/core/Twitter4jTemplate.java
2010-11-11 10:13:14 -08:00
Chris Beams
a9c70aa1e7 Synchronize with latest buildSrc updates
buildSrc updated to use latest Gradle wrapper.  See buildSrc git log
for complete details; in short, eclipse JDT prefs are now auto-generated
and the gradle daemon is no longer 'on by default', but must be enabled
with --daemon or -Dorg.gradle.daemon=true.

* removed all existing jdt preferences files in favor of auto-generation.

* removed .springBeans from .gitignore; this file should be
  source-controlled for consistency and convenience.

* removed illegal @Override annotations.  Eclipse/STS now catch these
  properly!
2010-11-11 10:04:20 -08:00
Mark Fisher
304abda2d3 removing warnings 2010-11-09 17:22:38 -05:00
Chris Beams
bd3b0222f3 Add Bundle-Version and placeholder to all Bundlor templates 2010-11-09 10:33:14 -08:00
Oleg Zhurakousky
1278666ed7 INT-1596, fixed the broken links as well as all warnings 2010-11-09 12:17:45 -05:00
Dave Syer
222cd88bac Clean up .settings 2010-11-09 09:24:58 +00:00
Mark Fisher
23c8c28d0c INT-1591 removing the FileNameExtractor strategy in favor of concrete implementations of AbstractPatternMatchingFileListFilter 2010-11-08 18:33:07 -05:00
Mark Fisher
8a46cfc0e8 INT-1591 removed 'entries' package 2010-11-08 17:51:25 -05:00
Mark Fisher
e4f6b33b7b INT-1591 FileListFilter is now parameterized. Existing implementations required refactoring to specify <File> for <F>. 2010-11-08 17:31:42 -05:00
Mark Fisher
8c33858806 removed SingleEntryAdaptingEntryListFilter 2010-11-08 15:17:36 -05:00
Mark Fisher
4487168e38 renamed EntryNamer to EntryNameExtractor since it gets the name but does not create it 2010-11-08 13:57:55 -05:00
Mark Fisher
4160c8afb4 removing 'monitors' package, not yet in use 2010-11-08 13:18:58 -05:00
Mark Fisher
d020387d7e polishing 2010-11-05 14:58:24 -04:00
Mark Fisher
12d0d46fc4 polishing 2010-11-05 14:50:37 -04:00
Mark Fisher
6abae5412b polishing 2010-11-05 14:07:11 -04:00
Mark Fisher
295af55242 polishing 2010-11-05 13:54:11 -04:00
Mark Fisher
9271269433 INT-1562 moved synchronization base classes into a dedicated package 2010-11-05 13:22:19 -04:00
Chris Beams
e7a4364762 Remove .classpath and .project files
Run `gradle eclipse` to generate prior to import into Eclipse.
2010-10-29 01:37:29 -04:00
Chris Beams
0d55f086bc Eliminate Maven POMs
POMs removed in favor of Gradle build. pom.xml added to .gitignore
to accommodate future generation of source-level poms for those who
wish to use m2eclipse tooling in STS (to come in a later commit)
2010-10-28 15:32:26 -04:00
Mark Fisher
1e9c3c6a8d INT-1528 IntegrationNamespaceUtils.parseInnerHandlerDefinition(..) no longer registers the inner bean definition. Relatedly, all polling inbound adapter parsers now return BeanMetadataElement rather than a pre-registered bean's name (flexibility: RuntimeBeanReference, BeanDefintion, etc.) 2010-10-28 15:32:20 -04:00
Mark Fisher
e8da488033 INT-1526 updating template.mf files for minimum version of Spring 3.0.5 2010-10-23 12:56:13 -05:00
Iwein Fuld
e4dc250385 INT-1541: modify default pattern style to AntPath instead of Regex
- update all patterns in test contexts to comply with ant style
- change configurators to create SimplePatternFileListFilter instead of regex style PatternMatchingFileListFilter
2010-10-22 16:44:49 +02:00
Iwein Fuld
24fa72aab2 QUALITY: avoided file initialization @Before in favor of @Rule overriding (to avoid temporary files remaining in the source path) 2010-10-17 15:13:27 +02:00
Iwein Fuld
42ed97ea39 QUALITY: fix warnings, let AntPathFileListFilter implement FileListFilter 2010-10-15 14:19:08 +02:00
Iwein Fuld
092de55242 INT-1520 rename AntPattern* to AntPath* to match collaborator class name 2010-10-15 11:29:26 +02:00
Iwein Fuld
2bc8b31255 Restored filter implementations for backwards compatibility reasons.
- Restore FileListFilter implementations
- Have FileListFilter implementations extend their EntryListFilter counterpart.
- Deprecate AbstractFileListFilter in favor of EntryListFilter hierarchy
2010-10-15 11:19:19 +02:00
Iwein Fuld
15a5eaf265 Restore FileListFilter and fix some javadoc links. 2010-10-15 11:12:53 +02:00
Iwein Fuld
037d2113f8 INT-1520: add AntPatternFileListFilter 2010-10-15 11:12:52 +02:00
Iwein Fuld
695961c2ba QUALITY: avoid writing in source path from testcase 2010-10-15 11:12:52 +02:00
Josh Long
3ddde2e450 fixing citations. 2010-10-14 11:37:40 -07:00
Josh Long
5683b6b607 adding better citation 2010-10-14 11:23:45 -07:00
Josh Long
75093c93b3 added a working feed adapter that also maintains state using the metadata persister mechanism. INT-786 2010-10-03 19:14:19 -07:00
Oleg Zhurakousky
f8ace52bef INT-1432 added tests to validate that localdirectories are auto created if auto-create is set to TRUE or exception is thrown if set to false 2010-09-24 15:39:35 -04:00
Oleg Zhurakousky
b6e058c59b INT-1263, added more changes and tests related valdating MessageHistory in every module 2010-09-22 18:44:51 -04:00
Oleg Zhurakousky
d5cb033c60 INT-1456, removed spring-tx dependency from MessagingTemplate 2010-09-15 21:38:00 -04:00
Chris Beams
2d88bdd2e8 Increment versions to 2.0.0.BUILD-SNAPSHOT 2010-09-03 20:12:54 +00:00
Chris Beams
f4efc62ca7 Increment versions to 2.0.0.M7 2010-09-03 18:23:12 +00:00
Chris Beams
2c17719313 Introduce Maven release:update-versions plugin (INT-1320)
- Upgrade to version 2.0 of the maven-release-plugin in order to
  get the new 'update-versions' goal, which allows for doing nothing
  other than updating pom versions - no tagging, no checkins, etc.

- Accommodate idiosyncracies of the plugin. When running for the first
  time, it became clear that update-versions not only updates versions
  as advertised, but also formats certain elements of the pom.
  Committing just those format changes now so that future actual version
  updates will not have to deal with this uninvited 'help'.

- How to run the command:

  mvn --batch-mode release:update-versions -DdevelopmentVersion=2.0.0.M7

  This will edit the <version> elements in the poms of the projects listed
  in the root pom's <modules> section.
2010-09-02 15:57:05 +00:00
Chris Beams
41e8194239 Revert update to 3.0.4 (INT-1293) due to SpEL issue (SPR-7519)
Upon updating to 3.0.4 the build fails with SpEL error code EL1004E when
executing test method shouldFindSimpleAggregatorMethodWithArray().
Reverting for now, but SPR-7519 has been created for tracking what
appears to be a minor SpEL regression.

- template.mf files now declare range [3.0.3, 4.0.0) for all Spring dependencies

- pom.xml files reverted to dependence on 3.0.3.RELEASE
2010-09-02 12:42:23 +00:00
Chris Beams
4ded74b317 Update pom and template.mf files Spring 3.0.4 (INT-1293) 2010-09-02 10:54:11 +00:00
Chris Beams
9e6e232837 Disconnect samples from parent pom (INT-1316) 2010-09-02 10:22:53 +00:00
Mark Fisher
3b15a0dd38 INT-1390 moved MessageBuilder into the 'support' package, moved GenericMessage and ErrorMessage into the 'message' package 2010-08-31 02:51:27 +00:00
Mark Fisher
7c1ab04cd5 INT-1390 Refactoring: moved MessageChannel to the root package, and moved ChannelResolver and BeanFactoryChannelResolver into a new 'suport.channel' package 2010-08-31 01:53:45 +00:00
Josh Long
0ec4e095d5 moved spaces to tabs for the file adapters entries.* package 2010-08-24 22:07:00 +00:00
Josh Long
c67ee979cd cleaning up file adapter support, removing deprecated FileListFilter* hierarchy 2010-08-21 02:21:14 +00:00