1
+ Action<InclusiveRepositoryContentDescriptor > jitpackFilterConfigurationAction = { filter ->
2
+ filter. includeModule(' com.github.solkin' , ' disk-lru-cache' )
3
+ filter. includeModule(' com.github.cryptomator' , ' subsampling-scale-image-view' )
4
+ filter. includeModule(' com.github.cryptomator.pcloud-sdk-java' , ' java-core' )
5
+ filter. includeModule(' com.github.cryptomator.google-http-java-client' , ' google-http-client-parent' ) // Required by com.github.cryptomator.google-http-java-client:*
6
+ filter. includeModule(' com.github.cryptomator.google-http-java-client' , ' google-http-client' )
7
+ filter. includeModule(' com.github.cryptomator.google-http-java-client' , ' google-http-client-android' )
8
+ }
9
+
1
10
allprojects {
2
11
repositories {
3
12
mavenCentral()
4
- maven { url ' https://jitpack.io' }
13
+ exclusiveContent {
14
+ forRepository {
15
+ maven {
16
+ url ' https://jitpack.io'
17
+ // Apparently this filter is already applied implicitly, but it's not documented...
18
+ content(jitpackFilterConfigurationAction)
19
+ }
20
+ }
21
+ filter(jitpackFilterConfigurationAction)
22
+ }
5
23
// needed for 'com.microsoft.device.display' required by 'com.microsoft.graph:microsoft-graph'
6
24
exclusiveContent {
7
25
forRepository {
55
73
56
74
zxcvbnVersion = ' 1.7.0'
57
75
58
- scaleImageViewVersion = ' 3.10.0 '
76
+ scaleImageViewVersion = ' 3.10.1-dev.0002 '
59
77
60
78
lruFileCacheVersion = ' 1.2'
61
79
@@ -70,16 +88,13 @@ ext {
70
88
googleApiServicesVersion = ' v3-rev20220508-1.32.1'
71
89
googlePlayServicesVersion = ' 19.2.0'
72
90
googleClientVersion = ' 2.2.0' // keep in sync with https://github.com/cryptomator/google-http-java-client
73
- /*
74
- update using https://github.com/cryptomator/google-http-java-client with `mvn clean install`,
75
- copying `google-http-client-*.jar` and `google-http-client-android-*.jar` into the lib folder of this project
76
- */
77
- trackingFreeGoogleCLientVersion = ' 1.43.0'
91
+ trackingFreeGoogleCLientVersion = ' 1.44.2-dev.0001'
78
92
79
93
msgraphVersion = ' 5.47.0'
80
94
msgraphAuthVersion = ' 4.0.5' // contains com.microsoft.identity:common lib which added opentelemetry in 9.0.0, do we need to fork another lib before updating to >=4.2.0 ???
81
95
82
96
minIoVersion = ' 8.5.2'
97
+ pcloudVersion = ' 1.9.2-dev.0001'
83
98
staxVersion = ' 1.2.0' // needed for minIO
84
99
85
100
commonsCodecVersion = ' 1.15'
@@ -141,8 +156,8 @@ ext {
141
156
googleApiClientAndroid : " com.google.api-client:google-api-client-android:${ googleClientVersion} " ,
142
157
googleApiServicesDrive : " com.google.apis:google-api-services-drive:${ googleApiServicesVersion} " ,
143
158
googlePlayServicesAuth : " com.google.android.gms:play-services-auth:${ googlePlayServicesVersion} " ,
144
- trackingFreeGoogleCLient : files( " lib/ google-http-client- ${ trackingFreeGoogleCLientVersion} .jar " ) ,
145
- trackingFreeGoogleAndroidCLient : files( " lib/ google-http-client-android- ${ trackingFreeGoogleCLientVersion} .jar " ) ,
159
+ trackingFreeGoogleCLient : " com.github.cryptomator. google-http-java- client:google-http-client: ${ trackingFreeGoogleCLientVersion} " ,
160
+ trackingFreeGoogleAndroidCLient : " com.github.cryptomator. google-http-java- client:google-http-client-android: ${ trackingFreeGoogleCLientVersion} " ,
146
161
greenDao : " org.greenrobot:greendao:${ greenDaoVersion} " ,
147
162
gson : " com.google.code.gson:gson:${ gsonVersion} " ,
148
163
hamcrest : " org.hamcrest:hamcrest-all:${ hamcrestVersion} " ,
@@ -161,6 +176,7 @@ ext {
161
176
multidex : " androidx.multidex:multidex:${ multidexVersion} " ,
162
177
okHttp : " com.squareup.okhttp3:okhttp:${ okHttpVersion} " ,
163
178
okHttpDigest : " io.github.rburgst:okhttp-digest:${ okHttpDigestVersion} " ,
179
+ pcloud : " com.github.cryptomator.pcloud-sdk-java:java-core:${ pcloudVersion} " ,
164
180
recyclerViewFastScroll : " com.simplecityapps:recyclerview-fastscroll:${ recyclerViewFastScrollVersion} " ,
165
181
rxJava : " io.reactivex.rxjava2:rxjava:${ rxJavaVersion} " ,
166
182
rxAndroid : " io.reactivex.rxjava2:rxandroid:${ rxAndroidVersion} " ,
@@ -174,7 +190,7 @@ ext {
174
190
contribution : " androidx.test.espresso:espresso-contrib:${ contributionVersion} " ,
175
191
uiAutomator : " androidx.test.uiautomator:uiautomator:${ uiautomatorVersion} " ,
176
192
zxcvbn : " com.nulab-inc:zxcvbn:${ zxcvbnVersion} " ,
177
- scaleImageView : " com.davemorrissey.labs :subsampling-scale-image-view:${ scaleImageViewVersion} " ,
193
+ scaleImageView : " com.github.cryptomator :subsampling-scale-image-view:${ scaleImageViewVersion} " ,
178
194
lruFileCache : " com.github.solkin:disk-lru-cache:${ lruFileCacheVersion} " ,
179
195
jsonWebTokenApi : " io.jsonwebtoken:jjwt-api:${ jsonWebTokenApiVersion} " ,
180
196
jsonWebTokenImpl : " io.jsonwebtoken:jjwt-impl:${ jsonWebTokenApiVersion} " ,
0 commit comments