Remove traces of old pre Java 8 Cafe DSL sample

This commit is contained in:
Max Brauer
2019-12-20 17:57:09 +01:00
committed by Artem Bilan
parent b8fe06de89
commit 3701e8bc6f
2 changed files with 2 additions and 9 deletions

View File

@@ -722,15 +722,11 @@ project('cafe-dsl') {
testCompile 'org.springframework.boot:spring-boot-starter-test'
}
bootRun {
main = 'org.springframework.integration.samples.dsl.cafe.lambda.Application'
}
task run(type: JavaExec) {
main 'org.springframework.integration.samples.dsl.cafe.nonlambda.Application'
classpath = sourceSets.main.runtimeClasspath
}
tasks.withType(JavaExec) {
standardInput = System.in
}

View File

@@ -12,7 +12,4 @@ See the `cafe` project **README.md** for more details about the domain and the C
Main class --> Run As --> Java Application)
* or from the command line:
$ gradlew :cafe-dsl:run
There is the second similar sample - `org.springframework.integration.samples.dsl.cafe.nonlambda.Application`, which
demonstrates how Spring Integration Java DSL can be used from pre Java 8 environment.
$ gradlew :cafe-dsl:bootRun