Skip to content

Commit f2ff0ee

Browse files
committed
Fixed building process. Removed unused versioning.
1 parent 3fbbc72 commit f2ff0ee

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

build.gradle

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,17 @@ apply plugin: 'groovy'
22
apply plugin: 'maven'
33

44
group = "com.github.bq"
5-
version = "0.2.4"
65

76
compileJava {
87
apply plugin: 'java'
98
sourceCompatibility = 1.7
109
targetCompatibility = 1.7
1110
}
1211

12+
repositories {
13+
mavenCentral()
14+
}
15+
1316
dependencies {
1417
compile gradleApi()
1518
compile localGroovy()
@@ -19,7 +22,8 @@ dependencies {
1922
testCompile 'junit:junit:4.11'
2023
}
2124

22-
task sourcesJar(type: Jar) {
25+
task sourcesJar(type: Jar, dependsOn: classes) {
26+
classifier 'sources'
2327
from sourceSets.main.allSource
2428
}
2529

0 commit comments

Comments
 (0)