Skip to content

Commit 34e83c7

Browse files
authored
Refactor labkey-api-java repository (#45)
1 parent 6741e83 commit 34e83c7

File tree

169 files changed

+84
-95
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

169 files changed

+84
-95
lines changed

.gitignore

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
labkey-client-api/.gradle/
2-
labkey-client-api/build
3-
labkey-client-api/dist
4-
labkey-client-api/out
5-
labkey-api-sas/authTest.sas
6-
labkey-api-sas/dist
7-
labkey-api-sas/.gradle/
8-
labkey-api-sas/build/
9-
labkey-api-sas/dist/
1+
.gradle/
2+
build
3+
dist
4+
out

labkey-client-api/CHANGELOG.md renamed to CHANGELOG.md

Lines changed: 8 additions & 0 deletions
File renamed without changes.
File renamed without changes.

README.md

Lines changed: 65 additions & 8 deletions

labkey-client-api/build.gradle renamed to build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ repositories {
4848

4949
group "org.labkey.api"
5050

51-
version "4.2.0-SNAPSHOT"
51+
version "4.3.0-SNAPSHOT"
5252

5353
dependencies {
5454
api "org.json:json:${jsonObjectVersion}"

labkey-client-api/gradle.properties renamed to gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ artifactory_contextUrl=https://labkey.jfrog.io/artifactory
77
sourceCompatibility=17
88
targetCompatibility=17
99

10-
gradlePluginsVersion=1.36.1
10+
gradlePluginsVersion=1.39.0
1111

1212
commonsCodecVersion=1.15
1313
commonsLoggingVersion=1.2
1414

1515
hamcrestVersion=1.3
1616

17-
httpclient5Version=5.2
17+
httpclient5Version=5.2.1
1818
httpcore5Version=5.2
1919

2020
jsonObjectVersion=20220924
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
File renamed without changes.
File renamed without changes.

labkey-client-api/README.md

Lines changed: 0 additions & 71 deletions
This file was deleted.

labkey-client-api/settings.gradle

Lines changed: 0 additions & 1 deletion
This file was deleted.

settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rootProject.name='labkey-client-api'
File renamed without changes.

labkey-client-api/src/org/labkey/remoteapi/query/BaseQueryCommand.java renamed to src/org/labkey/remoteapi/query/BaseQueryCommand.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public void addSort(Sort sort)
135135

136136
/**
137137
* Constructs and adds a new sort definition to the current list.
138-
* This is equivallent to calling <code>addSort(new Sort(columnName, direction))</code>
138+
* This is equivalent to calling <code>addSort(new Sort(columnName, direction))</code>
139139
*
140140
* @param columnName The column name.
141141
* @param direction The sort direction.
@@ -179,7 +179,7 @@ public void addFilter(Filter filter)
179179
}
180180

181181
/**
182-
* Constructs and adds a new filter to the list. This is equivallent to
182+
* Constructs and adds a new filter to the list. This is equivalent to
183183
* <code>addFilter(new Filter(columnName, value, operator))</code>
184184
*
185185
* @param columnName The column name.

0 commit comments

Comments
 (0)