Skip to content

Commit 3132eb3

Browse files
committed
upgrade deps
1 parent 941c363 commit 3132eb3

File tree

10 files changed

+16
-16
lines changed

10 files changed

+16
-16
lines changed

src/AndroidClient/android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ if (project.hasProperty('versionSuffix')) {
1414

1515
// Specify dependencies
1616
dependencies {
17-
implementation 'com.google.code.gson:gson:2.10'
17+
implementation 'com.google.code.gson:gson:2.11.0'
1818
implementation 'com.squareup.okhttp3:okhttp:3.14.9'
1919
implementation fileTree(include: '*.jar', dir: 'libs')
20-
androidTestImplementation 'junit:junit:4.13.1'
20+
androidTestImplementation 'junit:junit:4.13.2'
2121
androidTestImplementation 'com.android.support.test:runner:1.0.2'
2222
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
2323
androidTestImplementation 'com.android.support:support-annotations:28.0.0'

src/AndroidClient/client/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ if (project.hasProperty('versionSuffix')) {
1313

1414
// Specify dependencies
1515
dependencies {
16-
implementation 'com.google.code.gson:gson:2.10'
17-
testImplementation 'junit:junit:4.13.1'
16+
implementation 'com.google.code.gson:gson:2.11.0'
17+
testImplementation 'junit:junit:4.13.2'
1818
testImplementation 'pl.pragmatists:JUnitParams:1.1.1'
1919
}
2020

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Wed Oct 21 11:34:03 PDT 2015
1+
#Fri Oct 18 17:55:02 AWST 2024
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
45
zipStoreBase=GRADLE_USER_HOME
56
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip

src/AndroidClient/client/gradlew

100644100755
File mode changed.

src/ServiceStackEclipse/ServiceStackEclipse.Bundle/src/main/java/net/servicestack/eclipse/wizard/AddReferenceWizard.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ public class AddReferenceWizard extends Wizard {
4040
boolean packageSelected = false;
4141

4242
private static final String dependencyGroupId = "net.servicestack";
43-
private static final String dependencyVersion = "1.0.40";
43+
private static final String dependencyVersion = "1.1.0";
4444
private static final String clientPackageId = "client";
4545

4646
private static final String gsonDependencyGroupId = "com.google.code.gson";
4747
private static final String gsonPackageId = "gson";
48-
private static final String gsonDependencyVersion = "2.8.6";
48+
private static final String gsonDependencyVersion = "2.11.0";
4949

5050
boolean success = false;
5151

src/ServiceStackEclipse/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Updating a ServiceStack Reference works as normal where you can change any of th
3333
ServiceStack references can still be added without the use of a Maven project. However, two dependencies will have to added to your Eclipse project for the generated Java to compile. Both JARs are available to download from JCenter or MavenCentral.
3434

3535
1. [`net.servicestack:client`](http://search.maven.org/#search%7Cga%7C1%7Cnet.servicestack)
36-
2. [`com.google.code.gson:gson:2.3.1`](http://search.maven.org/#artifactdetails%7Ccom.google.code.gson%7Cgson%7C2.3.1%7Cjar)
36+
2. [`com.google.code.gson:gson:2.11.0`](http://search.maven.org/#artifactdetails%7Ccom.google.code.gson%7Cgson%7C2.3.1%7Cjar)
3737

3838
Once you have downloaded these jars, add them to a folder in your project, eg `/lib`.
3939

src/legacy/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ dependencies {
2626
implementation fileTree(include: ['*.jar'], dir: 'libs')
2727
implementation project(':android')
2828
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
29-
implementation 'com.google.code.gson:gson:2.8.9'
29+
implementation 'com.google.code.gson:gson:2.11.0'
3030
implementation 'net.servicestack:android:1.0.49'
3131
}
3232
buildscript {

src/legacy/kotlin/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ android {
2121

2222
dependencies {
2323
implementation fileTree(dir: 'libs', include: ['*.jar'])
24-
androidTestImplementation 'junit:junit:4.13.1'
25-
testImplementation 'junit:junit:4.13.1'
24+
androidTestImplementation 'junit:junit:4.13.2'
25+
testImplementation 'junit:junit:4.13.2'
2626
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
2727
implementation project(':android')
28-
androidTestImplementation 'com.google.code.gson:gson:2.10'
28+
androidTestImplementation 'com.google.code.gson:gson:2.11'
2929
}
3030
buildscript {
3131
ext.kotlin_version = '1.9.0'

src/legacy/techstacks/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ dependencies {
3030
implementation fileTree(dir: 'libs', include: ['*.jar'])
3131
implementation project(':android')
3232
implementation 'com.squareup.picasso:picasso:2.5.2'
33-
implementation 'com.google.code.gson:gson:2.10'
33+
implementation 'com.google.code.gson:gson:2.11'
3434
}
3535
repositories {
3636
mavenCentral()

src/legacy/techstackskotlin/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ android {
2424

2525
dependencies {
2626
implementation fileTree(dir: 'libs', include: ['*.jar'])
27-
testImplementation 'junit:junit:4.13.1'
27+
testImplementation 'junit:junit:4.13.2'
2828
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
2929
implementation project(':android')
3030
implementation 'com.squareup.picasso:picasso:2.5.2'
31-
implementation 'com.google.code.gson:gson:2.8.9'
31+
implementation 'com.google.code.gson:gson:2.11.0'
3232
}
3333
buildscript {
3434
ext.kotlin_version = '1.7.10'

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy