Skip to content

Commit ae2f2c7

Browse files
committed
update dependency: manifold-core-0.6.0
1 parent 71c36a2 commit ae2f2c7

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

build.gradle

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ targetCompatibility = 1.8
1111

1212
group = "org.manifold"
1313
// name = "manifold-backend-digital"
14-
version = '0.2.1-SNAPSHOT'
14+
version = '0.3.0-SNAPSHOT'
1515

1616
mainClassName = "org.manifold.compiler.back.digital.DigitalBackend"
1717

@@ -28,18 +28,22 @@ repositories {
2828
name 'Manifold release repository'
2929
url 'http://manifold-lang.org/releases'
3030
}
31+
flatDir {
32+
dirs '/home/mtrberzi/manifold/core/build/libs' // NOCOMMIT
33+
}
3134
}
3235

3336
run {
3437
standardInput = System.in
3538
}
3639

3740
dependencies {
41+
compile 'com.google.code.gson:gson:2.2.4'
3842
compile 'com.google.guava:guava:17.0'
3943
testCompile 'junit:junit:4.11'
4044
compile 'log4j:log4j:1.2.16'
4145
compile group: 'commons-cli', name: 'commons-cli', version: '1.2'
42-
compile 'org.manifold:manifold-core:0.2+'
46+
compile 'org.manifold:manifold-core:0.6+'
4347
}
4448

4549
buildscript {
@@ -86,6 +90,8 @@ jacocoTestReport {
8690
}
8791
}
8892

93+
check.dependsOn(jacocoTestReport)
94+
8995
checkstyle {
9096
configFile = new File(rootDir, "checkstyle.xml")
9197
ignoreFailures = false

0 commit comments

Comments
 (0)