File tree Expand file tree Collapse file tree 4 files changed +22
-6
lines changed Expand file tree Collapse file tree 4 files changed +22
-6
lines changed Original file line number Diff line number Diff line change 1
1
# The LabKey Remote API Library for Java - Change Log
2
2
3
- ## version 1.4.0-SNAPSHOT
4
- * Released* : TBD
3
+ ## version 1.4.0
4
+ * Released* : 16 June 2021
5
5
* Issue 43246: Lineage query NPE while processing an UploadedFile
6
6
* Additional lineage options and support additional properties in response
7
+ * Update dependency version numbers
8
+ * Update to Gradle 7.1
7
9
8
10
## version 1.3.2
9
11
* Released* : 05 November 2020
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ repositories {
56
56
57
57
group " org.labkey.api"
58
58
59
- version " 1.4 .0-SNAPSHOT"
59
+ version " 1.5 .0-SNAPSHOT"
60
60
61
61
dependencies {
62
62
implementation " org.apache.httpcomponents:httpmime:${ httpmimeVersion} "
@@ -72,6 +72,17 @@ dependencies {
72
72
api " org.apache.httpcomponents:httpcore:${ httpcoreVersion} "
73
73
}
74
74
75
+ configurations. all
76
+ { Configuration config ->
77
+ resolutionStrategy {
78
+ // force versions so we can remain consistent with what comes through transitively
79
+ // in :server:modules:platform:api via jackson
80
+ force " org.hamcrest:hamcrest-core:${ hamcrestVersion} "
81
+ force " org.hamcrest:hamcrest-library:${ hamcrestVersion} "
82
+ force " junit:junit:${ junitVersion} "
83
+ }
84
+ }
85
+
75
86
jar {
76
87
sourceCompatibility = project. sourceCompatibility
77
88
targetCompatibility = project. targetCompatibility
Original file line number Diff line number Diff line change @@ -13,14 +13,17 @@ targetCompatibility=1.8
13
13
artifactoryPluginVersion =4.21.0
14
14
gradlePluginsVersion =1.26.0
15
15
16
- commonsCodecVersion =1.10
16
+ commonsCodecVersion =1.15
17
17
commonsLoggingVersion =1.2
18
18
19
+ hamcrestVersion =1.3
19
20
httpclientVersion =4.5.13
20
21
httpcoreVersion =4.4.14
21
22
httpmimeVersion =4.5.13
22
23
23
- jsonSimpleVersion =1.1
24
+ jsonSimpleVersion =1.1.1
25
+
26
+ junitVersion =4.13.2
24
27
25
28
opencsvVersion =2.3
26
29
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-7.0 -bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-7.1 -bin.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments