2019-12-05 09:56:52 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-14 08:12:38 -04:00
|
|
|
<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">
|
2019-10-31 21:43:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.baeldung.samples.spring.integration</groupId>
|
|
|
|
<artifactId>spring-integration</artifactId>
|
|
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
|
|
|
<name>spring-integration</name>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<url>http://www.springsource.org/spring-integration</url>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.integration</groupId>
|
|
|
|
<artifactId>spring-integration-core</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.activation</groupId>
|
|
|
|
<artifactId>activation</artifactId>
|
|
|
|
<version>${javax-activation.version}</version>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.integration</groupId>
|
|
|
|
<artifactId>spring-integration-twitter</artifactId>
|
2023-03-06 09:52:07 -05:00
|
|
|
<version>${spring-integration-twitter.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.integration</groupId>
|
|
|
|
<artifactId>spring-integration-mail</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.integration</groupId>
|
|
|
|
<artifactId>spring-integration-ftp</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.social</groupId>
|
|
|
|
<artifactId>spring-social-core</artifactId>
|
|
|
|
<version>${spring-social.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.integration</groupId>
|
|
|
|
<artifactId>spring-integration-file</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-config</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.integration</groupId>
|
|
|
|
<artifactId>spring-integration-security</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.integration</groupId>
|
|
|
|
<artifactId>spring-integration-jdbc</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-test</artifactId>
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
<artifactId>h2</artifactId>
|
2019-12-24 06:47:09 -05:00
|
|
|
<version>${h2.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependency>
|
2023-07-23 16:45:57 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
<version>${postgresql.version}</version>
|
|
|
|
</dependency>
|
2023-12-04 06:11:26 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.mail</groupId>
|
|
|
|
<artifactId>jakarta.mail</artifactId>
|
|
|
|
<version>${jakarta.mail.version}</version>
|
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-eclipse-plugin</artifactId>
|
|
|
|
<version>${maven-eclipse-plugin.version}</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.codehaus.mojo</groupId>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>com.baeldung.samples.FileCopyConfig</mainClass>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties>
|
2023-12-04 06:11:26 -05:00
|
|
|
<spring.version>6.0.0</spring.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<spring-social.version>1.1.4.RELEASE</spring-social.version>
|
2023-03-06 09:52:07 -05:00
|
|
|
<spring-integration-twitter.version>5.0.13.RELEASE</spring-integration-twitter.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<javax-activation.version>1.1.1</javax-activation.version>
|
|
|
|
<maven-eclipse-plugin.version>2.10</maven-eclipse-plugin.version>
|
2023-07-23 16:45:57 -04:00
|
|
|
<postgresql.version>42.3.8</postgresql.version>
|
2023-12-04 06:11:26 -05:00
|
|
|
<jakarta.mail.version>2.0.1</jakarta.mail.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</properties>
|
|
|
|
|
2021-05-14 08:12:38 -04:00
|
|
|
</project>
|