forked from spring-attic/spring-xd-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upgraded to XD 1.1.1.RELEASE and extracted shared config (versions)
- Loading branch information
David Turanski
committed
Mar 26, 2015
1 parent
8316c5e
commit b949ef8
Showing
36 changed files
with
283 additions
and
680 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,16 @@ | ||
|
||
/* | ||
NOTE: This configuration is convenient for maintaining shared configuration across multiple projects in the samples repo. | ||
If copying this example, it may be simpler to declare the | ||
required configuration inline. | ||
*/ | ||
buildscript { | ||
repositories { | ||
maven { url "http://repo.spring.io/plugins-snapshot" } | ||
maven { url "http://repo.spring.io/snapshot" } | ||
maven { url "http://repo.spring.io/release" } | ||
jcenter() | ||
} | ||
dependencies { | ||
classpath("org.springframework.xd:spring-xd-module-plugin:1.1.0.RELEASE") | ||
} | ||
} | ||
|
||
ext { | ||
springXdVersion = '1.1.0.RELEASE' | ||
apply from: '../sample-modules-parent/buildscript.gradle', | ||
to: buildscript | ||
} | ||
|
||
apply plugin: 'java' | ||
apply plugin: 'eclipse' | ||
apply plugin: 'idea' | ||
apply from: '../sample-modules-parent/build.gradle' | ||
apply plugin: 'spring-xd-module' | ||
|
||
task wrapper(type: Wrapper) { | ||
gradleVersion = '1.12' | ||
} | ||
|
||
group = 'org.springframework.xd.samples' | ||
version = '1.0.0.BUILD-SNAPSHOT' | ||
|
||
description = "Batch Simple Example" | ||
|
||
sourceCompatibility = 1.6 | ||
targetCompatibility = 1.6 | ||
|
||
repositories { | ||
maven { url "http://repo.spring.io/release" } | ||
mavenCentral() | ||
jcenter() | ||
maven { url "http://repo.spring.io/snapshot" } | ||
maven { url "http://repo.spring.io/milestone" } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,21 @@ | ||
|
||
/* | ||
NOTE: This configuration is convenient for maintaining shared configuration across multiple projects in the samples repo. | ||
If copying this example, it may be simpler to declare the | ||
required configuration inline. | ||
*/ | ||
buildscript { | ||
repositories { | ||
maven { url "http://repo.spring.io/plugins-snapshot" } | ||
maven { url "http://repo.spring.io/snapshot" } | ||
maven { url "http://repo.spring.io/release" } | ||
jcenter() | ||
} | ||
dependencies { | ||
classpath("org.springframework.xd:spring-xd-module-plugin:1.1.0.RELEASE") | ||
} | ||
apply from: '../sample-modules-parent/buildscript.gradle', | ||
to: buildscript | ||
} | ||
|
||
ext { | ||
springXdVersion = '1.1.0.RELEASE' | ||
springIntegrationVersion = '4.1.2.RELEASE' | ||
} | ||
|
||
apply plugin: 'java' | ||
apply plugin: 'eclipse' | ||
apply plugin: 'idea' | ||
apply from: '../sample-modules-parent/build.gradle' | ||
apply plugin: 'spring-xd-module' | ||
|
||
task wrapper(type: Wrapper) { | ||
gradleVersion = '1.12' | ||
} | ||
|
||
group = 'com.acme' | ||
version = '1.0.0.BUILD-SNAPSHOT' | ||
|
||
description = "Spring XD custom Groovy sink" | ||
|
||
sourceCompatibility = 1.7 | ||
targetCompatibility = 1.7 | ||
|
||
repositories { | ||
maven { url "http://repo.spring.io/release" } | ||
mavenCentral() | ||
jcenter() | ||
maven { url "http://repo.spring.io/snapshot" } | ||
maven { url "http://repo.spring.io/milestone" } | ||
} | ||
|
||
dependencies { | ||
compile "org.springframework.xd:spring-xd-extension-script:$springXdVersion" | ||
} |
Oops, something went wrong.