Gunnar Hillert
3c9c91c847
INTSAMPLES-89 - Upgrade to Spring Integration 2.2 RC3
...
* Test samples
* Polish documentation
* Polish code
For reference see: https://jira.springsource.org/browse/INTSAMPLES-89
2012-11-28 17:08:51 -05:00
Gunnar Hillert
8c6b22f730
INTSAMPLES-86 - Add XQuery Sample
...
For reference see: https://jira.springsource.org/browse/INTSAMPLES-86
2012-10-24 16:08:32 -04:00
Gunnar Hillert
7fda2f841b
INTSAMPLES-62 - Create JPA Samples
...
* Sample supports Hibernate, EclipsLink and OpenJPA
* Sample uses Spring 3.1 (Profiles)
* Retrieves a list of records
* Creates a new DB record
INTSAMPLES-62 Code Review Fixes
* Use Log4j
* Fix dependencies
INTSAMPLES-62 - Make JPA Sample compliant with INT-2601
* Fix whitespace issues
* Make sure all schemas are version-less
2012-06-05 14:55:12 -04: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
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
2b4ad46a80
Removed duplicate JDBC module added
2011-12-15 23:06:32 +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
Amol Nayak
e15a778874
added module jdbc to pom.xml
2011-11-19 00:57:29 +05:30
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
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
Rossen Stoyanchev
f1357b0cf3
Add top-level poms for building all samples from the command-line.
...
This is also useful if you prefer the Maven Eclipse plugin over m2eclipse:
mvn -Dwtpversion=20 eclipse:clean eclipse:eclipse
2010-12-16 10:29:22 +00:00