Skip to content
This repository was archived by the owner on Apr 5, 2022. It is now read-only.

gradle build for top-tags #30

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions reactor-top-tags/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@

buildscript {
repositories {
maven { url "http://repo.spring.io/plugins-snapshot" }
maven { url "http://repo.spring.io/release" }
jcenter()
maven { url "http://repo.spring.io/snapshot" }
maven { url "http://repo.spring.io/milestone" }
}
dependencies {
classpath("org.springframework.xd:spring-xd-module-plugin:1.1.0.RELEASE")
}
}

ext {
springXdVersion = '1.1.0.RELEASE'
}

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
apply plugin: 'spring-xd-module'

task wrapper(type: Wrapper) {
gradleVersion = '2.3'
}

group = 'com.acme'
version = '1.1.0.BUILD-SNAPSHOT'

description = "Custom module using Reactor TopN Tweets"
mainClassName = ''

sourceCompatibility = 1.8
targetCompatibility = 1.8

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-reactor:1.1.0.BUILD-SNAPSHOT"
compile "io.projectreactor:reactor-core:2.0.0.BUILD-SNAPSHOT"
}