Skip to content

Commit 94e05b5

Browse files
committed
Added Gradle project structure
1 parent e2fcd8b commit 94e05b5

File tree

3 files changed

+54
-0
lines changed

3 files changed

+54
-0
lines changed

build.gradle

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
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+
}

gradle.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
projectTitle = Vert.x Dataloader
2+
projectDescription = Port of Facebook Dataloader for Java and Vert.x

settings.gradle

Whitespace-only changes.

0 commit comments

Comments
 (0)