File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -23,13 +23,13 @@ project.configurations {
2323}
2424
2525dependencies {
26- implementation " org.apache.httpcomponents:httpmime:${ httpmimeVersion} "
27- implementation (" com.googlecode.json-simple:json-simple:${ jsonSimpleVersion} " )
26+ compile " org.apache.httpcomponents:httpmime:${ httpmimeVersion} "
27+ compile (" com.googlecode.json-simple:json-simple:${ jsonSimpleVersion} " )
2828 {
2929 // exclude this because it gets in the way of our own JSON object implementations from server/api
3030 exclude group : " org.json" , module :" json"
3131 }
32- implementation " net.sf.opencsv:opencsv:${ opencsvVersion} "
32+ compile " net.sf.opencsv:opencsv:${ opencsvVersion} "
3333}
3434
3535jar {
@@ -63,14 +63,14 @@ project.task("fatJar",
6363 {
6464 Jar jar ->
6565 jar. from sourceSets. main. output
66- jar. from { configurations. default . collect { it. isDirectory() ? it : zipTree(it) }}
66+ jar. from { configurations. compile . collect { it. isDirectory() ? it : zipTree(it) }}
6767 jar. archiveBaseName = artifactPrefix
6868 jar. archiveVersion = project. version
6969 jar. classifier LabKey . FAT_JAR_CLASSIFIER
7070 jar. dependsOn project. tasks. jar
7171 jar. into(' lib' ) {
7272 from tasks. jar
73- from configurations. default
73+ from configurations. compile
7474 }
7575 }
7676)
You can’t perform that action at this time.
0 commit comments