File tree Expand file tree Collapse file tree 3 files changed +54
-0
lines changed
Expand file tree Collapse file tree 3 files changed +54
-0
lines changed Original file line number Diff line number Diff line change 1+ buildscript {
2+ repositories {
3+ jcenter()
4+ }
5+ dependencies {
6+ classpath ' com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7'
7+ }
8+ }
9+
10+ apply plugin : ' maven-publish'
11+
12+ publishing {
13+ repositories {
14+ maven {
15+ url ' https://dl.bintray.com/engagingspaces/maven'
16+ }
17+ }
18+ }
19+
20+ ext {
21+ vertxVersion = ' 3.3.0'
22+
23+ junitVersion = ' 4.12'
24+ }
25+
26+ apply plugin : ' java'
27+ apply from : " $projectDir /gradle/publishing.gradle"
28+
29+ repositories {
30+ mavenCentral()
31+ jcenter()
32+ maven {
33+ url ' https://dl.bintray.com/engagingspaces/maven'
34+ }
35+ }
36+
37+ group = ' io.engagingspaces'
38+ version = ' 0.1.0'
39+
40+ sourceCompatibility = 1.8
41+
42+ dependencies {
43+ compile " io.vertx:vertx-core:$vertxVersion "
44+
45+ testCompile " junit:junit:$junitVersion "
46+ testCompile " io.vertx:vertx-unit:$vertxVersion "
47+ }
48+
49+ task wrapper (type : Wrapper ) {
50+ gradleVersion = ' 2.14'
51+ distributionUrl = " http://services.gradle.org/distributions/gradle-2.14-all.zip"
52+ }
Original file line number Diff line number Diff line change 1+ projectTitle = Vert.x Dataloader
2+ projectDescription = Port of Facebook Dataloader for Java and Vert.x
You can’t perform that action at this time.
0 commit comments