Skip to content

Commit c7ea71a

Browse files
committed
build.gradle fixed
1 parent c23c49a commit c7ea71a

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

build.gradle

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,17 @@ repositories {
3535

3636
dependencies {
3737
// load managed dependencies
38-
def s = '[ \t]*', w = '[^:#@]+?'
39-
(file('mdeps').text =~ /(?m)^$s($w):($w):($w)?(:$w)?(@$w)?$s(?:#$s($w)?$s)?$/).each {
40-
match, group, name, version, classifier, ext, configuration ->
41-
add(configuration ?: name.contains('test') ? 'testCompile' : 'compile', "$group:$name:${version?:''}${classifier?:''}${ext?:''}")
42-
}
38+
// def s = '[ \t]*', w = '[^:#@]+?'
39+
// (file('mdeps').text =~ /(?m)^$s($w):($w):($w)?(:$w)?(@$w)?$s(?:#$s($w)?$s)?$/).each {
40+
// match, group, name, version, classifier, ext, configuration ->
41+
// add(configuration ?: name.contains('test') ? 'testCompile' : 'compile', "$group:$name:${version?:''}${classifier?:''}${ext?:''}")
42+
// }
43+
compile 'com.github.scm4j:scm4j-vcs-api:master-SNAPSHOT'
4344
compile 'org.eclipse.jgit:org.eclipse.jgit:4.3.0.201604071810-r'
4445

4546
testCompile 'org.mockito:mockito-core:2.0.62-beta'
4647
testCompile 'junit:junit:4.12'
47-
// testCompile 'com.github.scm4j:scm4j-vcs-test:master-SNAPSHOT'
48+
testCompile 'com.github.scm4j:scm4j-vcs-test:master-SNAPSHOT'
4849
}
4950

5051
task sourcesJar(type: Jar, dependsOn: classes) {

0 commit comments

Comments
 (0)