Skip to content

Commit 49eaeae

Browse files
committed
change version to 2.0
1 parent cbf60be commit 49eaeae

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

build.gradle

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,30 +5,30 @@ sourceCompatibility = JavaVersion.VERSION_1_7
55
targetCompatibility = JavaVersion.VERSION_1_7
66

77
group = 'org.scm4j'
8-
version = '1.3'
8+
version = '2.0'
99

1010
repositories {
11-
mavenCentral()
11+
mavenCentral()
1212
}
1313

1414
dependencies {
15-
testCompile 'junit:junit:4.12'
16-
testCompile 'org.mockito:mockito-core:2.0.62-beta'
17-
18-
compile 'commons-io:commons-io:[0,)'
15+
testCompile 'junit:junit:4.12'
16+
testCompile 'org.mockito:mockito-core:2.0.62-beta'
17+
18+
compile 'commons-io:commons-io:2.5'
1919
}
2020

2121
task sourcesJar(type: Jar, dependsOn: classes) {
22-
classifier = 'sources'
23-
from sourceSets.main.allSource
22+
classifier = 'sources'
23+
from sourceSets.main.allSource
2424
}
2525

2626
task javadocJar(type: Jar, dependsOn: javadoc) {
27-
classifier = 'javadoc'
28-
from javadoc.destinationDir
27+
classifier = 'javadoc'
28+
from javadoc.destinationDir
2929
}
3030

3131
artifacts {
32-
archives sourcesJar
33-
archives javadocJar
32+
archives sourcesJar
33+
archives javadocJar
3434
}

0 commit comments

Comments
 (0)