sftp-sink-kafka-10
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.springframework.cloud.stream.app</groupId> <artifactId>sftp-sink-kafka-10</artifactId> <version>1.3.1.RELEASE</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>1.5.9.RELEASE</version> <relativePath></relativePath> </parent> <groupId>org.springframework.cloud.stream.app</groupId> <artifactId>sftp-sink-kafka-10</artifactId> <version>1.3.1.RELEASE</version> <name>sftp-sink-kafka-10</name> <description>Spring Cloud Stream Sftp Sink Kafka 10 Binder Application</description> <distributionManagement> <repository> <id>repo.spring.io</id> <name>Spring Release Repository</name> <url>https://repo.spring.io/libs-release-local</url> </repository> <snapshotRepository> <id>repo.spring.io</id> <name>Spring Snapshot Repository</name> <url>https://repo.spring.io/libs-snapshot-local</url> </snapshotRepository> </distributionManagement> <properties> <skipTests>true</skipTests> <java.version>1.7</java.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <sshd-core.version>0.14.0</sshd-core.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud.stream.app</groupId> <artifactId>sftp-app-dependencies</artifactId> <version>1.3.1.RELEASE</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.springframework.cloud.stream.app</groupId> <artifactId>app-starters-core-dependencies</artifactId> <version>1.3.1.RELEASE</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-config</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-stream-kafka</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud.stream.app</groupId> <artifactId>spring-cloud-starter-stream-sink-sftp</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> <repositories> <repository> <snapshots> <enabled>true</enabled> </snapshots> <id>spring-snapshots</id> <name>Spring Snapshots</name> <url>https://repo.spring.io/snapshot</url> </repository> <repository> <snapshots> <enabled>false</enabled> </snapshots> <id>spring-milestones</id> <name>Spring Milestones</name> <url>https://repo.spring.io/milestone</url> </repository> </repositories> <pluginRepositories> <pluginRepository> <snapshots> <enabled>true</enabled> </snapshots> <id>spring-snapshots</id> <name>Spring Snapshots</name> <url>http://repo.spring.io/libs-snapshot-local</url> </pluginRepository> <pluginRepository> <snapshots> <enabled>false</enabled> </snapshots> <id>spring-milestones</id> <name>Spring Milestones</name> <url>http://repo.spring.io/libs-milestone-local</url> </pluginRepository> </pluginRepositories> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>io.fabric8</groupId> <artifactId>docker-maven-plugin</artifactId> <version>0.14.2</version> <configuration> <images> <image> <name>springcloudstream/${project.artifactId}:1.3.1.RELEASE</name> <build> <from>anapsix/alpine-java:8</from> <volumes> <volume>/tmp</volume> </volumes> <entryPoint> <exec> <arg>java</arg> <arg>-jar</arg> <arg>/maven/sftp-sink-kafka-10.jar</arg> </exec> </entryPoint> <assembly> <descriptor>assembly.xml</descriptor> </assembly> </build> </image> </images> </configuration> </plugin> <plugin> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-app-starter-metadata-maven-plugin</artifactId> <version>1.0.0.RELEASE</version> <executions> <execution> <id>aggregate-metadata</id> <phase>compile</phase> <goals> <goal>aggregate-metadata</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.19.1</version> <configuration> <skipTests>${skipTests}</skipTests> </configuration> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>javadoc</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> <configuration> <quiet>true</quiet> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>milestone</id> <distributionManagement> <repository> <id>repo.spring.io</id> <name>Spring Milestone Repository</name> <url>https://repo.spring.io/libs-milestone-local</url> </repository> </distributionManagement> </profile> <profile> <id>central</id> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <name>Nexus Release Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> </profile> </profiles> </project>