File tree Expand file tree Collapse file tree 5 files changed +17
-4
lines changed
labkey-api-sas/gradle/wrapper Expand file tree Collapse file tree 5 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-6.4 .1-bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-6.6 .1-bin.zip
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change 11# The LabKey Remote API Library for Java - Change Log
22
3+ ## version TBD
4+ * Released* : TBD
5+ * Add some missing dependency declarations
6+
37## version 1.3.1
48* Released* : 18 September 2020
59
610* Fix pre-population of session ID and CSRF token in Connection
711* Identify target server with a ` URI ` instead of a ` String `
812* Add support for Log4J 2
913
14+
1015## version 1.3.0
1116* Released* : 16 June 2020
1217
Original file line number Diff line number Diff line change @@ -63,13 +63,17 @@ group "org.labkey.api"
6363version " 1.4.0-SNAPSHOT"
6464
6565dependencies {
66- api " org.apache.httpcomponents:httpmime:${ httpmimeVersion} "
66+ implementation " org.apache.httpcomponents:httpmime:${ httpmimeVersion} "
6767 api (" com.googlecode.json-simple:json-simple:${ jsonSimpleVersion} " )
6868 {
6969 // exclude this because it gets in the way of our own JSON object implementations from server/api
7070 exclude group : " org.json" , module :" json"
7171 }
72- api " net.sf.opencsv:opencsv:${ opencsvVersion} "
72+ implementation " net.sf.opencsv:opencsv:${ opencsvVersion} "
73+ implementation " commons-logging:commons-logging:${ commonsLoggingVersion} "
74+ api " org.apache.httpcomponents:httpclient:${ httpclientVersion} "
75+ implementation " commons-codec:commons-codec:${ commonsCodecVersion} "
76+ api " org.apache.httpcomponents:httpcore:${ httpcoreVersion} "
7377}
7478
7579jar {
Original file line number Diff line number Diff line change @@ -14,8 +14,12 @@ artifactoryPluginVersion=4.13.0
1414bintrayPluginVersion =1.8.4
1515gradlePluginsVersion =1.12.0
1616
17+ commonsCodecVersion =1.10
18+ commonsLoggingVersion =1.2
1719fluentHcVersion =4.3.5
1820
21+ httpclientVersion =4.5.3
22+ httpcoreVersion =4.4.6
1923httpmimeVersion =4.5.3
2024
2125jsonSimpleVersion =1.1
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-6.4 .1-bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-6.6 .1-bin.zip
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments