-
Notifications
You must be signed in to change notification settings - Fork 62
Making the content syncs more resilient #214
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 18 commits
1807ca6
a7f1e02
9147c5e
f594a80
dfa0345
9a1b08c
cf3f36b
3b3ae11
f282a21
503c93f
e749372
509fab0
5e49b0f
ae61e27
b85d2b6
5b2aeee
0e92bc8
01e1623
aefb204
bd8e0ff
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,9 +5,11 @@ org.gradle.jvmargs=-XX:MaxPermSize=512m -XX:+CMSClassUnloadingEnabled -XX:+CMSPe | |
bundleInstallRoot = /apps/grabbit/install | ||
|
||
group = com.twcable.grabbit | ||
version = 7.1.5 | ||
version = 7.1.6 | ||
|
||
# Please keep alphabetical | ||
apache_httpclient_version = 4.5.4 | ||
apache_httpcore_version = 4.4.8 | ||
cglib_nodep_version = 2.2.2 | ||
commons_collections_version = 3.2.1 | ||
commons_io_version = 1.4 | ||
|
@@ -41,6 +43,7 @@ servlet_api_version = 2.5 | |
slf4j_version = 1.7.6 | ||
sling_api_version = 2.9.0 | ||
sling_base_version = 2.2.2 | ||
sling_commons_json_version = 2.0.6 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It would be better to continue using Groovy's built-in JSONBuilder for consistency as used elsewhere in the codebase rather than adding this new dependency! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sure, I'll switch it |
||
sling_commons_testing_version = 2.0.12 | ||
sling_commons_version = 2.2.0 | ||
sling_event_version = 3.1.4 | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since we are using the OkHttpClient already, it would be better to continue to use that than having another way to create connections using the Apache HttpClient.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok will switch to that one