mirror of https://github.com/percyliang/sempre
possible fix?
This commit is contained in:
parent
354301c9ec
commit
0f48befd5b
10
build.gradle
10
build.gradle
|
|
@ -4,9 +4,12 @@ plugins {
|
|||
id 'java'
|
||||
}
|
||||
|
||||
group = 'com.github.timobaumann'
|
||||
|
||||
repositories {
|
||||
jcenter()
|
||||
maven { url "https://jitpack.io" }
|
||||
mavenCentral()
|
||||
maven { url "https://www.jitpack.io" }
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
|
@ -29,6 +32,8 @@ dependencies {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
test {
|
||||
useTestNG()
|
||||
exclude 'edu/stanford/nlp/sempre/interactive/test/**'
|
||||
|
|
@ -44,5 +49,8 @@ run.dependsOn extractModuleClasses
|
|||
|
||||
distZip.enabled = false
|
||||
distTar.enabled = false
|
||||
configurations.archives.artifacts.removeAll{it.file =~ 'zip'}
|
||||
configurations.archives.artifacts.removeAll{it.file =~ 'tar'}
|
||||
|
||||
|
||||
mainClassName = 'edu.stanford.nlp.sempre.Main'
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -1,5 +1,5 @@
|
|||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.3-bin.zip
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4.1-bin.zip
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
install:
|
||||
- ./gradlew clean install -x test
|
||||
- ./gradlew --info -x test build install
|
||||
|
|
|
|||
Loading…
Reference in New Issue