We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c47a642 commit de76842Copy full SHA for de76842
java/build.gradle
@@ -24,13 +24,13 @@ project.configurations {
24
}
25
26
dependencies {
27
- compile "org.apache.httpcomponents:httpmime:${httpmimeVersion}"
28
- compile ("com.googlecode.json-simple:json-simple:${jsonSimpleVersion}")
+ implementation "org.apache.httpcomponents:httpmime:${httpmimeVersion}"
+ implementation ("com.googlecode.json-simple:json-simple:${jsonSimpleVersion}")
29
{
30
// exclude this because it gets in the way of our own JSON object implementations from server/api
31
exclude group: "org.json", module:"json"
32
33
- compile "net.sf.opencsv:opencsv:${opencsvVersion}"
+ implementation "net.sf.opencsv:opencsv:${opencsvVersion}"
34
35
36
jar {
0 commit comments