Chris Beams
a6cf89fd7e
Automatically update cafe sample Bundle-Version (INT-1388)
...
${project.version} has been introduced in the cafe sample's MANIFEST.MF
and the pom has been updated to ensure that the manifest is filtered by
maven.
This change removes need for manually updating the bundle version
during every release.
2010-09-02 15:57:56 +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
a66b125172
updated test so it no longer depends on the exposed gateway method... now it actually tests the endpoint invocation
2010-09-01 19:35:44 +00:00
Oleg Zhurakousky
d71472bba1
INT-1016 - added new sample to the pom
2010-09-01 14:37:13 +00:00
Oleg Zhurakousky
3a50c718bb
INT-1016 - added sample to HTTP documentation section
2010-09-01 14:34:15 +00:00
Oleg Zhurakousky
e537e0dba5
INT-1016 - removed the old WebContextnt dir
2010-09-01 13:25:39 +00:00
Oleg Zhurakousky
3195f80486
INT-1016 - added readme file and index.html
2010-09-01 13:21:42 +00:00
Oleg Zhurakousky
d78eb95c1b
INT-1016 - polishing sample
2010-09-01 12:51:08 +00:00
Oleg Zhurakousky
7f1b823c05
INT-1016 - adding HTTP multipart sample
2010-09-01 12:46:59 +00:00
Oleg Zhurakousky
5e3d25a64d
INT-1294, change package naming for loanshark sample
2010-09-01 03:24:55 +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
Mark Fisher
e9b86dc087
INT-1389 removed all dependencies on StringMessage from Hello World sample
2010-08-30 20:58:48 +00:00
Mark Fisher
bb468fc069
INT-1384 removed @Ignore, no longer needed
2010-08-28 16:07:44 +00:00
Oleg Zhurakousky
535c3f6365
Added @Ignore to LoanBrokerSharkDetectorDemo temporarily
2010-08-28 14:58:34 +00:00
Gary Russell
a54c7ed5f1
INT-1279 Namespace Updates For New Gateways; Remove Old Gateways/Adapters; Migrate All Tests to New Gateways/Adapters
2010-08-13 22:05:59 +00:00
Gary Russell
1a3c09c367
INT-1307 Revert ws-inbound-gateway sample to Java 1.5
2010-08-09 00:27:02 +00:00
Mark Fisher
5228e99784
simplified XML with inner beans
2010-07-29 23:13:33 +00:00
Mark Fisher
5958ba07e0
INT-1291 removing deprecated sub-elements from <poller> elements in samples
2010-07-29 23:00:36 +00:00
Mark Fisher
c1cbeecf3a
INT-1291 removing deprecated sub-elements from <poller> elements in samples
2010-07-29 22:58:04 +00:00
Mark Fisher
d550340889
INT-1291 removing deprecated sub-elements from <poller> elements in samples
2010-07-29 22:50:47 +00:00
Mark Fisher
3118379ed9
INT-1291 removing deprecated sub-elements from <poller> elements in samples
2010-07-29 22:48:53 +00:00
Mark Fisher
334fea9a20
INT-1291 removing deprecated sub-elements from <poller> elements in samples
2010-07-29 22:48:01 +00:00
Mark Fisher
33b66b8b17
INT-1291 removing deprecated sub-elements from <poller> elements in samples
2010-07-29 22:46:25 +00:00
Mark Fisher
085541a5df
INT-1291 removing deprecated sub-elements from <poller> elements in samples
2010-07-29 22:44:30 +00:00
Mark Fisher
75dacce2f7
INT-1291 removing deprecated sub-elements from <poller> elements in samples
2010-07-29 22:42:46 +00:00
David Syer
7dda54bb79
INT-1298: Combine some message group features and base classes
2010-07-29 11:14:53 +00:00
Mark Fisher
aeee48afbb
changing pom version to 2.0.0.BUILD-SNAPSHOT
2010-07-28 19:54:08 +00:00
Mark Fisher
1f29147754
Releasing 2.0.0.M6
2010-07-28 18:41:13 +00:00
Oleg Zhurakousky
9146492749
INT-1282 polished to accomodate recent refactoring changes related to IN-1229
2010-07-28 16:41:18 +00:00
Chris Beams
e1cb00ea48
Include Bundlor-generated manifests in jars
...
In the 2.0.0.M5 release bundlor successfully created manifests at
target/classes/META-INF/MANIFEST.MF within each subproject directory,
however they were not actually picked up by the maven-jar-plugin when
creating each archive. The samples parent pom has now been configured
to explictly specify the 'manifestFile' and refer to the bundlor-generated
manifest.
Additionally, the spring-integration-samples/pom.xml was updated with
a similar configuration for the maven-jar-plugin, but in this case the
spring-integration-parent/pom.xml configuration is being overwritten.
The samples projects do not use Bundlor, and thus there is no generated
manifest in the location mentioned above. This causes the maven-jar-plugin
to error out for the samples, and as a workaround there is now a zero-length
file at spring-integration-samples/src/main/resources/META-INF/MANIFEST.MF
that samples refer to during jar/war packaging. Ugly, but effective.
2010-07-28 16:23:13 +00:00
Mark Fisher
cd6b48f773
fixed import in sample
2010-07-28 15:43:56 +00:00
Mark Fisher
8b16371b76
fixed import in helloworld sample
2010-07-28 15:38:57 +00:00
Mark Fisher
a9ece9dea6
fixed imports in sample
2010-07-28 15:33:06 +00:00
Mark Fisher
4de9a23357
INT-1129 moved Message and MessageHeaders from 'core' to the root (org.springframework.integration)
2010-07-28 15:05:50 +00:00
Mark Fisher
4283315c08
INT-1129 moved PollableChannel from 'channel' to 'core'
2010-07-28 14:47:55 +00:00
Mark Fisher
2e45b67be2
INT-1129 moved MessageBuilder from 'message' to 'core'
2010-07-28 14:39:50 +00:00
Mark Fisher
00d3e351f7
INT-1129 moved MessageBuilder from 'message' to 'core'
2010-07-28 14:38:36 +00:00
Mark Fisher
b4e627a26a
INT-1216 removed tangle between 'channel' and 'context' packages by moving the ChannelResolver interface to 'core' and the BeanFactoryChannelResolver implementation to 'context'
2010-07-28 00:59:11 +00:00
Oleg Zhurakousky
e079c0fb08
INT-1282 polished loanshark's .classpath file
2010-07-27 21:53:03 +00:00
Oleg Zhurakousky
efff839537
INT-1282, Updated licensing information (year), removed bundle activator from 'cafe' sample, added readme.txt and util class to clean up Active MQ to 'jms' sample, other minor polishing
2010-07-27 16:18:35 +00:00
Oleg Zhurakousky
d7d30e6c57
INT-1219 migrated Loanshark sample to 'samples' package hierarchy
2010-07-13 02:50:18 +00:00
Oleg Zhurakousky
550c93c955
INT-1224 migrated LB sample to 'samples' package hierarchy
2010-07-13 02:13:27 +00:00
Mark Fisher
14aae355f4
Incrementing poms to 2.0.0.BUILD-SNAPSHOT
2010-06-25 19:31:03 +00:00
Mark Fisher
6639886948
Releasing 2.0.0.M5
2010-06-25 18:52:36 +00:00
Mark Fisher
26c8124bcf
fixed dir path in example
2010-06-25 17:32:34 +00:00
Mark Fisher
c40370ad7d
added spring-integration-jmx dep in parent
2010-06-25 17:06:30 +00:00
Mark Fisher
03703451cb
pom structure
2010-06-25 16:59:46 +00:00