Commit Graph

147 Commits

Author SHA1 Message Date
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
8cd7b0b4e8 Merge pull request #17 from dturanski/cafe-scripted
Added Cafe Scripted Demo
2011-12-14 09:29:39 -08:00
Gunnar Hillert
3769bf6495 Merge pull request #15 from ghillert/INTSAMPLES-35
INTSAMPLES-35 - Stored Procedure Sample for Derby
2011-12-14 09:24:16 -08:00
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
1dac27d019 Merge pull request #14 from spring-tom/master
Added Spring Integration AMQP config to Cafe Sample
2011-12-14 09:21:06 -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
Gunnar Hillert
05097d6574 Merge pull request #18 from garyrussell/INTSAMPLES-37
INTSAMPLES-37 Add ConversionService to TCP Sample
2011-12-14 08:52:16 -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
David Turanski
4a9d7ab135 updated copyright notices 2011-12-03 08:16:02 -05:00
David Turanski
b686a8f0d9 updated README 2011-12-03 08:05:32 -05:00
David Turanski
5134d44073 updated readme.txt 2011-11-29 16:51:19 -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
Joe Freeman
32e38d09d2 converted to spring 3.1 to support profiles 2011-11-16 13:07:22 -05:00
Joe Freeman
3db7493746 added comments 2011-11-16 06:26:02 -05:00
Gunnar Hillert
6afbf69cf0 INTSAMPLES-35 - Stored Procedure Sample for Derby
For reference see: https://jira.springsource.org/browse/INTSAMPLES-35
2011-11-14 13:48:35 -05:00
Tom McCuch
5e13691d2d updated readme 2011-11-08 09:27:17 -05:00
Tom McCuch
b777bb46af fixed breakage 2011-11-08 09:04:35 -05:00
Gunnar Hillert
e08a4a775d INTSAMPLES-34 Added sample for enriching a Map 2011-11-07 17:22:02 -05:00
Tom McCuch
9c9c1da7f3 Final Packaging 2011-11-06 18:21:48 -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
Tom McCuch
15dc7cd059 domain updates + new runnable class 2011-10-31 13:04:28 -04:00
Tom McCuch
a32ed6647b interim commit
changed copyright on Order.java
2011-10-30 18:56:39 -04:00
Oleg Zhurakousky
0422b81415 Merge pull request #11 from ghillert/INTSAMPLES-32
* ghillert/INTSAMPLES-32:
  First draft of an Oracle Stored Proc Sample Sample show-cases the execution of Oracle Stored Procedures and Functions
2011-10-12 10:06:58 -04:00
Gunnar Hillert
9876236e98 First draft of an Oracle Stored Proc Sample
Sample show-cases the execution of Oracle Stored Procedures and Functions
2011-10-12 00:43:31 -04:00
Gary Russell
de878d682e Merge pull request #10 from garyrussell/INT-1945
INT-1945 Add Samples for (S)FTP Outbound Gateways
2011-10-02 11:42:15 -07: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
Mark Fisher
fe58b2ef44 Merge pull request #9 from garyrussell/INTSAMPLES-31
INTSAMPLES-31 Add ob adapter and Fix POM
  Fix missing snapshot/release repos in amqp build.
2011-08-25 23:00:32 -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
Gary Russell
d87f141e83 INTSAMPLES-28 Pushed .aj deletes 2011-08-19 14:31:35 -04:00
Mark Fisher
2db4473aa0 Merge pull request #3 from garyrussell/INTSAMPLES-28
INTSAMPLES-28 Push-in IDTs and remove Roo from project
2011-08-19 10:11:07 -07:00
Gary Russell
ef40b52362 INTSAMPLES-28 Push-in IDTs and remove Roo from project
Eliminate ROO dependencies from loanshark project
2011-08-19 12:37:35 -04:00
Mark Fisher
7c2c62dd04 Merge pull request #2 from ghillert/INTSAMPLES-29
INTSAMPLES-29
2011-08-16 12:52:43 -07:00
Gunnar Hillert
77741507ed Highlighted a few adapters, fixed some wording in README.md 2011-08-16 00:04:53 -04:00
Gunnar Hillert
6e07daaed1 Added a quick list enumerating the 4 categories for examples in README.md 2011-08-15 23:53:19 -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
b9b10634db Added link to the Spring Integration Home page to README.md 2011-08-15 17:31:01 -04:00