Gunnar Hillert
85bef285d4
INTSAMPLES-47 - Upgrade SI dep. to 2.1.0.RELEASE
...
* Upgraded all Spring Integration dependencies to 2.1.0.RELEASE
* All Samples use the new Artifactory-based Milestone Repository http://repo.springsource.org/milestone (As the repositories are additive, this repository will also include the release repo)
* Added versions to all Maven plugin declarations, reducing the amount WARNING-level logging substantially
2012-01-07 22:58:10 -05:00
Gunnar Hillert
d84e98a781
Merge pull request #26 from ghillert/INTSAMPLES-41
...
INTSAMPLES-41 - Use embedded Apache FTP Server
2012-01-07 07:44:26 -08:00
Gunnar Hillert
f2f3e81785
Merge pull request #25 from amolnayak311/INTSAMPLES-43
...
INTSAMPLES-43
2012-01-07 07:43:12 -08:00
Gunnar Hillert
9ec98f8c74
INTSAMPLES-41 - Use embedded Apache FTP Server
...
For Reference see: https://jira.springsource.org/browse/INTSAMPLES-41
2011-12-21 14:19:45 -05:00
Gary Russell
9f789537c1
INTSAMPLES-40 Fix POM for Spring 3.1.GA SI 2.1.RC1
...
Incompatible transitive dependencies.
2011-12-20 14:51:22 -05:00
Gunnar Hillert
c416d56903
For INTSAMPLES-38 - Code Review changes
...
* remove *.project* and *.springBeans* in project **testing-examples**
* remove duplicate dependencies in *pom.xml* in project **jms**
2011-12-20 14:16:26 -05:00
Amol Nayak
40e4bc8c7b
INTSAMPLES-43
2011-12-20 23:35:05 +05:30
Gunnar Hillert
9effe2f9bc
INTSAMPLES-33 Update to SI RC1 and Spring 3.1
...
1. Cleanup of pom.xml files
2. Standardizing version numbers
3. Updating dependency versions
4. Cleaning/Standardizing project names
5. Removing Schema versions in XML context files
2011-12-18 00:32:34 -05:00
Amol Nayak
fa14acf3ab
Modified the main to include the newly added gateway samples and changed the .md file
2011-12-16 08:44:51 +05:30
Amol Nayak
db9579d478
Commiting the missed files
2011-12-16 07:24:04 +05:30
Amol Nayak
2b4ad46a80
Removed duplicate JDBC module added
2011-12-15 23:06:32 +05:30
Amol Nayak
6b6abd92e4
INTSAMPLE-33 Changes
2011-12-15 22:47:52 +05:30
Amol Nayak
7c43e23308
<project xmlns=" http://maven.apache.org/POM/4.0.0 " xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance "
...
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd ">
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework.integration.samples</groupId>
<artifactId>jdbc</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>jdbc-sample</name>
<url>http://www.springsource.org/spring-integration </url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<spring.integration.version>2.1.0.M3</spring.integration.version>
<slf4j.version>1.6.1</slf4j.version>
<junit.version>4.7</junit.version>
<spring.test.version>3.0.6.RELEASE</spring.test.version>
<derbyclient.driver.version>10.8.2.2</derbyclient.driver.version>
</properties>
<repositories>
<repository>
<id>repository.springframework.maven.release</id>
<name>Spring Framework Maven Release Repository</name>
<url>http://maven.springframework.org/release </url>
</repository>
<repository>
<id>repository.springframework.maven.milestone</id>
<name>Spring Framework Maven Milestone Repository</name>
<url>http://maven.springframework.org/milestone </url>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<artifactId>maven-eclipse-plugin</artifactId>
<version>2.8</version>
<configuration>
<additionalProjectnatures>
<projectnature>org.springframework.ide.eclipse.core.springnature</projectnature>
</additionalProjectnatures>
<additionalBuildcommands>
<buildcommand>org.springframework.ide.eclipse.core.springbuilder</buildcommand>
</additionalBuildcommands>
<downloadSources>true</downloadSources>
<downloadJavadocs>true</downloadJavadocs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<compilerArgument>-Xlint:all</compilerArgument>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2</version>
<configuration>
<mainClass>org.springframework.integration.samples.jdbc.Main</mainClass>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- Testing -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<!-- Spring Integration -->
<dependency>
<groupId>org.springframework.integration</groupId>
<artifactId>spring-integration-core</artifactId>
<version>${spring.integration.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.integration</groupId>
<artifactId>spring-integration-jdbc</artifactId>
<version>${spring.integration.version}</version>
</dependency>
<!-- Logging -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>0.9.28</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>${slf4j.version}</version>
</dependency>
<!-- Embedded Database -->
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.3.160</version>
</dependency>
<!-- Derby dependency -->
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derbyclient</artifactId>
<version>${derbyclient.driver.version}</version>
</dependency>
<!-- Spring test -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${spring.test.version}</version>
</dependency>
</dependencies>
</project>
2011-12-14 23:48:21 +05:30
Gunnar Hillert
ba12da4a25
Merge pull request #13 from ghillert/INTSAMPLES-34
...
INTSAMPLES-34 Initial commit of the Enricher Sample
2011-12-14 09:23:18 -08:00
Gunnar Hillert
6d469e4fe1
Merge pull request #12 from ghillert/INTSAMPLES-33
...
INTSAMPLES-33 Add initial Jdbc sample
2011-12-14 09:18:56 -08:00
Gary Russell
67606fa2db
INTSAMPLES-37 Add ConversionService to TCP Sample
...
Show alternative configuration for converting from tcp byte
arrays to Strings.
2011-12-10 11:45:57 -05:00
Amol Nayak
e15a778874
added module jdbc to pom.xml
2011-11-19 00:57:29 +05:30
Amol Nayak
f653433c7e
Initial commit for the JDBC project
2011-11-19 00:51:41 +05:30
Gunnar Hillert
e08a4a775d
INTSAMPLES-34 Added sample for enriching a Map
2011-11-07 17:22:02 -05:00
Gunnar Hillert
ac5693d310
INTSAMPLES-34 Initial commit of the Enricher Sample
2011-11-04 15:51:37 -04:00
Gunnar Hillert
f366d53869
INTSAMPLES-33 Add initial Jdbc sample
2011-11-03 01:02:57 -04:00
Gary Russell
c7c0cf493c
INT-1945 Dir => Directory
2011-09-06 10:09:30 -04:00
Gary Russell
81817a6ca7
INT-1945 Fix class names; update POMs to M1
2011-09-06 09:44:31 -04:00
Gary Russell
d0b9c764ce
Merge branch 'master' into INT-1945
2011-09-06 09:25:51 -04:00
Gary Russell
f42cb8bc35
Change splitter channel name to toSplitter
2011-08-29 14:16:52 -04:00
Gary Russell
6131356619
INT-1945 (S)FTP Outbound Gateway Samples
...
Samples execute ls, get and rm commands.
2011-08-29 13:23:26 -04:00
Gary Russell
a526c9e2f6
Merge remote branch 'kpb/master' into INTSAMPLES-31
2011-08-25 17:25:47 -04:00
Gary Russell
b97b866c74
INTSAMPLES-31 Add ob adapter and Fix POM
...
Missing ob adapter; pom did not contain snapshot repo.
2011-08-25 15:13:43 -04:00
Kenneth Bowen
14458ab1cb
Fix missing snapshot/release repos in amqp build.
...
Add amqp module to .../basic/pom.xml
Add release and snapshot springsource repos to .../amqp/pom.xml
2011-08-25 10:52:51 -06:00
Gunnar Hillert
a24994dc1c
INTSAMPLES-30 - initial commit of the AMQP Sample
...
Added .DS_Store to .gitignore
Removed the image as it is problematic with Github. Will be added to the SI AMQP reference documentation instead
Removed a ":" from the readme
Removed a class that was not used anymore
polishing
2011-08-23 16:52:31 -04:00
Gunnar Hillert
55c18bf873
Expanded the main README.md to contain a basic overview of all examples
2011-08-15 23:45:37 -04:00
Gunnar Hillert
07d5dd6eaa
Renamed readme.txt to README.md in category folders in order to allow for better styling using Markdown
2011-08-15 17:36:14 -04:00
Gunnar Hillert
d367d4a0a5
remove .settings direcotries
2011-08-15 15:01:29 -04:00
Gunnar Hillert
c9576ce883
Remove unnecessary .gitignore file; remove Eclipse project files
2011-08-15 14:56:25 -04:00
Gary Russell
37ae292151
INTSAMPLES-26 Use Payload and Header Matchers in Tests
2011-07-26 17:40:38 +05:30
Oleg Zhurakousky
de10204e6e
polishing, removed warning markers
2011-07-18 20:00:38 -04:00
Oleg Zhurakousky
ace8935c7e
upgraded samples to Spring Integration 2.0.5.RELEASE
2011-07-18 18:15:57 -04:00
Mark Fisher
f8033b4533
changed activemq logging to 'error' level
2011-03-04 16:03:01 -05:00
Oleg Zhurakousky
4392c38ee6
INT-1821 updated samples POMs to use 2.0.3.RELEASE of SI
2011-03-01 09:24:47 -05:00
Gary Russell
2df45b703f
INTSAMPLES-19 Add Error Handling Example
2011-02-02 15:37:55 -05:00
Gary Russell
a60c7a541f
INTSAMPLES-19 Add Filter Discard Example
2011-02-02 14:47:07 -05:00
Gary Russell
c5233cbd9f
INTSAMPLES-19 Add Gateway Example
2011-02-02 13:28:36 -05:00
Gary Russell
00019ac90d
INTSAMPLES-19 Add Filter Example
2011-02-02 12:40:34 -05:00
Gary Russell
c329241502
INTSAMPLES-19 Add Router to readme
2011-02-02 12:10:45 -05:00
Gary Russell
855eeaf519
INTSAMPLES-19 Add Router Example
2011-02-02 11:54:56 -05:00
Gary Russell
4cfea26745
INTSAMPLES-19 Fix typo in JUnit Assertion
2011-02-02 08:50:39 -05:00
Gary Russell
e5236506bc
INTSAMPLES-19 Fix POM for CLI mvn
2011-02-02 08:36:03 -05:00
Gary Russell
76094d2fab
INTSAMPLES-19 Change Return Type to List<> from Array
2011-02-02 08:18:21 -05:00
Gary Russell
bfb4f0c4aa
INTSAMPLES-19 First Set of Sample Testing Techniques
2011-02-01 17:05:20 -05:00
Gary Russell
f91e7227ed
Add zero length test
2011-02-01 11:29:47 -05:00