task-launcher-dataflow-sink-kafka
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.springframework.cloud.stream.app</groupId> <artifactId>task-launcher-dataflow-sink-kafka</artifactId> <version>1.1.4.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>2.3.2.RELEASE</version> <relativePath></relativePath> </parent> <groupId>org.springframework.cloud.stream.app</groupId> <artifactId>task-launcher-dataflow-sink-kafka</artifactId> <version>1.1.4.RELEASE</version> <name>task-launcher-dataflow-sink-kafka</name> <description>Spring Cloud Stream Task Launcher Dataflow Sink Kafka 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.8</java.version> <spring-cloud.version>Hoxton.SR1</spring-cloud.version> <spring-cloud-dataflow.version>2.4.0.RELEASE</spring-cloud-dataflow.version> <cloud-connector.version>2.0.6.RELEASE</cloud-connector.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud.stream.app</groupId> <artifactId>tasklauncher-dataflow-app-dependencies</artifactId> <version>1.1.4.RELEASE</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>${spring-cloud.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud.stream.app</groupId> <artifactId>app-starters-micrometer-common</artifactId> <version>2.1.4.RELEASE</version> </dependency> <dependency> <groupId>org.springframework.cloud.stream.app</groupId> <artifactId>app-starters-security-common</artifactId> <version>2.1.4.RELEASE</version> </dependency> <dependency> <groupId>io.micrometer</groupId> <artifactId>micrometer-registry-datadog</artifactId> <version>1.3.5</version> </dependency> <dependency> <groupId>io.micrometer</groupId> <artifactId>micrometer-registry-influx</artifactId> <version>1.3.5</version> </dependency> <dependency> <groupId>io.micrometer</groupId> <artifactId>micrometer-registry-prometheus</artifactId> <version>1.3.5</version> </dependency> <dependency> <groupId>io.micrometer.prometheus</groupId> <artifactId>prometheus-rsocket-spring</artifactId> <version>0.9.0</version> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-cloudfoundry-connector</artifactId> <version>2.0.7.RELEASE</version> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-spring-service-connector</artifactId> <version>2.0.7.RELEASE</version> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-config</artifactId> <version>2.2.1.RELEASE</version> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-stream-kafka</artifactId> <version>3.0.2.RELEASE</version> </dependency> <dependency> <groupId>org.springframework.cloud.stream.app</groupId> <artifactId>spring-cloud-starter-stream-sink-task-launcher-dataflow</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.micrometer</groupId> <artifactId>micrometer-registry-wavefront</artifactId> <version>1.3.5</version> </dependency> <dependency> <groupId>com.wavefront</groupId> <artifactId>wavefront-sdk-java</artifactId> <version>2.6.0</version> </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>https://repo.spring.io/snapshot</url> </pluginRepository> <pluginRepository> <snapshots> <enabled>false</enabled> </snapshots> <id>spring-milestones</id> <name>Spring Milestones</name> <url>https://repo.spring.io/milestone</url> </pluginRepository> </pluginRepositories> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>properties-maven-plugin</artifactId> <version>1.0.0</version> <executions> <execution> <id>apps-metadata</id> <phase>process-classes</phase> <goals> <goal>read-project-properties</goal> </goals> <configuration> <files> <file>${project.build.outputDirectory}/META-INF/spring-configuration-metadata-encoded.properties</file> </files> </configuration> </execution> </executions> </plugin> <plugin> <groupId>io.fabric8</groupId> <artifactId>docker-maven-plugin</artifactId> <version>0.33.0</version> <configuration> <images> <image> <name>springcloudstream/${project.artifactId}:${project.version}</name> <build> <from>springcloud/openjdk</from> <volumes> <volume>/tmp</volume> </volumes> <labels> <org.springframework.cloud.dataflow.spring-configuration-metadata.json>${org.springframework.cloud.dataflow.spring.configuration.metadata.json}</org.springframework.cloud.dataflow.spring-configuration-metadata.json> </labels> <entryPoint> <exec> <arg>java</arg> <arg>-jar</arg> <arg>/maven/task-launcher-dataflow-sink-kafka.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>2.0.2.RELEASE</version> <executions> <execution> <id>aggregate-metadata</id> <phase>compile</phase> <goals> <goal>aggregate-metadata</goal> </goals> </execution> </executions> <configuration> <storeFilteredMetadata>true</storeFilteredMetadata> <metadataFilter> <sourceTypes> <filter>org.springframework.cloud.dataflow.rest.client.config.DataFlowClientProperties</filter> <filter>org.springframework.cloud.dataflow.rest.client.config.DataFlowClientProperties$Authentication</filter> <filter>org.springframework.cloud.dataflow.rest.client.config.DataFlowClientProperties$Authentication$Basic</filter> <filter>org.springframework.cloud.stream.app.task.launcher.dataflow.sink.DataflowTaskLauncherSinkProperties</filter> <filter>org.springframework.cloud.stream.app.task.launcher.dataflow.sink.TriggerProperties</filter> </sourceTypes> </metadataFilter> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.21.0</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>