120 lines
4.1 KiB
XML
120 lines
4.1 KiB
XML
<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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.springframework.integration.samples</groupId>
|
|
<artifactId>loan-broker</artifactId>
|
|
<version>1.0</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.integration</groupId>
|
|
<artifactId>org.springframework.integration</artifactId>
|
|
<version>2.0.0.BUILD-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.integration</groupId>
|
|
<artifactId>org.springframework.integration.ip</artifactId>
|
|
<version>2.0.0.BUILD-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>org.springframework.spring-library</artifactId>
|
|
<type>libd</type>
|
|
<version>3.0.2.RELEASE</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.junit</groupId>
|
|
<artifactId>com.springsource.org.junit</artifactId>
|
|
<version>4.7.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>com.springsource.org.apache.commons.logging</artifactId>
|
|
<version>1.1.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>com.springsource.org.mockito</artifactId>
|
|
<version>1.8.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.log4j</groupId>
|
|
<artifactId>com.springsource.org.apache.log4j</artifactId>
|
|
<version>1.2.15</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<junitArtifactName>org.junit:com.springsource.org.junit</junitArtifactName>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.0.2</version>
|
|
<configuration>
|
|
<source>1.5</source>
|
|
<target>1.5</target>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<includes>
|
|
<include>**/*Demo.java</include>
|
|
</includes>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>com.springsource.repository.bundles.release</id>
|
|
<name>EBR Spring Release Repository</name>
|
|
<url>http://repository.springsource.com/maven/bundles/release</url>
|
|
</repository>
|
|
<repository>
|
|
<id>com.springsource.repository.bundles.external</id>
|
|
<name>EBR External Release Repository</name>
|
|
<url>http://repository.springsource.com/maven/bundles/external</url>
|
|
</repository>
|
|
<repository>
|
|
<id>org.springframework.maven.milestone</id>
|
|
<name>Maven Central Compatible Spring Milestone Repository</name>
|
|
<url>http://maven.springframework.org/milestone</url>
|
|
</repository>
|
|
<repository>
|
|
<id>com.springsource.repository.bundles.milestone</id>
|
|
<name>EBR Spring Milestone Repository</name>
|
|
<url>http://repository.springsource.com/maven/bundles/milestone</url>
|
|
</repository>
|
|
<repository>
|
|
<id>org.springframework.maven.snapshot</id>
|
|
<name>Maven Central Compatible Spring Snapshot Repository</name>
|
|
<url>http://maven.springframework.org/snapshot</url>
|
|
</repository>
|
|
<repository>
|
|
<id>com.springsource.repository.bundles.snapshot</id>
|
|
<name>EBR Spring Snapshot Repository</name>
|
|
<url>http://repository.springsource.com/maven/bundles/snapshot</url>
|
|
</repository>
|
|
<repository>
|
|
<id>com.springsource.repository.libraries.release</id>
|
|
<name>SpringSource Enterprise Bundle Repository - SpringSource Library Releases</name>
|
|
<url>http://repository.springsource.com/maven/libraries/release</url>
|
|
</repository>
|
|
|
|
<repository>
|
|
<id>com.springsource.repository.libraries.external</id>
|
|
<name>SpringSource Enterprise Bundle Repository - External Library Releases</name>
|
|
<url>http://repository.springsource.com/maven/libraries/external</url>
|
|
</repository>
|
|
</repositories>
|
|
</project> |