Skip to content

Commit de76842

Browse files
author
i.hilerio
committed
Change compile dependencies to implementation
SVN r64623 |2019-10-16 20:29:30 +0000
1 parent c47a642 commit de76842

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

java/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ project.configurations {
2424
}
2525

2626
dependencies {
27-
compile "org.apache.httpcomponents:httpmime:${httpmimeVersion}"
28-
compile ("com.googlecode.json-simple:json-simple:${jsonSimpleVersion}")
27+
implementation "org.apache.httpcomponents:httpmime:${httpmimeVersion}"
28+
implementation ("com.googlecode.json-simple:json-simple:${jsonSimpleVersion}")
2929
{
3030
// exclude this because it gets in the way of our own JSON object implementations from server/api
3131
exclude group: "org.json", module:"json"
3232
}
33-
compile "net.sf.opencsv:opencsv:${opencsvVersion}"
33+
implementation "net.sf.opencsv:opencsv:${opencsvVersion}"
3434
}
3535

3636
jar {

0 commit comments

Comments
 (0)