Skip to content

Commit 744fa15

Browse files
committed
revert update to implementation configuration. We'll revisit this later.
SVN r64611 |2019-10-14 04:57:28 +0000
1 parent 3580585 commit 744fa15

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

java/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ project.configurations {
2323
}
2424

2525
dependencies {
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

3535
jar {
@@ -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
)

0 commit comments

Comments
 (0)